html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(
            circle at top left,
            rgba(212, 93, 58, 0.12),
            transparent 32%
        ),
        linear-gradient(180deg, #f5ecdf 0%, #fbf7f0 100%);
}

body[data-page-loading='true'] {
    overflow: hidden;
}

:root {
    /* Header shrink settings: adjust these values to tune the behavior. */
    --header-scroll-threshold: 24px;
    --header-scroll-return-threshold: 0px;
    --header-padding-y: 1rem;
    --header-padding-y-compact: 0.55rem;
    --header-logo-size: 5rem; /*  6rem */
    --header-logo-size-compact: 4.25rem;
    --header-nav-font-size: 0.75rem;
    --header-nav-font-size-compact: 0.68rem;
    --header-nav-letter-spacing: 0.24em;
    --header-nav-letter-spacing-compact: 0.2em;
    --header-toggle-size: 3rem;
    --header-toggle-size-compact: 2.5rem;
    --header-shrink-transition: 0.24s ease;
}

@media (max-width: 767px) {
    :root {
        --header-padding-y-compact: 0.45rem;
        --header-logo-size-compact: 3.75rem;
        --header-toggle-size-compact: 2.3rem;
    }
}

[data-shrink-header] {
    --header-padding-y-current: var(--header-padding-y);
    --header-logo-size-current: var(--header-logo-size);
    --header-nav-font-size-current: var(--header-nav-font-size);
    --header-nav-letter-spacing-current: var(--header-nav-letter-spacing);
    --header-toggle-size-current: var(--header-toggle-size);
}

[data-shrink-header].is-compact {
    --header-padding-y-current: var(--header-padding-y-compact);
    --header-logo-size-current: var(--header-logo-size-compact);
    --header-nav-font-size-current: var(--header-nav-font-size-compact);
    --header-nav-letter-spacing-current: var(
        --header-nav-letter-spacing-compact
    );
    --header-toggle-size-current: var(--header-toggle-size-compact);
}

[data-shrink-header] [data-header-inner] {
    padding-top: var(--header-padding-y-current);
    padding-bottom: var(--header-padding-y-current);
    transition: padding var(--header-shrink-transition);
}

[data-shrink-header] [data-header-logo] {
    width: var(--header-logo-size-current);
    height: var(--header-logo-size-current);
    transition:
        width var(--header-shrink-transition),
        height var(--header-shrink-transition);
}

[data-shrink-header] [data-header-nav] {
    font-size: var(--header-nav-font-size-current);
    letter-spacing: var(--header-nav-letter-spacing-current);
    transition:
        font-size var(--header-shrink-transition),
        letter-spacing var(--header-shrink-transition);
}

[data-shrink-header] [data-menu-toggle] {
    width: var(--header-toggle-size-current);
    height: var(--header-toggle-size-current);
    transition:
        width var(--header-shrink-transition),
        height var(--header-shrink-transition);
}

@media (prefers-reduced-motion: reduce) {
    [data-shrink-header] [data-header-inner],
    [data-shrink-header] [data-header-logo],
    [data-shrink-header] [data-header-nav],
    [data-shrink-header] [data-menu-toggle] {
        transition: none;
    }
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(255, 255, 255, 0.58),
            transparent 24%
        ),
        radial-gradient(
            circle at 82% 14%,
            rgba(212, 93, 58, 0.18),
            transparent 26%
        ),
        linear-gradient(180deg, #f5ecdf 0%, #efe2d2 100%);
    isolation: isolate;
    transition:
        transform 0.94s cubic-bezier(0.18, 0.9, 0.2, 1),
        opacity 0.58s ease,
        visibility 0s linear 0.94s;
}

.site-loader::before,
.site-loader::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-loader::before {
    opacity: 0.1;
    background-image:
        radial-gradient(
            circle at 20% 24%,
            rgba(58, 42, 33, 0.18) 0 1.1px,
            transparent 1.3px
        ),
        radial-gradient(
            circle at 72% 16%,
            rgba(58, 42, 33, 0.16) 0 1px,
            transparent 1.2px
        ),
        radial-gradient(
            circle at 44% 76%,
            rgba(212, 93, 58, 0.16) 0 1px,
            transparent 1.2px
        );
    background-size:
        180px 180px,
        220px 220px,
        160px 160px;
    mix-blend-mode: multiply;
}

.site-loader::after {
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(58, 42, 33, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 42, 33, 0.08) 1px, transparent 1px);
    background-size:
        100% 28px,
        28px 100%;
    mask-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.32),
        rgba(0, 0, 0, 0.08)
    );
}

.site-loader.is-leaving {
    transform: translate3d(0, -118%, 0);
    opacity: 0;
    visibility: hidden;
}

.site-loader__inner {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 1rem;
    padding: 2rem;
}

.site-loader__logo-frame {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(200px, 48vw, 290px);
    aspect-ratio: 1;
    animation: loader-frame-settle 0.48s ease-out both;
}

.site-loader__logo-frame::before,
.site-loader__logo-frame::after {
    content: '';
    position: absolute;
}

.site-loader__logo-frame::before {
    inset: 12%;
    border: 1px solid rgba(58, 42, 33, 0.16);
    background: rgba(255, 255, 255, 0.54);
    box-shadow:
        0 24px 48px rgba(58, 42, 33, 0.12),
        14px 14px 0 rgba(212, 93, 58, 0.18);
    transform: rotate(-4deg);
}

.site-loader__logo-frame::after {
    inset: 7%;
    border: 1px solid rgba(58, 42, 33, 0.14);
    opacity: 0.62;
    transform: rotate(2.5deg);
}

.site-loader__logo {
    position: relative;
    z-index: 1;
    width: min(68%, 190px);
    max-width: 100%;
    transform-origin: center;
    filter: drop-shadow(0 24px 32px rgba(58, 42, 33, 0.2));
    animation: loader-stamp 0.76s cubic-bezier(0.14, 0.96, 0.28, 1.38) both;
}

.site-loader__accent {
    width: clamp(72px, 16vw, 120px);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(212, 93, 58, 0),
        rgba(212, 93, 58, 0.95),
        rgba(212, 93, 58, 0)
    );
    opacity: 0;
    transform: translateY(12px) scaleX(0.65);
    animation: loader-accent 0.34s ease 0.16s forwards;
}

@keyframes loader-frame-settle {
    0% {
        opacity: 0;
        transform: translateY(26px) scale(0.92);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes loader-stamp {
    0% {
        opacity: 0;
        transform: translate3d(0, 48px, 0) scale(0.1) rotate(-18deg);
        filter: blur(16px) drop-shadow(0 0 0 rgba(58, 42, 33, 0));
    }

    52% {
        opacity: 1;
        transform: translate3d(0, -3px, 0) scale(1.3) rotate(3.8deg);
        filter: blur(0) drop-shadow(0 28px 38px rgba(58, 42, 33, 0.26));
    }

    72% {
        transform: translate3d(0, 1px, 0) scale(0.88) rotate(-2.4deg);
    }

    88% {
        transform: translate3d(0, 0, 0) scale(1.04) rotate(0.65deg);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        filter: drop-shadow(0 24px 32px rgba(58, 42, 33, 0.2));
    }
}

@keyframes loader-accent {
    0% {
        opacity: 0;
        transform: translateY(12px) scaleX(0.65);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-loader,
    .site-loader__logo-frame,
    .site-loader__logo,
    .site-loader__accent {
        animation: none !important;
        transition: none !important;
    }
}

html[data-js='true'] [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    filter: blur(4px);
    transition:
        opacity 0.72s cubic-bezier(0.2, 0.72, 0.22, 1),
        transform 0.72s cubic-bezier(0.2, 0.72, 0.22, 1),
        filter 0.72s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity, filter;
}

html[data-js='true'] [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

[data-line-draw] {
    position: relative;
}

[data-line-draw]::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--line-draw-color, rgba(212, 93, 58, 0.64));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.78s cubic-bezier(0.16, 0.79, 0.2, 1);
    transition-delay: calc(var(--reveal-delay, 0ms) + 120ms);
    pointer-events: none;
    opacity: 0.82;
}

[data-line-draw='top']::after {
    top: 0;
}

[data-line-draw='bottom']::after {
    bottom: 0;
}

[data-line-draw].is-visible::after {
    transform: scaleX(1);
}

[data-typo-heading] {
    --typo-char-stagger: 28ms;
}

[data-typo-heading] .typo-char {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 0.56em, 0) rotate(4deg);
    filter: blur(2px);
    transition:
        transform 0.66s cubic-bezier(0.22, 0.74, 0.2, 1),
        opacity 0.46s ease,
        filter 0.46s ease;
    transition-delay: calc(
        var(--reveal-delay, 0ms) +
            (var(--char-index) * var(--typo-char-stagger))
    );
}

[data-typo-heading].is-visible .typo-char {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    html[data-js='true'] [data-reveal] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    [data-line-draw]::after {
        transform: scaleX(1);
        transition: none;
    }

    [data-typo-heading] .typo-char {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

.retro-grain {
    position: relative;
}

.paper-grid {
    position: relative;
}

.paper-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(58, 42, 33, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 42, 33, 0.08) 1px, transparent 1px);
    background-size:
        100% 24px,
        24px 100%;
    mask-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.32),
        rgba(0, 0, 0, 0.12)
    );
}

.boxed-link {
    border: 1px solid currentColor;
    padding: 4px 12px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.boxed-link:hover,
.boxed-link:focus-visible {
    background-color: #d45d3a;
    border-color: #d45d3a;
    color: #f5ecdf !important;
    outline: none;
}

.boxed-link-light {
    border-color: rgba(245, 236, 223, 0.3);
    color: #f5ecdf;
}

.boxed-link-light:hover,
.boxed-link-light:focus-visible {
    background-color: #f5ecdf;
    border-color: #f5ecdf;
    color: #d45d3a !important;
}

.focus-outline:focus-visible {
    outline: 2px solid #d45d3a;
    outline-offset: 4px;
}

.menu-panel {
    box-shadow: 0 24px 80px rgba(58, 42, 33, 0.1);
}

.hero-outline {
    color: rgba(212, 93, 58, 0.14);
    -webkit-text-stroke: 1px rgba(212, 93, 58, 0.08);
}

.hero-outline-light {
    color: rgba(245, 236, 223, 0.2);
    -webkit-text-stroke: 1px rgba(245, 236, 223, 0.16);
}

.touch-card {
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.touch-card:hover {
    transform: translateY(-4px);
}

.mobile-link {
    border-top: 1px solid rgba(58, 42, 33, 0.12);
    padding: 16px 0;
}

.message-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #2f241f;
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(212, 93, 58, 0.08),
            transparent 24%
        ),
        radial-gradient(
            circle at 86% 16%,
            rgba(212, 93, 58, 0.05),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            rgba(252, 247, 239, 0.82) 0%,
            rgba(247, 239, 230, 0.88) 100%
        );
    font-family: 'Noto Serif JP', serif;
}

.message-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0) 36%,
        rgba(58, 42, 33, 0.04) 100%
    );
    pointer-events: none;
}

.message-section > * {
    position: relative;
    z-index: 1;
}

.message-shell {
    position: relative;
    display: grid;
    gap: clamp(1.75rem, 3.8vw, 2.7rem);
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(58, 42, 33, 0.08);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.34) 0%,
        rgba(255, 255, 255, 0.12) 100%
    );
    box-shadow: 0 24px 52px rgba(58, 42, 33, 0.08);
    overflow: hidden;
}

.message-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 100% 0%,
        rgba(212, 93, 58, 0.1),
        transparent 28%
    );
    pointer-events: none;
}

.message-shell > * {
    position: relative;
    z-index: 1;
}

.message-heading {
    display: grid;
    gap: 0;
    width: min(100%, 35rem);
    margin: 0 auto;
    justify-items: center;
    text-align: center;
}

.message-heading__kicker {
    margin: 0;
    color: rgba(212, 93, 58, 0.82);
    font-family: 'Bebas Neue', cursive;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    line-height: 1.2;
    text-transform: uppercase;
}

.message-heading__title {
    margin: 0.35rem 0 0;
    color: #d45d3a;
    font-size: clamp(1.6rem, 8vw, 3.75rem);
    line-height: 1;
    letter-spacing: 0.035em;
    font-weight: 600;
}

.message-heading__rule {
    margin-top: 1.25rem;
    margin-inline: auto;
    width: min(100%, 35rem);
    border-top: 1px solid rgba(58, 42, 33, 0.16);
}

.message-copy {
    width: min(100%, 48rem);
    margin: 0 auto;
    text-align: center;
}

.message-paragraph {
    margin: 0;
    color: rgba(58, 42, 33, 0.82);
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    line-height: 2;
    text-wrap: pretty;
}

.message-paragraph + .message-paragraph {
    margin-top: clamp(1.25rem, 2.6vw, 1.8rem);
}

.message-paragraph--lead {
    color: #2f241f;
    font-size: clamp(1.08rem, 1.55vw, 1.22rem);
    line-height: 1.95;
}

.message-line {
    display: block;
}

.message-copy__emphasis {
    display: block;
    margin-top: 0.12rem;
    font-weight: 700;
}

.message-figure {
    width: min(100%, 34rem);
    margin: 0 auto;
}

.message-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 28px rgba(58, 42, 33, 0.12));
}

@media (max-width: 767px) {
    .message-line {
        display: inline;
    }
}

.services-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #f5ecdf;
    background: #d45d3a;
    border-top: 1px solid rgba(245, 236, 223, 0.14);
    border-bottom: 1px solid rgba(245, 236, 223, 0.14);
}

.services-section::before,
.services-section::after {
    content: none;
}

.services-section > * {
    position: relative;
    z-index: 1;
}

.services-heading {
    position: relative;
    display: block;
}

.services-heading__copy {
    max-width: 35rem;
}

.services-heading__kicker {
    margin: 0;
    color: rgba(245, 236, 223, 0.72);
    font-family: 'Bebas Neue', cursive;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.services-heading__title {
    margin: 0.35rem 0 0;
    color: #fffaf2;
    font-size: clamp(1.6rem, 8vw, 3.75rem);
    line-height: 1;
    letter-spacing: 0.035em;
}

.services-heading__rule {
    margin-top: 1.25rem;
    width: min(100%, 35rem);
    border-top: 1px solid rgba(245, 236, 223, 0.22);
}

.services-heading__display {
    margin: 1.5rem 0 0;
    color: rgba(245, 236, 223, 0.12);
    font-size: clamp(3.8rem, 16vw, 8.5rem);
    line-height: 0.82;
    letter-spacing: 0.04em;
    text-align: right;
    user-select: none;
    pointer-events: none;
}

.services-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    padding-top: 0.25rem;
}

.service-card {
    --service-accent: #b24f32;
    --service-accent-wash: rgba(178, 79, 50, 0.12);
    --service-surface-top: rgba(255, 250, 244, 0.98);
    --service-surface-bottom: rgba(245, 236, 223, 0.98);
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 18rem;
    overflow: hidden;
    border: 1px solid rgba(58, 42, 33, 0.1);
    color: #2f241f;
    background: linear-gradient(
        180deg,
        var(--service-surface-top) 0%,
        var(--service-surface-bottom) 100%
    );
    box-shadow:
        0 24px 44px rgba(58, 42, 33, 0.16),
        0 10px 20px rgba(58, 42, 33, 0.08);
    isolation: isolate;
}

.service-card::before,
.service-card::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.service-card::before {
    inset: 0 0 auto;
    height: 0.32rem;
    background: var(--service-accent);
    z-index: 1;
}

.service-card::after {
    top: -3.2rem;
    right: -2.2rem;
    width: 9rem;
    height: 9rem;
    border-radius: 999px;
    background: radial-gradient(
        circle,
        var(--service-accent-wash) 0%,
        rgba(255, 255, 255, 0) 72%
    );
    z-index: 0;
}

.service-card.touch-card {
    transition:
        transform 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.service-card.touch-card:hover,
.service-card.touch-card:focus-visible {
    transform: translateY(-8px);
    border-color: rgba(58, 42, 33, 0.16);
    box-shadow:
        0 30px 60px rgba(58, 42, 33, 0.2),
        0 14px 28px rgba(58, 42, 33, 0.1);
}

.service-card__meta,
.service-card__body,
.service-card__footer {
    position: relative;
    z-index: 2;
}

.service-card__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 0.85rem;
}

.service-card__index {
    margin: 0;
    color: var(--service-accent);
    font-size: clamp(2.45rem, 11vw, 4rem);
    line-height: 0.86;
    letter-spacing: 0.02em;
}

.service-card__eyebrow {
    margin: 0.3rem 0 0;
    color: rgba(47, 36, 31, 0.46);
    font-family: 'Bebas Neue', cursive;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-align: right;
    text-transform: uppercase;
}

.service-card__body {
    display: grid;
    align-content: start;
    gap: 0.9rem;
    padding: 0 1.25rem 1.6rem;
}

.service-card-heading {
    margin: 0;
    display: grid;
    gap: 0.34rem;
}

.service-card-heading__main {
    display: block;
    color: #2f241f;
    font-size: clamp(1.65rem, 5vw, 2.3rem);
    line-height: 1.22;
    letter-spacing: 0.03em;
    text-wrap: pretty;
}

.service-card-heading__sub {
    display: block;
    color: var(--service-accent);
    font-size: clamp(1.16rem, 3.8vw, 1.8rem);
    line-height: 1.02;
    letter-spacing: 0.05em;
}

.service-card-copy {
    margin: 0;
    max-width: 28rem;
    color: rgba(47, 36, 31, 0.72);
    font-size: 0.9rem;
    line-height: 1.9;
    text-wrap: pretty;
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(58, 42, 33, 0.1);
}

.service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--service-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    line-height: 1;
    text-transform: uppercase;
}

.service-card__cta::after {
    content: '';
    width: 3.1rem;
    height: 1px;
    background: currentColor;
    opacity: 0.34;
}

.service-card__cta-mark {
    display: inline-grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border-radius: 999px;
    background: var(--service-accent);
    box-shadow: 0 10px 20px rgba(58, 42, 33, 0.14);
    color: #fffaf2;
    font-size: 1rem;
    line-height: 1;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.service-card.touch-card:hover .service-card__cta-mark,
.service-card.touch-card:focus-visible .service-card__cta-mark {
    transform: translateX(4px);
    box-shadow: 0 14px 24px rgba(58, 42, 33, 0.2);
}

.service-card--featured {
    --service-accent: #b24f32;
    --service-accent-wash: rgba(178, 79, 50, 0.12);
    --service-surface-top: rgba(255, 253, 250, 0.98);
    --service-surface-bottom: rgba(247, 238, 229, 0.98);
}

.service-card--dropped {
    --service-accent: #8f5d43;
    --service-accent-wash: rgba(143, 93, 67, 0.12);
    --service-surface-top: rgba(255, 252, 249, 0.98);
    --service-surface-bottom: rgba(244, 237, 230, 0.98);
}

.service-card--lifted {
    --service-accent: #bb705d;
    --service-accent-wash: rgba(187, 112, 93, 0.12);
    --service-surface-top: rgba(255, 252, 250, 0.98);
    --service-surface-bottom: rgba(246, 235, 231, 0.98);
}

.service-card--steady {
    --service-accent: #6f4739;
    --service-accent-wash: rgba(111, 71, 57, 0.12);
    --service-surface-top: rgba(255, 252, 249, 0.98);
    --service-surface-bottom: rgba(241, 233, 227, 0.98);
}

.retro-hero-title {
    color: #f5ecdf;
    letter-spacing: 0.045em;
    font-weight: 900;
    text-shadow:
        4px 4px 0 rgba(212, 93, 58, 0.95),
        8px 8px 0 rgba(212, 93, 58, 0.55);
}

.retro-hero-link {
    display: inline-block;
    color: #f5ecdf;
    letter-spacing: 0.16em;
    font-weight: 900;
    text-decoration: none;
    text-shadow:
        2px 2px 0 rgba(212, 93, 58, 0.95),
        4px 4px 0 rgba(212, 93, 58, 0.5);
    transition:
        transform 0.2s ease,
        text-shadow 0.2s ease,
        opacity 0.2s ease;
}

.retro-hero-link:hover,
.retro-hero-link:focus-visible {
    transform: translateX(6px);
    text-shadow:
        3px 3px 0 rgba(212, 93, 58, 0.95),
        6px 6px 0 rgba(212, 93, 58, 0.5);
    outline: none;
}

.font-imul {
    font-family: 'Tan Mon Cheri', 'Cormorant Garamond', serif;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .message-shell {
        gap: clamp(2rem, 3.6vw, 3rem);
        padding: clamp(2rem, 4vw, 3.5rem);
    }

    .message-heading,
    .message-copy {
        margin: 0 auto;
        justify-self: center;
    }

    .message-figure {
        width: min(100%, 38rem);
    }

    .services-heading {
        min-height: clamp(9rem, 15vw, 12rem);
        padding-right: min(42vw, 22rem);
    }

    .services-heading__rule {
        margin-top: 1.5rem;
    }

    .services-heading__display {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        max-width: 46vw;
        transform: translateY(0.15rem);
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .service-card {
        min-height: 20rem;
    }

    .service-card__meta {
        padding: 1.45rem 1.45rem 0.95rem;
    }

    .service-card__body {
        gap: 0.95rem;
        padding: 0 1.45rem 1.9rem;
    }

    .service-card__eyebrow {
        margin-top: 0.48rem;
    }

    .service-card-heading__main {
        font-size: clamp(1.8rem, 2.8vw, 2.45rem);
    }

    .service-card-heading__sub {
        font-size: clamp(1.22rem, 1.9vw, 1.78rem);
    }

    .service-card-copy {
        max-width: 22rem;
        font-size: 0.93rem;
    }

    .service-card__footer {
        padding: 1.05rem 1.45rem 1.35rem;
    }

    .retro-hero-title {
        text-shadow:
            7px 7px 0 rgba(212, 93, 58, 0.95),
            14px 14px 0 rgba(212, 93, 58, 0.5);
    }

    .retro-hero-link {
        text-shadow:
            3px 3px 0 rgba(212, 93, 58, 0.95),
            6px 6px 0 rgba(212, 93, 58, 0.5);
    }

    .retro-hero-link:hover,
    .retro-hero-link:focus-visible {
        text-shadow:
            4px 4px 0 rgba(212, 93, 58, 0.95),
            8px 8px 0 rgba(212, 93, 58, 0.5);
    }
}

@media (min-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.4rem;
    }

    .service-card {
        width: 100%;
        max-width: none;
        min-height: 21rem;
    }

    .service-card__body {
        padding-bottom: 2rem;
    }

    .service-card__index {
        font-size: clamp(3rem, 5vw, 4.35rem);
    }

    .service-card-copy {
        max-width: 23rem;
    }
}
