/* KORA — design tokens from brand palette */
:root {
    --color-copper: #a66a3d;
    --color-navy: #333652;
    --color-black: #000000;
    --color-bg: #e9eaec;
    --color-muted: #b8aaaa;
    --color-white: #ffffff;
    --color-input-bg: #d8d9dc;
    --color-footer-bg: #dfe0e3;
    --color-surface: #f3f4f6;

    --font-heading: 'League Spartan', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --container-max: 1180px;
    --page-pad: clamp(1.25rem, 4vw, 3rem);
    --container-pad: var(--page-pad);
    --section-gap: 4.5rem;
    --radius-sm: 12px;
    --radius-pill: 999px;
    --radius-arch: 140px;

    --transition: 0.25s ease;
    --shadow-soft: 0 10px 32px rgba(51, 53, 82, 0.09);
    --shadow-lift: 0 16px 40px rgba(51, 53, 82, 0.12);
    --header-height: 96px;

    --text-base: 1rem;       /* 16px */
    --text-sm: 0.875rem;     /* 14px */
    --text-lg: 1.125rem;     /* 18px */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* 16px standard root */
}

body {
    margin: 0;
    padding-top: var(--header-height);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.65;
    color: var(--color-navy);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    color: var(--color-navy);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.lead-italic {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.55;
    color: var(--color-navy);
}

.text-body {
    font-size: var(--text-base);
    line-height: 1.65;
}

.section-label {
    font-family: var(--font-heading);
    font-size: clamp(1.625rem, 3vw, 2.125rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-label::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 0.5rem;
    background: var(--color-copper);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.65rem 1.75rem;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--color-navy);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn:focus-visible {
    outline: 2px solid var(--color-navy);
    outline-offset: 3px;
}

.btn:active {
    transform: translateY(0);
}

.btn--ghost {
    background: transparent;
    color: var(--color-navy);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: rgba(51, 53, 82, 0.06);
}

.btn--solid {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

.btn--solid:hover,
.btn--solid:focus-visible {
    background: var(--color-navy);
    border-color: var(--color-navy);
}

.btn--light {
    background: var(--color-bg);
    border-color: var(--color-muted);
    color: var(--color-navy);
}

.btn--light:hover,
.btn--light:focus-visible {
    background: var(--color-white);
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.btn-group--row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 130;
    background: transparent;
    border-bottom: none;
    transform: none;
    transition: none;
    will-change: auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    min-height: var(--header-height);
    padding: 0.4rem var(--page-pad);
    background: rgba(243, 244, 246, 0.82);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    border-bottom: 1px solid rgba(51, 53, 82, 0.07);
    transform: translateY(0);
    transition: transform 0.32s ease;
    will-change: transform;
}

.site-header.is-hidden .site-header__inner {
    transform: translateY(-100%);
}

.site-header.is-hidden {
    pointer-events: none;
}

.site-header.is-menu-open,
.site-header.is-menu-open .site-header__inner,
.site-header.is-hidden.is-menu-open .site-header__inner {
    pointer-events: auto;
    transform: translateY(0);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-left: auto;
}

.site-header__cta {
    display: none;
    min-height: 42px;
    padding: 0.55rem 1.35rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity var(--transition);
}

.site-logo:hover,
.site-logo:focus-visible {
    opacity: 0.88;
}

.brand-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.brand-logo__image {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    /* Crop transparent padding so the wordmark fills the frame */
    aspect-ratio: 2.25 / 1;
}

.brand-logo--header .brand-logo__image {
    height: clamp(3.9rem, 7vw, 5.1rem);
}

.brand-logo--footer .brand-logo__image {
    height: clamp(4.75rem, 12vw, 6.25rem);
}

.brand-logo__image--light {
    display: none;
}

.brand-logo__taglines {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-top: 0.55rem;
}

.brand-logo__tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
    line-height: 1.35;
    color: var(--color-navy);
}

.brand-logo--footer .brand-logo__taglines {
    margin-top: 0.65rem;
}

.brand-logo--footer .brand-logo__tagline {
    font-size: clamp(1rem, 1.6vw, 1.125rem);
}

.site-nav {
    display: none;
    flex: 1;
    min-width: 0;
}

.site-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__link {
    position: relative;
    display: inline-block;
    padding-block: 0.35rem;
    font-family: var(--font-heading);
    font-size: 1.1875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-navy);
    transition: color var(--transition);
}

.site-nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--color-copper);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.28s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active {
    color: var(--color-copper);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    color: var(--color-navy);
    transition: color var(--transition), opacity var(--transition);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: transparent;
    color: var(--color-copper);
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--color-navy);
    outline-offset: 3px;
}

.nav-toggle__bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 18px;
}

.nav-toggle__bars span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open .nav-toggle__bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bars span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bars span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 110;
    margin: 0;
    border: 0;
    padding: 0;
    appearance: none;
    background: rgba(51, 53, 82, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    cursor: pointer;
}

.mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    width: min(320px, 88vw);
    margin: 0;
    padding: calc(var(--header-height) + 1.25rem) var(--page-pad) 2rem;
    background: rgba(243, 244, 246, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid rgba(51, 53, 82, 0.08);
    box-shadow: -12px 0 40px rgba(51, 53, 82, 0.12);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.32s ease, visibility 0.32s ease;
}

.mobile-nav.is-open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav__link.is-active {
    color: var(--color-copper);
}

.mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav__link {
    display: block;
    padding: 1rem 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(51, 53, 82, 0.08);
    transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
    color: var(--color-copper);
    padding-left: 0.35rem;
}

.mobile-nav__cta-item {
    margin-top: 1.25rem;
    padding-top: 0.25rem;
}

.mobile-nav__cta {
    width: 100%;
    min-height: 48px;
    font-size: var(--text-base);
}

body.mobile-nav-open {
    overflow: hidden;
}

/* Sections */
.section {
    padding: var(--section-gap) 0;
}

.section--tight {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

/* Hero */
/* Hero slider */
.hero-slider {
    position: relative;
    margin-top: calc(var(--header-height) * -1);
    height: 100svh;
    min-height: 36rem;
    max-height: 58rem;
    overflow: hidden;
    color: var(--color-white);
    background: #161821;
    touch-action: pan-y;
}

.hero-slider__viewport {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-slider__track {
    position: relative;
    height: 100%;
}

.hero-slider__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slider__slide.is-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero-slider__slide img {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.12);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.hero-slider__slide.is-active img {
    animation: hero-image-life 9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-image-life {
    0% {
        transform: scale(1.12);
    }

    16% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.hero-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-height) + 2rem) var(--page-pad) 6rem;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(12, 14, 24, 0.6) 0%,
            rgba(12, 14, 24, 0.52) 42%,
            rgba(12, 14, 24, 0.58) 74%,
            rgba(12, 14, 24, 0.8) 100%
        );
}

.hero-slider__content {
    width: min(100%, 46rem);
    margin: 0;
}

.hero-slider .btn-group {
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.85rem;
    pointer-events: auto;
}

.hero-slider__kicker,
.hero-slider__title,
.hero-slider__subtitle {
    opacity: 1;
}

.hero-slider__actions {
    opacity: 0;
    transform: translate3d(0, 0.75rem, 0);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
}

.hero-slider__actions.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

.hero-slider__typed {
    white-space: pre-wrap;
}

.hero-slider__caret {
    display: inline-block;
    width: 0.08em;
    height: 1.05em;
    margin-left: 0.08em;
    vertical-align: -0.12em;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1px;
    opacity: 0;
    visibility: hidden;
}

.hero-slider__caret--title {
    height: 0.85em;
    vertical-align: 0.05em;
    background: #e09a52;
}

.hero-slider [data-typewriter].is-typing > .hero-slider__caret,
.hero-slider__title.is-typing > .hero-slider__caret {
    opacity: 1;
    visibility: visible;
    animation: hero-caret-blink 0.85s steps(1, end) infinite;
}

.hero-slider__kicker::after {
    content: '';
    display: block;
    width: clamp(11rem, 26vw, 17rem);
    height: 0.4rem;
    margin: 0.85rem auto 0;
    border-radius: var(--radius-pill);
    background: #e09a52;
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.hero-slider__kicker.is-complete::after {
    transform: scaleX(1);
    opacity: 1;
}

@keyframes hero-caret-blink {
    0%,
    45% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.hero-slider__kicker {
    margin: 0 0 1.35rem;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--color-white);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-slider__title {
    margin: 0 0 1.1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.4rem, 7.5vw, 4.5rem);
    line-height: 1.05;
    text-wrap: balance;
    color: var(--color-white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-slider__title-accent {
    color: #e09a52;
}

.hero-slider__subtitle {
    margin: 0 auto 2rem;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.5;
}

.hero-slider .btn--solid {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
}

.hero-slider .btn--solid:hover,
.hero-slider .btn--solid:focus-visible {
    background: var(--color-copper);
    border-color: var(--color-copper);
    color: var(--color-white);
}

.hero-slider .btn--light {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-navy);
}

.hero-slider .btn--light:hover,
.hero-slider .btn--light:focus-visible {
    background: var(--color-copper);
    border-color: var(--color-copper);
    color: var(--color-white);
}

.hero-slider .btn:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
}

.hero-slider__chrome {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 1.35rem;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
}

.hero-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.hero-slider__dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-slider__dot.is-active {
    width: 0.55rem;
    background: var(--color-copper);
    transform: scale(1.2);
}

.hero-slider__dot:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
}

/* About */
.about {
    position: relative;
    text-align: center;
    min-height: clamp(520px, 62vh, 720px);
    padding: clamp(5.5rem, 10vw, 8.5rem) 0;
    display: flex;
    align-items: center;
    color: var(--color-white);
    background: #1e2030;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--about-bg);
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 65% 50% at 50% 48%,
            rgba(18, 19, 28, 0.42) 0%,
            rgba(18, 19, 28, 0.58) 100%
        ),
        linear-gradient(
            180deg,
            rgba(30, 32, 48, 0.48) 0%,
            rgba(30, 32, 48, 0.36) 45%,
            rgba(30, 32, 48, 0.52) 100%
        );
}

.about__content {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    margin: 0 auto;
}

.about__title {
    margin: 0 0 1.35rem;
    color: var(--color-white);
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.about__title::after {
    content: '';
    display: block;
    width: 3.25rem;
    height: 0.22rem;
    margin: 1.1rem auto 0;
    border-radius: var(--radius-pill);
    background: #e09a52;
}

.about__copy {
    display: grid;
    gap: 1.05rem;
}

.about__copy p {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.6vw, 1.175rem);
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.96);
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.55),
        0 2px 20px rgba(0, 0, 0, 0.45);
}

.about__copy p:first-child {
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    font-weight: 600;
    line-height: 1.65;
    color: #ffffff;
}

.about__copy p:nth-child(2) {
    color: rgba(255, 248, 240, 0.98);
}

/* What we make */
.what-we-make {
    --wwm-pill-w: min(210px, 44vw);
    --wwm-pill-h: calc(var(--wwm-pill-w) * 1.62);
    --wwm-step: calc(var(--wwm-pill-h) * 0.32);
    --wwm-gap: clamp(1rem, 2vw, 1.75rem);
    --wwm-material-size: clamp(96px, 14vw, 120px);
    --wwm-stack-radius: 24px;
    --wwm-inner-max: 860px;
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(166, 106, 61, 0.07), transparent 58%),
        #fbfbfc;
    border-top: 1px solid rgba(51, 53, 82, 0.05);
}

.what-we-make .container {
    position: relative;
}

.what-we-make__showcase {
    display: grid;
    gap: var(--wwm-gap);
}

.what-we-make__header {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.what-we-make__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    display: inline-block;
}

.what-we-make__lower {
    display: grid;
    gap: var(--wwm-gap);
    margin-top: clamp(1.25rem, 2.5vw, 2rem);
}

.what-we-make__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--wwm-pill-w);
}

.what-we-make__pill {
    width: var(--wwm-pill-w);
    height: var(--wwm-pill-h);
    border-radius: calc(var(--wwm-pill-w) / 2);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 8px 28px rgba(51, 53, 82, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.what-we-make__card:hover .what-we-make__pill {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(51, 53, 82, 0.14);
}

.what-we-make__pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.what-we-make__card--awards .what-we-make__pill img {
    object-fit: cover;
    object-position: center;
}

.what-we-make__card--medals .what-we-make__pill img {
    object-position: center 35%;
}

.what-we-make__card--souvenirs .what-we-make__pill img {
    object-position: center 45%;
}

.what-we-make__card:hover .what-we-make__pill img {
    transform: scale(1.03);
}

.what-we-make__label {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0.75rem 0 0;
    text-align: center;
    width: calc(var(--wwm-pill-w) + 2rem);
    color: var(--color-navy);
}

.what-we-make__actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: var(--wwm-pill-w);
}

.what-we-make__actions .btn {
    width: 100%;
    min-height: 42px;
    padding-inline: 1.25rem;
    font-size: 0.875rem;
    border-color: var(--color-navy);
}

.process-stack {
    position: relative;
    width: 100%;
    max-width: calc(var(--wwm-pill-w) * 2.15);
    aspect-ratio: 245 / 400;
}

.process-stack__back,
.process-stack__front {
    position: absolute;
    border-radius: var(--wwm-stack-radius);
    object-fit: cover;
    box-shadow: 0 10px 28px rgba(51, 53, 82, 0.14);
    display: block;
}

.process-stack__back {
    width: 83%;
    height: 58%;
}

.process-stack__front {
    width: 76%;
    height: 66%;
}

.process-stack__back {
    top: 0;
    left: 0;
}

.process-stack__front {
    right: 0;
    bottom: 0;
    z-index: 1;
}

.what-we-make__process,
.what-we-make__materials-wrap {
    width: 100%;
}

.what-we-make .materials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 2.5vw, 2rem);
    width: max(var(--wwm-pill-w), var(--wwm-material-size));
}

.what-we-make .material {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    text-align: center;
}

.what-we-make .material__thumb {
    flex-shrink: 0;
    width: var(--wwm-material-size);
    height: var(--wwm-material-size);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(51, 53, 82, 0.12);
    transition: transform 0.3s ease;
}

.what-we-make .material:hover .material__thumb {
    transform: scale(1.06);
}

.what-we-make .material__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-make .material__name {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.4vw, 1.0625rem);
    color: var(--color-navy);
    opacity: 0.92;
}

@media (min-width: 640px) {
    .what-we-make__showcase,
    .what-we-make__lower {
        max-width: min(var(--wwm-inner-max), 100%);
        margin-inline: auto;
    }
}

@media (min-width: 640px) and (max-width: 899px) {
    .hero-slider {
        height: min(100svh, 50rem);
        min-height: 40rem;
        max-height: 50rem;
    }

    .hero-slider__overlay {
        padding: calc(var(--header-height) + 1.75rem) var(--page-pad) 5.5rem;
    }

    .hero-slider__content {
        width: min(100%, 34rem);
    }

    .hero-slider__title {
        font-size: clamp(2.6rem, 7vw, 3.4rem);
    }

    .what-we-make__showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .what-we-make__header {
        position: static;
        grid-column: 1 / -1;
    }

    .what-we-make__card--awards {
        grid-column: 1;
    }

    .what-we-make__card--medals {
        grid-column: 2;
        margin-top: var(--wwm-step);
    }

    .what-we-make__card--souvenirs {
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 0;
    }

    .what-we-make__actions {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .what-we-make__lower {
        grid-template-columns: 1fr;
    }

    .what-we-make__materials-wrap .materials {
        flex-direction: row;
        width: auto;
        margin-top: 0;
        gap: 1.75rem;
    }
}

@media (max-width: 639px) {
    :root {
        --section-gap: 3.25rem;
        --header-height: 84px;
        --page-pad: clamp(1rem, 4.5vw, 1.35rem);
    }

    .brand-logo--header .brand-logo__image {
        height: 3.75rem;
    }

    .hero-slider {
        min-height: 100svh;
        max-height: none;
        height: 100svh;
    }

    .hero-slider__overlay {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: calc(var(--header-height) + 1rem) var(--page-pad) 5.75rem;
    }

    .hero-slider__content {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .hero-slider__kicker {
        margin-bottom: 1rem;
        font-size: clamp(1.05rem, 4.2vw, 1.2rem);
    }

    .hero-slider__kicker::after {
        height: 0.3rem;
        margin-top: 0.7rem;
    }

    .hero-slider__title {
        font-size: clamp(2.15rem, 10vw, 2.9rem);
        margin-bottom: 0.75rem;
    }

    .hero-slider__subtitle {
        margin: 0 auto 1.5rem;
        font-size: clamp(0.95rem, 3.8vw, 1.05rem);
    }

    .hero-slider .btn-group {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        margin: 0;
    }

    .hero-slider .btn-group .btn {
        flex: 0 1 auto;
        min-width: 0;
        padding: 0.62rem 1.1rem;
        font-size: clamp(0.78rem, 3.4vw, 0.95rem);
        white-space: nowrap;
    }

    .hero-slider__chrome {
        bottom: 1.1rem;
    }

    .hero-slider__slide img {
        object-position: center 38%;
    }

    .about {
        min-height: auto;
        padding: clamp(3.25rem, 12vw, 4.5rem) 0;
    }

    .about::before {
        background-attachment: scroll;
        background-position: center 38%;
    }

    .about__content {
        padding-inline: 0.15rem;
    }

    .about__title {
        font-size: clamp(1.85rem, 7vw, 2.25rem);
    }

    .what-we-make {
        --wwm-pill-w: min(230px, 68vw);
        --wwm-material-size: clamp(84px, 24vw, 96px);
    }

    .what-we-make__showcase {
        justify-items: center;
    }

    .what-we-make__header {
        position: static;
        justify-content: center;
        margin-bottom: 0.25rem;
    }

    .what-we-make__title {
        text-align: center;
        font-size: clamp(1.65rem, 6.5vw, 1.95rem);
    }

    .what-we-make__card,
    .what-we-make__actions {
        justify-self: center;
        width: 100%;
        max-width: 320px;
    }

    .what-we-make__card--medals,
    .what-we-make__card--souvenirs {
        margin-top: 0;
    }

    .what-we-make__label {
        width: auto;
        max-width: 100%;
        font-size: 1rem;
    }

    .what-we-make__actions {
        margin-top: 0.35rem;
    }

    .what-we-make__actions .btn {
        min-height: 44px;
        font-size: 0.9rem;
    }

    .what-we-make__lower {
        margin-top: 1.75rem;
    }

    .what-we-make__process {
        display: flex;
        justify-content: center;
    }

    .process-stack {
        max-width: min(280px, 78vw);
    }

    .what-we-make__materials-wrap {
        display: flex;
        justify-content: center;
    }

    .what-we-make__materials-wrap .materials {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
        max-width: 360px;
        gap: 0.85rem;
    }

    .what-we-make .material__name {
        font-size: 0.875rem;
    }

    .how-to-order__header {
        text-align: center;
    }

    .how-to-order__header .section-label::after {
        margin-inline: auto;
    }

    .how-to-order .order-steps {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.75rem;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.15rem var(--page-pad) 0.65rem;
        margin-inline: calc(var(--page-pad) * -1);
    }

    .how-to-order .order-steps::-webkit-scrollbar {
        display: none;
    }

    .how-to-order .order-step {
        flex: 0 0 min(240px, 76vw);
        scroll-snap-align: center;
        min-height: 100%;
        padding: 1.35rem 1rem 1.2rem;
    }

    .workshop-banner__image {
        height: clamp(200px, 46vw, 280px);
        object-position: center 42%;
    }

    .contact-section__grid {
        gap: 2rem;
    }

    .contact-section__channels {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .contact-section__channels .btn {
        width: auto;
        padding: 0.62rem 0.55rem;
        font-size: clamp(0.78rem, 3.4vw, 0.95rem);
        white-space: nowrap;
        min-height: 44px;
    }

    .contact-section__media {
        margin-top: 1.35rem;
        aspect-ratio: 16 / 10;
        border-radius: var(--radius-sm);
    }

    .quote-form {
        padding: 1.35rem;
        border-radius: var(--radius-sm);
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
        font-size: 1rem;
    }
}

/* How to order */
.how-to-order {
    background:
        radial-gradient(ellipse 65% 50% at 0% 100%, rgba(51, 53, 82, 0.06), transparent 55%),
        #e4e7ee;
    border-top: 1px solid rgba(51, 53, 82, 0.08);
    border-bottom: 1px solid rgba(51, 53, 82, 0.08);
}

.how-to-order__header {
    display: grid;
    gap: 1rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.order-steps {
    display: grid;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: order-step;
}

.order-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.15rem 1.35rem;
    border-radius: 16px;
    background: var(--color-white);
    border: 1px solid rgba(51, 53, 82, 0.07);
    box-shadow: 0 6px 24px rgba(51, 53, 82, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.order-step:hover {
    transform: translateY(-4px);
    border-color: rgba(163, 100, 52, 0.22);
    box-shadow: 0 14px 36px rgba(51, 53, 82, 0.11);
}

.order-step__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--color-copper);
    margin-bottom: 0.85rem;
}

.order-step__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--color-navy) 0%, #454868 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1rem;
    box-shadow: 0 6px 16px rgba(51, 53, 82, 0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.order-step:hover .order-step__icon {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(51, 53, 82, 0.22);
}

.order-step__icon svg {
    width: 23px;
    height: 23px;
}

.order-step__icon svg.order-step__icon-svg--truck {
    width: 25px;
    height: 25px;
}

.order-step__title {
    font-family: var(--font-heading);
    font-size: 0.9875rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.35rem;
    color: var(--color-navy);
}

.order-step__desc {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--color-navy);
    margin: 0;
    opacity: 0.72;
}

.order-step__arrow {
    display: none;
    color: var(--color-copper);
    opacity: 0.65;
}

/* Workshop banner */
.workshop-banner {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

.workshop-banner__image {
    display: block;
    width: 100%;
    height: clamp(240px, 38vw, 520px);
    object-fit: cover;
    object-position: center 35%;
}

/* Page hero (work samples, products, how it works, request quote) */
.work-samples-hero,
.products-hero,
.how-hero,
.quote-hero {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.work-samples-hero__image,
.products-hero__image,
.how-hero__image,
.quote-hero__image {
    display: block;
    width: 100%;
    height: clamp(260px, 40vw, 540px);
    object-fit: cover;
    object-position: center 40%;
}

.work-samples-hero__overlay,
.products-hero__overlay,
.how-hero__overlay,
.quote-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem var(--page-pad);
    background: linear-gradient(
        180deg,
        rgba(51, 53, 82, 0.42) 0%,
        rgba(51, 53, 82, 0.58) 100%
    );
    line-height: normal;
}

.work-samples-hero__title,
.products-hero__title,
.how-hero__title,
.quote-hero__title {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.work-samples-hero__title::after,
.products-hero__title::after,
.how-hero__title::after,
.quote-hero__title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin: 0.85rem auto 0;
    background: var(--color-copper);
    border-radius: 2px;
}

.products-hero__content {
    max-width: 760px;
    text-align: center;
}

.products-hero__subtitle,
.how-hero__subtitle,
.quote-hero__subtitle {
    color: rgba(255, 255, 255, 0.92);
    margin: 1.15rem 0 0;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.2);
}

.how-hero__content,
.quote-hero__content {
    max-width: 760px;
    text-align: center;
}

/* Products page */
.products-intro {
    padding-top: clamp(3rem, 6vw, 4.5rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.products-intro__inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.products-intro__title {
    margin-bottom: 1rem;
}

.products-intro__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 0.75rem auto 0;
    background: var(--color-copper);
    border-radius: 2px;
}

.products-intro__text {
    margin: 0 0 1.75rem;
}

.products-intro__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.products-intro__link {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.1rem;
    border: 1.5px solid rgba(51, 53, 82, 0.14);
    border-radius: var(--radius-pill);
    background: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.products-intro__link:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
}

.products-catalog {
    padding: 0;
}

.product-detail {
    position: relative;
    padding: clamp(4rem, 7vw, 6rem) 0;
    overflow: hidden;
}

.product-detail--medals {
    background: linear-gradient(160deg, #f3e8de 0%, #ebe0d4 50%, #e4d8cb 100%);
}

.product-detail--awards {
    background: linear-gradient(160deg, #dfe3ec 0%, #d4dae6 50%, #c8d0df 100%);
}

.product-detail--souvenirs {
    background: linear-gradient(160deg, #f5f3ef 0%, #edeae4 50%, #e6e2da 100%);
}

.product-detail__grid {
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.product-detail__media {
    display: grid;
    gap: 1rem;
}

.product-detail__hero-image {
    margin: 0;
    border-radius: calc(var(--radius-sm) + 4px);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}

.product-detail__hero-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-detail__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.product-detail__thumb {
    margin: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.product-detail__thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-detail__tag {
    display: inline-block;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.72);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-copper);
}

.product-detail__title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}

.product-detail__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 0.75rem;
    background: var(--color-copper);
    border-radius: 2px;
}

.product-detail__lead {
    margin: 0 0 1rem;
}

.product-detail__body {
    margin: 0 0 1.35rem;
}

.product-detail__features {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.product-detail__features li {
    position: relative;
    padding-left: 1.35rem;
    font-size: clamp(1rem, 1.4vw, 1.0625rem);
    line-height: 1.5;
}

.product-detail__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-copper);
}

.product-detail__specs {
    display: grid;
    gap: 0.85rem;
    margin: 0 0 1.75rem;
}

.product-detail__spec {
    padding: 0.95rem 1.1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(51, 53, 82, 0.08);
}

.product-detail__spec dt {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-copper);
    margin-bottom: 0.35rem;
}

.product-detail__spec dd {
    margin: 0;
    font-size: clamp(1rem, 1.4vw, 1.0625rem);
    line-height: 1.5;
}

.product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.products-materials {
    background: var(--color-white);
}

.products-materials__inner {
    display: grid;
    gap: 2.5rem;
}

.products-materials__title {
    margin-bottom: 0.85rem;
}

.products-materials__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 0.75rem;
    background: var(--color-copper);
    border-radius: 2px;
}

.products-materials__grid {
    display: grid;
    gap: 1.25rem;
}

.products-materials__item {
    border-radius: calc(var(--radius-sm) + 2px);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.products-materials__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.products-materials__item h3 {
    margin: 1rem 1.15rem 0.35rem;
    font-size: 1.25rem;
}

.products-materials__item p {
    margin: 0 1.15rem 1.15rem;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(51, 53, 82, 0.82);
}

.products-cta {
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
}

.products-cta__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.products-cta__title {
    margin-bottom: 0.85rem;
}

.products-cta__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 0.75rem auto 0;
    background: var(--color-copper);
    border-radius: 2px;
}

.products-cta__text {
    margin: 0 0 1.75rem;
}

.products-cta .btn-group {
    align-items: center;
    justify-content: center;
}

/* How it works page */
.how-intro {
    padding-top: clamp(3rem, 6vw, 4.5rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.how-intro__inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.how-intro__title {
    margin-bottom: 1rem;
}

.how-intro__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 0.75rem auto 0;
    background: var(--color-copper);
    border-radius: 2px;
}

.how-intro__text {
    margin: 0 0 1.75rem;
}

.how-intro__nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.35rem, 1.5vw, 0.65rem);
    width: 100%;
}

.how-intro__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem clamp(0.35rem, 1.2vw, 1.1rem);
    border: 1.5px solid rgba(51, 53, 82, 0.14);
    border-radius: var(--radius-pill);
    background: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(0.68rem, 2.6vw, 0.92rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.how-intro__link:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
}

.how-process {
    background: var(--color-surface);
    border-top: 1px solid rgba(51, 53, 82, 0.06);
    border-bottom: 1px solid rgba(51, 53, 82, 0.06);
}

.how-process__header {
    display: grid;
    gap: 1rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.how-steps-detail {
    padding: 0;
}

.how-step-detail {
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.how-step-detail:nth-child(odd) {
    background: linear-gradient(160deg, #f3f4f6 0%, #eceef2 50%, #e6e8ed 100%);
}

.how-step-detail:nth-child(even) {
    background: linear-gradient(160deg, #f5f0ea 0%, #ede7df 50%, #e5ddd3 100%);
}

.how-step-detail__grid {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

.how-step-detail__media {
    position: relative;
}

.how-step-detail__image {
    margin: 0;
    border-radius: calc(var(--radius-sm) + 4px);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}

.how-step-detail__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.how-step-detail__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 3rem;
    padding: 0 0.85rem;
    border-radius: var(--radius-pill);
    background: rgba(51, 53, 82, 0.88);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 24px rgba(51, 53, 82, 0.2);
}

.how-step-detail__label {
    margin: 0 0 0.65rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-copper);
}

.how-step-detail__title {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    margin-bottom: 0.85rem;
}

.how-step-detail__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 0.75rem;
    background: var(--color-copper);
    border-radius: 2px;
}

.how-step-detail__summary {
    margin: 0 0 1rem;
}

.how-step-detail__body {
    margin: 0 0 1.25rem;
}

.how-step-detail__tips {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.how-step-detail__tips li {
    position: relative;
    padding-left: 1.35rem;
    font-size: clamp(1rem, 1.4vw, 1.0625rem);
    line-height: 1.5;
}

.how-step-detail__tips li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-copper);
}

.how-prepare {
    background: var(--color-white);
}

.how-prepare__inner {
    display: grid;
    gap: 2rem;
}

.how-prepare__title {
    margin-bottom: 0.75rem;
}

.how-prepare__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 0.75rem;
    background: var(--color-copper);
    border-radius: 2px;
}

.how-prepare__grid {
    display: grid;
    gap: 1rem;
}

.how-prepare__item {
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    border: 1px solid rgba(51, 53, 82, 0.07);
    box-shadow: var(--shadow-soft);
}

.how-prepare__item h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}

.how-prepare__item p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(51, 53, 82, 0.82);
}

.how-notes {
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
}

.how-notes__title {
    text-align: center;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.how-notes__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 0.75rem auto 0;
    background: var(--color-copper);
    border-radius: 2px;
}

.how-notes__grid {
    display: grid;
    gap: 1rem;
}

.how-notes__card {
    padding: 1.5rem 1.35rem;
    border-radius: calc(var(--radius-sm) + 2px);
    background: var(--color-white);
    border: 1px solid rgba(51, 53, 82, 0.08);
    box-shadow: var(--shadow-soft);
}

.how-notes__card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.15rem;
}

.how-notes__card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(51, 53, 82, 0.82);
}

.how-cta {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.how-cta__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.how-cta__title {
    margin-bottom: 0.85rem;
}

.how-cta__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 0.75rem auto 0;
    background: var(--color-copper);
    border-radius: 2px;
}

.how-cta__text {
    margin: 0 0 1.75rem;
}

.how-cta .btn-group {
    align-items: center;
    justify-content: center;
}

/* Work samples sections */
.work-samples {
    padding: 0;
}

.sample-block {
    position: relative;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    min-height: clamp(560px, 72vh, 780px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.sample-block--medals {
    background: linear-gradient(160deg, #f3e8de 0%, #ebe0d4 45%, #e4d8cb 100%);
}

.sample-block--medals::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/sample-marathon.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    pointer-events: none;
}

.sample-block--awards {
    background: linear-gradient(160deg, #dfe3ec 0%, #d4dae6 45%, #c8d0df 100%);
}

.sample-block--awards::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/award-trophy.webp');
    background-size: cover;
    background-position: center top;
    opacity: 0.06;
    pointer-events: none;
}

.sample-block--souvenirs {
    background: linear-gradient(160deg, #f5f3ef 0%, #edeae4 45%, #e6e2da 100%);
}

.sample-block--souvenirs::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/souvenir-tumbler.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
}

.sample-block > .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.sample-block__header {
    display: grid;
    gap: 1.25rem;
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    align-items: center;
}

.sample-block__title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
    text-align: left;
}

.sample-block__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 0.75rem 0 0;
    background: var(--color-copper);
    border-radius: 2px;
}

.sample-block__text {
    margin: 0;
    text-align: left;
}

.sample-gallery-wrap {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.35rem);
    align-items: stretch;
}

.sample-gallery-wrap.is-centered .sample-gallery {
    justify-content: center;
}

.sample-gallery-wrap.is-centered .sample-gallery__controls {
    display: none;
}

.sample-gallery {
    --gallery-gap: clamp(1rem, 2vw, 1.35rem);
    display: flex;
    gap: var(--gallery-gap);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x;
    padding: 0.35rem 0.15rem;
}

.sample-gallery::-webkit-scrollbar {
    display: none;
}

.sample-gallery.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
    user-select: none;
}

.sample-gallery__item {
    flex: 0 0 clamp(220px, 42vw, 300px);
    width: clamp(220px, 42vw, 300px);
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: calc(var(--radius-sm) + 2px);
    scroll-snap-align: start;
    cursor: zoom-in;
    appearance: none;
    -webkit-appearance: none;
}

.sample-gallery__item:focus-visible {
    outline: 2px solid var(--color-copper);
    outline-offset: 3px;
}

.sample-gallery img {
    width: 100%;
    border-radius: inherit;
    aspect-ratio: 1;
    object-fit: cover;
    min-height: 140px;
    box-shadow: 0 10px 28px rgba(51, 53, 82, 0.12);
    transition: transform 0.4s ease, box-shadow var(--transition);
    pointer-events: none;
}

.sample-gallery:not(.is-dragging) .sample-gallery__item:hover img {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(51, 53, 82, 0.18);
}

.sample-gallery__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.85rem;
}

.sample-gallery__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.75rem, 4vw, 3.25rem);
    height: clamp(2.75rem, 4vw, 3.25rem);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--color-navy);
    box-shadow:
        0 10px 30px rgba(51, 53, 82, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

.sample-gallery__arrow svg {
    transition: transform 0.25s ease;
}

.sample-gallery__arrow:hover:not(:disabled) {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
    box-shadow:
        0 14px 34px rgba(51, 53, 82, 0.22),
        0 0 0 3px rgba(166, 106, 61, 0.22);
    transform: scale(1.04);
}

.sample-gallery__arrow:hover:not(:disabled) svg {
    transform: scale(1.06);
}

.sample-gallery__arrow:active:not(:disabled) {
    transform: scale(0.98);
}

.sample-gallery__arrow:focus-visible {
    outline: 2px solid var(--color-copper);
    outline-offset: 3px;
}

.sample-gallery__arrow:disabled {
    opacity: 0.28;
    cursor: not-allowed;
    box-shadow: none;
}

/* Sample lightbox */
.sample-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 2.5rem);
}

.sample-lightbox[hidden] {
    display: none;
}

.sample-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 22, 36, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: zoom-out;
}

.sample-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    width: min(100%, 1080px);
    max-height: calc(100vh - 2rem);
    animation: sample-lightbox-in 0.28s ease;
}

.sample-lightbox__figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.sample-lightbox__image {
    width: auto;
    max-width: 100%;
    max-height: min(78vh, 860px);
    height: auto;
    object-fit: contain;
    border-radius: calc(var(--radius-sm) + 2px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.sample-lightbox__caption {
    margin: 0;
    max-width: 40rem;
    text-align: center;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

.sample-lightbox__close,
.sample-lightbox__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.sample-lightbox__close:hover,
.sample-lightbox__nav:hover {
    background: var(--color-copper);
    border-color: var(--color-copper);
    transform: scale(1.04);
}

.sample-lightbox__close:focus-visible,
.sample-lightbox__nav:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
}

.sample-lightbox__close {
    position: absolute;
    top: -0.35rem;
    right: -0.15rem;
    z-index: 2;
}

.sample-lightbox__nav:disabled {
    opacity: 0.28;
    cursor: not-allowed;
    transform: none;
}

.sample-lightbox__nav:disabled:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}

body.lightbox-open {
    overflow: hidden;
}

@keyframes sample-lightbox-in {
    from {
        opacity: 0;
        transform: scale(0.97) translateY(8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 720px) {
    .sample-lightbox__dialog {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        justify-items: center;
        gap: 0.85rem;
    }

    .sample-lightbox__close {
        position: fixed;
        top: 1rem;
        right: 1rem;
    }

    .sample-lightbox__figure {
        order: 1;
        width: 100%;
    }

    .sample-lightbox__nav--prev {
        order: 2;
        position: absolute;
        left: 0.25rem;
        top: 42%;
    }

    .sample-lightbox__nav--next {
        order: 3;
        position: absolute;
        right: 0.25rem;
        top: 42%;
    }

    .sample-lightbox__image {
        max-height: min(68vh, 720px);
    }
}

/* Request a quote page */
.quote-trust {
    background: var(--color-white);
    border-bottom: 1px solid rgba(51, 53, 82, 0.06);
    padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
}

.quote-trust__grid {
    display: grid;
    gap: 1.35rem 1.5rem;
    grid-template-columns: 1fr;
}

.quote-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.quote-trust__icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--color-navy) 0%, #454868 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(51, 53, 82, 0.18);
}

.quote-trust__icon svg {
    width: 21px;
    height: 21px;
}

.quote-trust__label {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0 0 0.25rem;
    color: var(--color-navy);
}

.quote-trust__text {
    margin: 0;
    font-size: 0.875rem;
    color: #454868;
    line-height: 1.5;
}

.quote-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.quote-success {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: var(--radius-sm);
    background: #eef6ee;
    border: 1px solid rgba(58, 122, 68, 0.28);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.quote-success.is-hiding {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

.quote-success--below {
    margin-top: 1.25rem;
    margin-bottom: 0;
}

.quote-success[hidden] {
    display: none !important;
}

.quote-success__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #3a7a44;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-success__icon svg {
    width: 20px;
    height: 20px;
}

.quote-success__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin: 0 0 0.35rem;
    color: #2c5e34;
}

.quote-success__text {
    margin: 0;
    color: #3d5a42;
    line-height: 1.6;
}

.quote-success__text a {
    color: #2c5e34;
    font-weight: 600;
    text-decoration: underline;
}

.quote-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.quote-form__header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    margin: 0 0 0.5rem;
    color: var(--color-navy);
}

.quote-form__note {
    margin: 0;
    font-size: 0.9rem;
    color: #454868;
    line-height: 1.55;
}

.quote-form .req {
    color: var(--color-copper);
}

.form-field--hp {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.quote-aside {
    display: grid;
    gap: 1.5rem;
}

.quote-card {
    background: var(--color-white);
    border-radius: calc(var(--radius-sm) + 4px);
    border: 1px solid rgba(51, 53, 82, 0.08);
    box-shadow: var(--shadow-lift);
    padding: 1.6rem 1.5rem;
}

.quote-card__title {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    color: var(--color-navy);
}

.quote-card__text {
    margin: 0 0 1.1rem;
    font-size: 0.925rem;
    color: #454868;
    line-height: 1.6;
}

.quote-card__meta {
    margin: 1.1rem 0 0;
    font-size: 0.8125rem;
    color: #454868;
    line-height: 1.55;
}

.quote-channels {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.quote-channel {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(51, 53, 82, 0.1);
    background: var(--color-bg);
    text-decoration: none;
    color: var(--color-navy);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.quote-channel:hover {
    border-color: rgba(163, 100, 52, 0.35);
    box-shadow: 0 8px 22px rgba(51, 53, 82, 0.1);
    transform: translateY(-2px);
}

.quote-channel__icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-navy);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-channel__icon svg {
    width: 17px;
    height: 17px;
}

.quote-channel strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
}

.quote-channel small {
    display: block;
    font-size: 0.8125rem;
    color: #454868;
    overflow-wrap: anywhere;
}

.quote-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.quote-checklist li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.925rem;
    color: var(--color-navy);
    line-height: 1.55;
}

.quote-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-copper);
}

.quote-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.1rem;
    counter-reset: quote-step;
}

.quote-steps li {
    position: relative;
    padding-left: 2.6rem;
    counter-increment: quote-step;
}

.quote-steps li::before {
    content: counter(quote-step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0.1em;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-copper);
}

.quote-steps li::after {
    content: '';
    position: absolute;
    left: 0.15rem;
    top: 1.6em;
    bottom: -0.9rem;
    width: 1px;
    background: rgba(163, 100, 52, 0.28);
}

.quote-steps li:last-child::after {
    display: none;
}

.quote-steps strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.2rem;
}

.quote-steps span {
    display: block;
    font-size: 0.875rem;
    color: #454868;
    line-height: 1.55;
}

.quote-faq {
    background: var(--color-white);
    border-top: 1px solid rgba(51, 53, 82, 0.06);
}

.quote-faq__inner {
    max-width: 820px;
    width: 100%;
    margin-inline: auto;
}

.quote-faq__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    text-align: center;
    margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-navy);
}

.quote-faq__list {
    display: grid;
    gap: 0.85rem;
}

.quote-faq__item {
    background: var(--color-bg);
    border: 1px solid rgba(51, 53, 82, 0.09);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.quote-faq__item[open] {
    border-color: rgba(163, 100, 52, 0.3);
    box-shadow: 0 10px 28px rgba(51, 53, 82, 0.08);
}

.quote-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.25rem;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading);
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--color-navy);
}

.quote-faq__question::-webkit-details-marker {
    display: none;
}

.quote-faq__icon {
    flex-shrink: 0;
    color: var(--color-copper);
    transition: transform 0.25s ease;
}

.quote-faq__item[open] .quote-faq__icon {
    transform: rotate(180deg);
}

.quote-faq__answer {
    margin: 0;
    padding: 0.15rem 1.35rem 1.35rem;
    color: var(--color-navy);
    font-size: 1.05rem;
    line-height: 1.75;
}

.quote-faq__item[open] .quote-faq__answer {
    border-top: 1px solid rgba(51, 53, 82, 0.08);
    padding-top: 0.95rem;
}

@media (min-width: 640px) {
    .quote-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .quote-trust__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .quote-layout {
        grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
        gap: 2.5rem;
    }

    .quote-aside {
        order: 1;
        position: sticky;
        top: calc(var(--header-height, 76px) + 1.5rem);
    }

    .quote-form-col {
        order: 2;
    }
}

/* Home FAQ */
.home-faq {
    background:
        radial-gradient(ellipse 80% 60% at 0% 0%, rgba(166, 106, 61, 0.07), transparent 55%),
        linear-gradient(180deg, var(--color-white) 0%, var(--color-surface) 100%);
    border-top: 1px solid rgba(51, 53, 82, 0.06);
}

.home-faq__layout {
    display: grid;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}

.home-faq__intro {
    max-width: 28rem;
}

.home-faq__eyebrow {
    margin: 0 0 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-copper);
}

.home-faq__lead {
    margin: 1.15rem 0 0;
}

.home-faq__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-navy);
    border-bottom: 1.5px solid rgba(166, 106, 61, 0.45);
    padding-bottom: 0.15rem;
    transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.home-faq__cta:hover {
    color: var(--color-copper);
    border-color: var(--color-copper);
    gap: 0.7rem;
}

.home-faq__list {
    display: grid;
    gap: 0.75rem;
}

.home-faq__item {
    background: var(--color-white);
    border: 1px solid rgba(51, 53, 82, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(51, 53, 82, 0.04);
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.home-faq__item:hover {
    border-color: rgba(51, 53, 82, 0.14);
}

.home-faq__item[open] {
    border-color: rgba(166, 106, 61, 0.28);
    box-shadow: 0 14px 36px rgba(51, 53, 82, 0.09);
}

.home-faq__question {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem 1rem;
    padding: 1.15rem 1.2rem;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading);
    font-size: 0.9875rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-navy);
    transition: background 0.25s ease;
}

.home-faq__question::-webkit-details-marker {
    display: none;
}

.home-faq__question:hover {
    background: rgba(233, 234, 236, 0.45);
}

.home-faq__question:focus-visible {
    outline: 2px solid var(--color-copper);
    outline-offset: -2px;
}

.home-faq__number {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-copper);
    opacity: 0.85;
}

.home-faq__toggle {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(51, 53, 82, 0.06);
    color: var(--color-navy);
    flex-shrink: 0;
    transition:
        background 0.28s ease,
        color 0.28s ease,
        transform 0.28s ease;
}

.home-faq__item[open] .home-faq__toggle {
    background: var(--color-navy);
    color: var(--color-white);
}

.home-faq__toggle-v {
    transform-origin: center;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.home-faq__item[open] .home-faq__toggle-v {
    transform: scaleY(0);
    opacity: 0;
}

.home-faq__answer {
    padding: 0 1.2rem 1.25rem 1.2rem;
}

.home-faq__answer p {
    margin: 0;
    padding: 0.95rem 0 0;
    border-top: 1px solid rgba(51, 53, 82, 0.08);
    font-size: 1.0125rem;
    line-height: 1.7;
    color: var(--color-navy);
}

@media (min-width: 900px) {
    .home-faq__layout {
        grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.35fr);
        gap: clamp(2.5rem, 5vw, 4.5rem);
    }

    .home-faq__intro {
        position: sticky;
        top: calc(var(--header-height) + 1.5rem);
    }

    .home-faq__question {
        padding: 1.25rem 1.4rem;
    }

    .home-faq__answer {
        padding-left: 1.4rem;
        padding-right: 1.4rem;
        padding-bottom: 1.4rem;
    }
}

/* Contact */
.contact-section {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.contact-section__grid {
    display: grid;
    gap: 2.5rem;
}

.contact-section__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.contact-section__intro h2 {
    margin: 0;
}

.contact-section__intro .lead-italic {
    margin-top: 1rem;
    margin-bottom: 0;
}

.contact-section__channels {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.65rem;
    width: 100%;
    margin-top: 1.35rem;
}

.contact-section__channels .btn {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
}

.contact-section__media {
    position: relative;
    display: block;
    width: 100%;
    margin: 1.75rem 0 0;
    overflow: hidden;
    border-radius: calc(var(--radius-sm) + 6px);
    background: #1c1e2e;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-soft);
}

.contact-section__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-section__media-veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(160deg, rgba(51, 53, 82, 0.18) 0%, transparent 42%),
        linear-gradient(0deg, rgba(28, 30, 46, 0.42) 0%, transparent 55%);
}

/* Contact Us page */
.contact-hero__content {
    max-width: 720px;
    text-align: center;
}

.contact-page {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
    background:
        radial-gradient(ellipse 80% 50% at 0% 0%, rgba(166, 106, 61, 0.08), transparent 55%),
        linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.contact-page__grid {
    display: grid;
    gap: clamp(2rem, 4vw, 3.25rem);
    align-items: start;
}

.contact-page__info h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3.5vw, 2.15rem);
    margin: 0;
    color: var(--color-navy);
}

.contact-page__lead {
    margin: 1rem 0 0;
    color: #454868;
    line-height: 1.65;
    max-width: 38rem;
}

.contact-channels {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    padding: 1rem 1.1rem;
    background: var(--color-white);
    border: 1px solid rgba(51, 53, 82, 0.08);
    border-radius: calc(var(--radius-sm) + 2px);
    box-shadow: 0 8px 24px rgba(51, 53, 82, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-channel:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(51, 53, 82, 0.08);
}

.contact-channel__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--color-navy) 0%, #454868 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-channel__icon svg {
    width: 20px;
    height: 20px;
}

.contact-channel__label {
    margin: 0 0 0.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-copper);
}

.contact-channel__value {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    text-decoration: none;
    line-height: 1.35;
    word-break: break-word;
}

a.contact-channel__value:hover,
a.contact-channel__value:focus-visible {
    color: var(--color-copper);
}

.contact-channel__value--plain {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
}

.contact-page__aside {
    margin-top: 1.75rem;
    padding: 1.35rem 1.4rem;
    border-radius: calc(var(--radius-sm) + 4px);
    background: linear-gradient(145deg, var(--color-navy) 0%, #2a2c44 100%);
    color: var(--color-white);
}

.contact-page__aside-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin: 0 0 0.45rem;
}

.contact-page__aside-text {
    margin: 0 0 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    font-size: 0.95rem;
}

.contact-page__aside .btn--solid {
    background: var(--color-copper);
    border-color: var(--color-copper);
}

.contact-page__aside .btn--solid:hover,
.contact-page__aside .btn--solid:focus-visible {
    background: #b87848;
    border-color: #b87848;
}

.contact-form .quote-form__header {
    margin-bottom: 0.25rem;
}

@media (min-width: 900px) {
    .contact-page__grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 3rem;
    }

    .contact-channels {
        gap: 1rem;
    }
}

/* Contact map — editorial dock over full-bleed canvas */
.contact-map {
    position: relative;
    isolation: isolate;
    margin-top: 0;
    background: #1c1e2e;
    color: var(--color-white);
    overflow: hidden;
}

.contact-map__canvas {
    position: relative;
    min-height: clamp(22rem, 52vw, 32rem);
    height: clamp(22rem, 52vw, 32rem);
}

.contact-map__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.45) saturate(0.75) contrast(1.05);
    transform: scale(1.02);
    transform-origin: center;
    transition: filter 0.45s ease;
}

.contact-map:hover .contact-map__iframe,
.contact-map:focus-within .contact-map__iframe {
    filter: grayscale(0.15) saturate(0.95) contrast(1.02);
}

.contact-map__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(28, 30, 46, 0.78) 0%, rgba(28, 30, 46, 0.35) 38%, rgba(28, 30, 46, 0.08) 62%, transparent 78%),
        linear-gradient(0deg, rgba(28, 30, 46, 0.55) 0%, transparent 42%);
    z-index: 1;
}

.contact-map__rail {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.contact-map__panel {
    pointer-events: auto;
    width: min(100%, 24.5rem);
    padding: 1.6rem 0 0.25rem;
    border-top: 2px solid var(--color-copper);
}

.contact-map__eyebrow {
    margin: 0 0 0.55rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.contact-map__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.4vw, 2.55rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.contact-map__text {
    margin: 0.85rem 0 0;
    max-width: 28ch;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.contact-map__meta {
    display: grid;
    gap: 0.85rem;
    margin: 1.35rem 0 0;
    padding: 0;
}

.contact-map__meta > div {
    display: grid;
    gap: 0.2rem;
}

.contact-map__meta dt {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.contact-map__meta dd {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.4;
    color: var(--color-white);
}

.contact-map__link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.4rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(166, 106, 61, 0.85);
    padding-bottom: 0.2rem;
    transition: color var(--transition), border-color var(--transition), gap var(--transition);
}

.contact-map__link svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.contact-map__link:hover,
.contact-map__link:focus-visible {
    color: #e8c3a4;
    border-color: #e8c3a4;
    gap: 0.75rem;
}

.contact-map__link:hover svg,
.contact-map__link:focus-visible svg {
    transform: translateX(2px);
}

.contact-map__link:focus-visible {
    outline: 2px solid var(--color-copper);
    outline-offset: 4px;
}

@media (max-width: 719px) {
    .contact-map__canvas {
        min-height: 18rem;
        height: 18rem;
    }

    .contact-map__rail {
        position: relative;
        inset: auto;
        background: #1c1e2e;
        padding-top: 0;
        padding-bottom: 2.25rem;
    }

    .contact-map__grain {
        background:
            linear-gradient(0deg, rgba(28, 30, 46, 0.72) 0%, transparent 55%);
    }

    .contact-map__panel {
        width: 100%;
        padding-top: 1.35rem;
    }

    .contact-map__text {
        max-width: none;
    }
}

@media (min-width: 720px) and (max-width: 1023px) {
    .contact-map__rail {
        align-items: center;
    }

    .contact-map__panel {
        width: min(100%, 22rem);
        padding: 1.35rem 1.25rem 1.25rem;
        background: rgba(28, 30, 46, 0.88);
        backdrop-filter: blur(8px);
        border-top: 0;
        border-left: 2px solid var(--color-copper);
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-map__iframe,
    .contact-map__link,
    .contact-map__link svg {
        transition: none;
    }

    .contact-map__iframe {
        transform: none;
    }
}


/* Form */
.quote-form {
    display: grid;
    gap: 1.15rem;
    padding: 2rem;
    background: var(--color-white);
    border-radius: calc(var(--radius-sm) + 4px);
    box-shadow: var(--shadow-lift);
    border: 1px solid rgba(51, 53, 82, 0.08);
}

.form-row {
    display: grid;
    gap: 1.15rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-field label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--color-navy);
}

.form-field__hint {
    font-size: 0.78rem;
    color: #454868;
    margin: 0;
    line-height: 1.4;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(51, 53, 82, 0.14);
    border-radius: calc(var(--radius-sm) + 2px);
    background: var(--color-white);
    color: var(--color-navy);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(51, 53, 82, 0.04);
    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(51, 53, 82, 0.55);
}

.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover {
    border-color: rgba(51, 53, 82, 0.24);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--color-copper);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(163, 100, 52, 0.14);
}

.form-field input.is-valid,
.form-field textarea.is-valid,
.form-field select.is-valid,
.form-field input[type="file"].is-valid {
    border-color: rgba(163, 100, 52, 0.55);
}

.form-field input.is-invalid,
.form-field textarea.is-invalid,
.form-field select.is-invalid,
.form-field input[type="file"].is-invalid {
    border-color: #8b3a3a;
    background: #fdf8f8;
    box-shadow: 0 0 0 3px rgba(139, 58, 58, 0.1);
}

.form-field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.6rem;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--color-navy) 50%),
        linear-gradient(135deg, var(--color-navy) 50%, transparent 50%);
    background-position:
        calc(100% - 1.15rem) 50%,
        calc(100% - 0.85rem) 50%;
    background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
    background-repeat: no-repeat;
    cursor: pointer;
}

.form-field select:invalid {
    color: rgba(51, 53, 82, 0.55);
}

.form-field select option {
    color: var(--color-navy);
}

.form-field--product-other {
    animation: product-other-in 0.28s ease;
}

.form-field--product-other[hidden] {
    display: none !important;
}

@keyframes product-other-in {
    from {
        opacity: 0;
        transform: translateY(-0.4rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-field input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.form-field input[type="number"]::-webkit-inner-spin-button,
.form-field input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-field input[type="date"] {
    color-scheme: light;
    min-height: 3rem;
}

.form-field input[type="file"] {
    padding: 0.75rem 1rem;
    cursor: pointer;
    background: var(--color-surface);
}

.form-field input[type="file"]::file-selector-button {
    margin-right: 0.85rem;
    padding: 0.45rem 0.85rem;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity var(--transition);
}

.form-field input[type="file"]::file-selector-button:hover {
    opacity: 0.88;
}

.inspo-file-list {
    list-style: none;
    margin: 0.35rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.inspo-file-list__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
        "name status remove"
        "size status remove";
    gap: 0.15rem 0.75rem;
    align-items: center;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    border: 1px solid rgba(184, 170, 170, 0.35);
}

.inspo-file-list__name {
    grid-area: name;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-navy);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.inspo-file-list__size {
    grid-area: size;
    font-size: 0.76rem;
    color: #454868;
}

.inspo-file-list__status {
    grid-area: status;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: right;
    white-space: nowrap;
}

.inspo-file-list__item.is-ready .inspo-file-list__status {
    color: var(--color-copper);
}

.inspo-file-list__item.is-invalid {
    background: #f5ecec;
    border-color: rgba(139, 58, 58, 0.35);
}

.inspo-file-list__item.is-invalid .inspo-file-list__status {
    color: #8b3a3a;
}

.inspo-file-list__item.is-uploading {
    border-color: var(--color-navy);
}

.inspo-file-list__item.is-uploading .inspo-file-list__status {
    color: var(--color-navy);
}

.inspo-file-list__item.is-uploaded .inspo-file-list__status {
    color: var(--color-copper);
}

.inspo-file-list__remove {
    grid-area: remove;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(51, 53, 82, 0.08);
    color: var(--color-navy);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.inspo-file-list__remove:hover {
    background: rgba(139, 58, 58, 0.12);
    color: #8b3a3a;
}

.inspo-file-list__remove:focus-visible {
    outline: 2px solid var(--color-copper);
    outline-offset: 2px;
}

.inspo-file-list__item.is-uploading .inspo-file-list__remove,
.inspo-file-list__item.is-uploaded .inspo-file-list__remove {
    visibility: hidden;
    pointer-events: none;
}

.upload-progress {
    margin-top: 0.65rem;
    display: grid;
    gap: 0.4rem;
}

.upload-progress[hidden] {
    display: none !important;
}

.upload-progress__track {
    height: 0.45rem;
    border-radius: var(--radius-pill);
    background: var(--color-input-bg);
    overflow: hidden;
}

.upload-progress__bar {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-copper), var(--color-navy));
    transition: width 0.15s ease;
}

.upload-progress__label {
    margin: 0;
    font-size: 0.78rem;
    color: var(--color-navy);
}

.form-field__error {
    font-size: 0.8rem;
    color: #8b3a3a;
    margin: 0;
    min-height: 0;
}

.form-field__error:not(:empty) {
    min-height: 1.2em;
}

.form-field textarea {
    min-height: 132px;
    resize: vertical;
}

.quote-form .btn--solid {
    margin-top: 0.35rem;
    width: 100%;
    min-height: 3.1rem;
    font-size: var(--text-base);
}

/* Footer */
.site-footer {
    position: relative;
    background: var(--color-bg);
    padding: 0 0 1.5rem;
    border-top: none;
    color: var(--color-navy);
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
}

.site-footer__newsletter {
    display: none;
}

.site-footer__panel {
    display: contents;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
    padding-top: 2.25rem;
}

.site-footer__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.site-footer__blurb {
    display: none;
}

.site-footer__social {
    display: none;
}

.site-footer__accordions {
    display: block;
    width: 100%;
}

.site-footer__accordion {
    display: block;
}

.site-footer__accordion-trigger {
    list-style: none;
    cursor: pointer;
}

.site-footer__accordion-trigger::-webkit-details-marker {
    display: none;
}

.site-footer__accordion-icon {
    display: block;
}

.site-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: var(--text-sm);
    line-height: 1.45;
}

.site-footer__contact-item a {
    transition: color var(--transition);
    color: inherit;
    white-space: nowrap;
}

.site-footer__contact-item a:hover,
.site-footer__contact-item a:focus-visible {
    color: var(--color-copper);
}

.site-footer__contact-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    color: var(--color-copper);
    opacity: 0.9;
}

.site-footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.site-footer__nav-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(51, 53, 82, 0.78);
    transition: color var(--transition);
}

.site-footer__nav-link:hover,
.site-footer__nav-link:focus-visible {
    color: var(--color-copper);
}

.site-footer__bar {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(51, 53, 82, 0.12);
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    color: rgba(51, 53, 82, 0.65);
}

.site-footer__bar-start {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.site-footer__bar-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1.15rem;
}

.site-footer__bar-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__bar-link:hover,
.site-footer__bar-link:focus-visible {
    color: var(--color-copper);
}

@media (max-width: 899px) {
    .site-footer {
        padding: 2.25rem 0 1.25rem;
        background: var(--color-navy);
        border-top-color: rgba(255, 255, 255, 0.08);
    }

    .site-footer__grid {
        gap: 0;
        padding-top: 0;
        text-align: left;
    }

    .site-footer__brand {
        align-items: center;
        text-align: center;
        padding-bottom: 1.35rem;
        margin-bottom: 0.35rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-footer__brand .brand-logo {
        align-items: center;
    }

    .site-footer__brand .brand-logo__image--dark {
        display: none;
    }

    .site-footer__brand .brand-logo__image--light {
        display: block;
        height: clamp(4.75rem, 18vw, 6rem);
        background: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .site-footer__brand .brand-logo__tagline {
        color: rgba(255, 255, 255, 0.82);
    }

    .site-footer__accordion {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-footer__accordion:last-child {
        border-bottom: none;
    }

    .site-footer__accordion-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
        padding: 1.05rem 0;
        font-family: var(--font-heading);
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--color-white);
        cursor: pointer;
        user-select: none;
    }

    .site-footer__accordion-icon {
        display: block;
        flex-shrink: 0;
        opacity: 0.85;
        transition: transform 0.25s ease;
    }

    .site-footer__accordion[open] .site-footer__accordion-icon {
        transform: rotate(180deg);
    }

    .site-footer__accordion-panel {
        padding-bottom: 1.1rem;
    }

    .site-footer__nav-list {
        align-items: flex-start;
        gap: 0.15rem;
    }

    .site-footer__nav-link {
        display: block;
        width: 100%;
        padding: 0.55rem 0;
        color: rgba(255, 255, 255, 0.86);
    }

    .site-footer__nav-link:hover,
    .site-footer__nav-link:focus-visible {
        color: var(--color-white);
    }

    .site-footer__contact-item {
        justify-content: flex-start;
        color: rgba(255, 255, 255, 0.86);
    }

    .site-footer__contact-item a {
        color: rgba(255, 255, 255, 0.86);
    }

    .site-footer__contact-item a:hover,
    .site-footer__contact-item a:focus-visible {
        color: var(--color-white);
    }

    .site-footer__contact-item svg {
        color: var(--color-copper);
    }

    .site-footer__bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 0.78rem;
        letter-spacing: 0.04em;
        color: rgba(255, 255, 255, 0.62);
        border-top-color: rgba(255, 255, 255, 0.12);
    }

    .site-footer__social {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        list-style: none;
        margin: 1.35rem 0 0;
        padding: 0 0 1.35rem;
    }

    .site-footer__social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.45rem;
        height: 2.45rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        color: var(--color-white);
        transition: background var(--transition), transform var(--transition);
    }

    .site-footer__social-link svg {
        width: 1.1rem;
        height: 1.1rem;
    }

    .site-footer__social-link:hover,
    .site-footer__social-link:focus-visible {
        background: var(--color-copper);
        transform: translateY(-2px);
    }

    .site-footer__bar-start {
        display: contents;
    }

    .site-footer__bar-copy {
        order: 1;
    }

    .site-footer__bar-credit {
        order: 2;
    }

    .site-footer__bar-links {
        order: 3;
        justify-content: center;
    }

    .site-footer__bar-tagline {
        order: 3;
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        font-style: italic;
        font-weight: 600;
    }

    .site-footer__bar-link {
        color: rgba(255, 255, 255, 0.72);
    }

    .site-footer__bar-link:hover,
    .site-footer__bar-link:focus-visible {
        color: var(--color-white);
    }
}

@media (min-width: 900px) {
    .site-footer {
        background: var(--color-bg);
        padding: 5.5rem 0 2.5rem;
    }

    .site-footer__inner {
        position: relative;
        gap: 0;
    }

    .site-footer__newsletter {
        display: grid;
        grid-template-columns: minmax(14rem, 0.95fr) minmax(0, 1.35fr);
        gap: 0;
        align-items: stretch;
        position: relative;
        z-index: 2;
        margin: 0 auto -3.75rem;
        width: min(100%, 68rem);
        padding: 0;
        background: var(--color-navy);
        border-radius: 28px;
        box-shadow: 0 28px 64px rgba(51, 53, 82, 0.24);
        color: var(--color-white);
        overflow: hidden;
    }

    .site-footer__newsletter-media {
        display: block;
        position: relative;
        min-height: 100%;
        height: 100%;
        padding: 0;
        overflow: hidden;
        background: #1f2133;
    }

    .site-footer__newsletter-media img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 16.5rem;
        object-fit: cover;
        object-position: center center;
        border-radius: 0;
        box-shadow: none;
    }

    .site-footer__newsletter-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        min-width: 0;
        padding: 1.85rem 2.15rem;
    }

    .site-footer__newsletter-title {
        margin: 0;
        font-family: var(--font-heading);
        font-size: clamp(1.4rem, 2.1vw, 1.95rem);
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.01em;
        color: var(--color-white);
        max-width: 22ch;
    }

    .site-footer__newsletter-text {
        margin: 0;
        font-size: 0.98rem;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.82);
        max-width: 44ch;
    }

    .site-footer__newsletter-success,
    .site-footer__newsletter-error {
        margin: 0.55rem 0 0;
        font-size: 0.9rem;
        font-weight: 600;
        transition: opacity 0.45s ease, transform 0.45s ease, max-height 0.45s ease, margin 0.45s ease;
        max-height: 4rem;
        overflow: hidden;
    }

    .site-footer__newsletter-success.is-dismissed,
    .site-footer__newsletter-error.is-dismissed {
        opacity: 0;
        transform: translateY(-0.35rem);
        max-height: 0;
        margin-top: 0;
        pointer-events: none;
    }

    .site-footer__newsletter-success {
        color: #b8e0c8;
    }

    .site-footer__newsletter-error {
        color: #ffc9b8;
    }

    .site-footer__newsletter-form {
        width: 100%;
        max-width: 34rem;
        margin-top: 0.35rem;
    }

    .site-footer__newsletter-field {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        width: 100%;
        min-height: 3.35rem;
        padding: 0.35rem 0.35rem 0.35rem 1rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .site-footer__newsletter-icon {
        display: inline-flex;
        flex-shrink: 0;
        color: rgba(255, 255, 255, 0.78);
    }

    .site-footer__newsletter-icon svg {
        width: 1.15rem;
        height: 1.15rem;
    }

    .site-footer__newsletter-field input {
        flex: 1 1 auto;
        min-width: 0;
        border: 0;
        background: transparent;
        color: var(--color-white);
        font-family: var(--font-body);
        font-size: 0.95rem;
        outline: none;
    }

    .site-footer__newsletter-field input::placeholder {
        color: rgba(255, 255, 255, 0.62);
    }

    .site-footer__newsletter-btn {
        flex-shrink: 0;
        min-height: 2.65rem;
        padding: 0 1.45rem;
        border: 0;
        border-radius: 999px;
        background: var(--color-white);
        color: var(--color-navy);
        font-family: var(--font-heading);
        font-size: 0.92rem;
        font-weight: 700;
        cursor: pointer;
        transition: background var(--transition), color var(--transition), transform var(--transition);
    }

    .site-footer__newsletter-btn:hover,
    .site-footer__newsletter-btn:focus-visible {
        background: var(--color-copper);
        color: var(--color-white);
        transform: translateY(-1px);
    }

    .site-footer__newsletter-note {
        margin: 0.15rem 0 0;
        font-size: 0.78rem;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.68);
    }

    .site-footer__newsletter-note a {
        color: var(--color-white);
        text-decoration: underline;
        text-underline-offset: 0.15em;
    }

    .site-footer__panel {
        display: block;
        position: relative;
        z-index: 1;
        margin-top: 0;
        padding: 5.5rem 2.5rem 1.75rem;
        background: var(--color-white);
        border-radius: 28px;
        box-shadow: 0 18px 48px rgba(51, 53, 82, 0.08);
        border: 1px solid rgba(51, 53, 82, 0.06);
    }

    .site-footer__grid {
        display: grid;
        grid-template-columns: minmax(14rem, 1.35fr) repeat(2, minmax(0, 1fr)) minmax(13.5rem, 1.15fr);
        gap: 2rem 2.25rem;
        align-items: start;
        margin-bottom: 2rem;
        padding-top: 0;
    }

    .site-footer__brand {
        gap: 1rem;
        padding-right: 1rem;
    }

    .site-footer__brand .brand-logo__taglines {
        display: none;
    }

    .site-footer__blurb {
        display: block;
        margin: 0;
        font-size: 0.9375rem;
        line-height: 1.6;
        color: rgba(51, 53, 82, 0.68);
        max-width: 28ch;
    }

    .site-footer__social {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.85rem;
        list-style: none;
        margin: 0 0 1.5rem;
        padding: 0;
    }

    .site-footer__social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.45rem;
        height: 2.45rem;
        border-radius: 999px;
        background: var(--color-navy);
        color: var(--color-white);
        transition: background var(--transition), transform var(--transition);
    }

    .site-footer__social-link svg {
        width: 1.1rem;
        height: 1.1rem;
    }

    .site-footer__social-link:hover,
    .site-footer__social-link:focus-visible {
        background: var(--color-copper);
        transform: translateY(-2px);
    }

    .site-footer__accordions {
        display: contents;
    }

    .site-footer__accordion-trigger {
        display: block;
        pointer-events: none;
        padding: 0;
        margin: 0 0 1.15rem;
        font-family: var(--font-heading);
        font-size: 1.05rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        text-transform: none;
        color: var(--color-navy);
        cursor: default;
        user-select: text;
    }

    .site-footer__accordion-icon {
        display: none;
    }

    .site-footer__accordion-panel {
        padding-bottom: 0;
    }

    .site-footer__nav-list {
        gap: 0.7rem;
    }

    .site-footer__nav-link {
        font-size: 0.95rem;
        font-weight: 500;
        color: rgba(51, 53, 82, 0.72);
    }

    .site-footer__contact-item {
        font-size: 0.95rem;
        color: rgba(51, 53, 82, 0.72);
    }

    .site-footer__bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem 2rem;
        margin-top: 0;
        padding-top: 1.5rem;
        font-size: 0.8125rem;
        text-transform: none;
        letter-spacing: 0.01em;
        opacity: 1;
        color: rgba(51, 53, 82, 0.58);
        border-top: 1px solid rgba(51, 53, 82, 0.1);
    }

    .site-footer__bar-start {
        display: flex;
        gap: 0.35rem;
    }

    .site-footer__bar-tagline {
        margin: 0 0 0 auto;
        font-family: var(--font-body);
        font-style: italic;
        font-weight: 600;
        color: var(--color-copper);
    }
}

@media (min-width: 1100px) {
    .site-footer__newsletter {
        grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.4fr);
        gap: 0;
        padding: 0;
        margin-bottom: -4rem;
    }

    .site-footer__newsletter-media img {
        min-height: 18rem;
    }

    .site-footer__newsletter-content {
        padding: 2.1rem 2.6rem;
    }

    .site-footer__panel {
        padding: 6rem 3rem 1.9rem;
    }

    .site-footer__grid {
        gap: 2rem 2.75rem;
    }
}

/* Privacy page */
.page-simple {
    padding: 3rem 0 5rem;
    max-width: 46rem;
    margin-inline: auto;
}

.page-simple h1 {
    margin-bottom: 0.75rem;
}

.page-simple__meta {
    margin: 0 0 1.5rem;
    font-size: var(--text-sm);
    color: color-mix(in srgb, var(--color-navy) 72%, transparent);
}

.page-simple__intro {
    margin-bottom: 1.75rem;
}

.page-simple__heading {
    margin: 2rem 0 0.85rem;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.25;
}

.page-simple p {
    margin-bottom: 1rem;
}

.page-simple__actions {
    margin-top: 2.25rem;
}

.page-simple a:not(.btn) {
    color: var(--color-copper);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.page-simple a:not(.btn):hover {
    color: var(--color-navy);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .site-header__inner,
    .site-header.is-hidden .site-header__inner {
        transition: none;
        transform: none;
    }

    .mobile-nav,
    .mobile-nav-overlay {
        transition: none;
    }

    .btn,
    .site-nav__link,
    .nav-toggle__bars span,
    .site-header,
    .hero-slider__track,
    .hero-slider__slide,
    .hero-slider__slide img,
    .hero-slider__kicker,
    .hero-slider__title,
    .hero-slider__subtitle,
    .hero-slider__actions,
    .what-we-make__pill img,
    .sample-gallery img,
    .sample-lightbox__dialog,
    .order-step {
        transition: none;
        animation: none;
    }

    .hero-slider__slide {
        opacity: 0;
    }

    .hero-slider__slide.is-active {
        opacity: 1;
    }

    .hero-slider__kicker,
    .hero-slider__title,
    .hero-slider__subtitle,
    .hero-slider__actions {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
        pointer-events: auto;
    }

    .hero-slider__caret {
        display: none;
    }

    .hero-slider__kicker::after {
        transform: scaleX(1);
        opacity: 1;
        transition: none;
    }

    .hero-slider__slide img,
    .hero-slider__slide.is-active img,
    .what-we-make__pill img,
    .sample-gallery__item:hover img {
        transform: none;
    }

}

/* Tablet */
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .sample-gallery__item {
        flex-basis: clamp(240px, 22vw, 280px);
        width: clamp(240px, 22vw, 280px);
    }

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

/* Desktop */
@media (min-width: 900px) {
    :root {
        --section-gap: 5.5rem;
        --page-pad: clamp(1.5rem, 4vw, 3.5rem);
        --header-height: 100px;
    }

    .site-header__inner {
        padding-block: 0.5rem;
    }

    .brand-logo--header .brand-logo__image {
        height: 5.1rem;
    }

    .site-nav {
        display: block;
    }

    .site-header__cta {
        display: inline-flex;
    }

    .site-nav__link {
        font-size: 1.275rem;
    }

    .nav-toggle,
    .mobile-nav,
    .mobile-nav-overlay {
        display: none;
    }

    .hero-slider {
        height: min(100svh, 46rem);
        min-height: 38rem;
        max-height: 46rem;
    }

    .hero-slider__overlay {
        padding: calc(var(--header-height) + 2rem) var(--page-pad) 5.5rem;
    }

    .hero-slider__content {
        width: min(100%, 44rem);
    }

    .hero-slider__title {
        font-size: clamp(3rem, 5.6vw, 3.9rem);
    }

    .btn-group {
        align-items: flex-start;
    }

    .products-cta .btn-group {
        align-items: center;
    }

    .how-cta .btn-group {
        align-items: center;
    }

    .how-prepare__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-notes__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .what-we-make {
        --wwm-pill-w: 225px;
        --wwm-step: calc(var(--wwm-pill-h) * 0.32);
        --wwm-material-size: 176px;
    }

    .what-we-make__showcase {
        position: relative;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto;
        column-gap: clamp(1.25rem, 2.5vw, 2rem);
        row-gap: 0;
        align-items: start;
        padding-bottom: 0.5rem;
    }

    .what-we-make__header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        justify-content: flex-end;
        z-index: 2;
    }

    .what-we-make__card--awards {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    .what-we-make__card--medals {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        margin-top: var(--wwm-step);
    }

    .what-we-make__card--souvenirs {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        margin-top: calc(var(--wwm-step) * 2);
    }

    .what-we-make__actions {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        align-self: end;
        margin-bottom: 0.5rem;
        width: calc(var(--wwm-pill-w) * 1.1);
    }

    .what-we-make__actions .btn {
        min-height: 48px;
    }

    .what-we-make__lower {
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: clamp(1rem, 2vw, 1.75rem);
        align-items: center;
        margin-top: clamp(1.25rem, 2.5vw, 2rem);
    }

    .what-we-make__process {
        grid-column: 1;
        justify-self: start;
        height: auto;
    }

    .what-we-make__materials-wrap {
        grid-column: 2;
        justify-self: end;
        align-self: center;
        display: flex;
        justify-content: flex-end;
        height: auto;
    }

    .what-we-make__materials-wrap .materials {
        height: auto;
        justify-content: center;
        gap: clamp(0.85rem, 1.5vw, 1.25rem);
    }

    .process-stack {
        max-width: calc(var(--wwm-pill-w) * 2.15);
        width: 100%;
    }

    .how-to-order__header {
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }

    .how-process__header {
        grid-template-columns: 1fr 1fr;
        align-items: end;
        text-align: left;
    }

    .order-steps {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.65rem 1.85rem;
    }

    .order-step {
        min-height: 100%;
        padding: 1.65rem 1rem 1.5rem;
    }

    .order-step__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: -1.35rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    .order-step:last-child .order-step__arrow {
        display: none;
    }

    .sample-block__header {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 3rem;
    }

    .sample-block__header--reverse .sample-block__title {
        order: 2;
        text-align: right;
    }

    .sample-block__header--reverse .sample-block__title::after {
        margin-left: auto;
        margin-right: 0;
    }

    .sample-block__header--reverse .sample-block__text {
        order: 1;
    }

    .product-detail__grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: clamp(2.5rem, 4vw, 4rem);
    }

    .product-detail--reverse .product-detail__media {
        order: 2;
    }

    .product-detail--reverse .product-detail__content {
        order: 1;
    }

    .products-materials__inner {
        grid-template-columns: 0.92fr 1.08fr;
        align-items: start;
        gap: 3rem;
    }

    .products-materials__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .how-step-detail__grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: clamp(2.5rem, 4vw, 4rem);
    }

    .how-step-detail--reverse .how-step-detail__media {
        order: 2;
    }

    .how-step-detail--reverse .how-step-detail__content {
        order: 1;
    }

    .how-prepare__inner {
        grid-template-columns: 0.85fr 1.15fr;
        align-items: start;
        gap: 3rem;
    }

    .how-prepare__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-notes__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-section__grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
        column-gap: 3rem;
        row-gap: 0;
        align-items: start;
    }

    .contact-section__intro {
        position: sticky;
        top: calc(var(--header-height) + 1.25rem);
    }

    .contact-section__channels {
        width: auto;
        justify-content: flex-start;
    }

    .contact-section__channels .btn {
        flex: 0 1 auto;
    }

    .contact-section__media {
        margin-top: 1.85rem;
        aspect-ratio: 3 / 4;
        max-height: 28rem;
    }

    .quote-form .btn--solid {
        width: auto;
        min-width: 220px;
    }
}

@media (min-width: 1200px) {
    .hero-slider {
        height: min(100svh, 52rem);
        min-height: 42rem;
        max-height: 52rem;
    }

    .hero-slider__content {
        width: min(100%, 50rem);
    }

    .hero-slider__title {
        font-size: clamp(3.4rem, 4.6vw, 4.5rem);
    }

    .hero-slider__subtitle {
        font-size: 1.2rem;
        max-width: 36rem;
    }
}

@media (min-width: 1600px) {
    .hero-slider {
        height: min(100svh, 58rem);
        min-height: 46rem;
        max-height: 58rem;
    }

    .hero-slider__content {
        width: min(100%, 50rem);
    }
}

/* Floating WhatsApp — icon by default, label on hover/focus */
.whatsapp-float {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    z-index: 140;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    background: #1fad4e;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 28px rgba(31, 173, 78, 0.28);
    transition:
        width var(--transition),
        padding var(--transition),
        gap var(--transition),
        border-radius var(--transition),
        background-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    width: auto;
    min-width: 3.25rem;
    height: 3.25rem;
    padding: 0 1rem 0 0.85rem;
    gap: 0.55rem;
    border-radius: var(--radius-pill);
    background: #189643;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(31, 173, 78, 0.34);
}

.whatsapp-float:focus-visible {
    outline: 2px solid var(--color-navy);
    outline-offset: 3px;
}

.whatsapp-float__icon {
    width: 1.55rem;
    height: 1.55rem;
    flex-shrink: 0;
}

.whatsapp-float__label {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    line-height: 1;
    transition: max-width var(--transition), opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-float__label,
.whatsapp-float:focus-visible .whatsapp-float__label {
    max-width: 6rem;
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float,
    .whatsapp-float:hover,
    .whatsapp-float:focus-visible,
    .whatsapp-float__label {
        transition: none;
        transform: none;
    }
}
