/* World Carthage — Ariat Distributor stylesheet */

:root {
    --c-bg: #ffffff;
    --c-cream: #f5f1ea;
    --c-cream-2: #ece5d8;
    --c-ink: #111111;
    --c-ink-2: #1a1a1a;
    --c-muted: #6b6b6b;
    --c-line: #e6e3dd;
    --c-accent: #8b5a2b;
    --c-accent-dark: #5e3a1a;
    --c-accent-soft: #c9a376;
    --c-error: #b00020;
    --c-success: #1f7a4d;

    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 10px 30px rgba(0,0,0,.10);
    --shadow-lg: 0 30px 60px rgba(0,0,0,.18);

    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 18px;

    --header-h: 86px;
    --topbar-h: 36px;

    --ease-out: cubic-bezier(.2,.8,.2,1);
    --ease-in-out: cubic-bezier(.65,0,.35,1);

    --font-display: 'Oswald', 'Trade Gothic', 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: clip;
}
body {
    margin: 0;
    background: var(--c-bg);
    color: var(--c-ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    max-width: 100%;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease-out); }
a:hover { color: var(--c-accent); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; letter-spacing: .01em; line-height: 1.1; margin: 0; text-transform: uppercase; }
p { margin: 0 0 1rem; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--c-ink); color: #fff; }

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 768px) { .container { padding: 0 18px; } }

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px; font-weight: 500;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--c-accent); margin-bottom: 14px;
    position: relative; padding-left: 36px;
}
.eyebrow::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 26px; height: 1px; background: var(--c-accent);
}
.title {
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: .005em;
    color: var(--c-ink);
}
.lead { font-size: 17px; color: var(--c-muted); margin-bottom: 1.25rem; }

/* Buttons */
.btn {
    --bg: var(--c-ink);
    --fg: #fff;
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 16px 30px;
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--fg); background: var(--bg);
    border: 1px solid var(--bg);
    border-radius: 999px;
    position: relative; overflow: hidden; isolation: isolate;
    transition: color .4s var(--ease-out), border-color .4s var(--ease-out), transform .25s var(--ease-out);
}
.btn::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: var(--c-accent);
    transform: translateY(101%);
    transition: transform .5s var(--ease-in-out);
}
.btn:hover { color: #fff; border-color: var(--c-accent); }
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: scale(.98); }
.btn .btn__icon svg { width: 18px; height: 18px; transition: transform .4s var(--ease-out); }
.btn:hover .btn__icon svg { transform: translateX(4px); }

.btn--ghost { --bg: transparent; --fg: var(--c-ink); border-color: var(--c-ink); }
.btn--ghost:hover { color: #fff; }
.btn--block { width: 100%; }

/* Topbar */
.topbar {
    background: var(--c-ink);
    color: #fff;
    min-height: var(--topbar-h);
    font-size: 12px;
    letter-spacing: .04em;
    overflow: hidden;
    transition: max-height .35s var(--ease-in-out), opacity .25s var(--ease-out);
    max-height: 200px;
}
body.menu-open .topbar {
    max-height: 0;
    opacity: 0;
    min-height: 0;
    pointer-events: none;
}
.topbar__inner {
    display: flex; align-items: center; justify-content: center;
    gap: 18px;
    min-height: var(--topbar-h);
    padding-top: 6px; padding-bottom: 6px;
    flex-wrap: wrap;
}
.topbar__addr {
    display: inline-flex; align-items: center; gap: 8px;
    opacity: .92;
    max-width: 100%;
}
.topbar__addr svg {
    width: 14px; height: 14px;
    color: var(--c-accent-soft);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .topbar { font-size: 11px; line-height: 1.45; }
    .topbar__inner {
        gap: 8px 14px;
        padding: 10px 18px;
        text-align: center;
    }
    :root { --topbar-h: 64px; }
}
@media (max-width: 480px) {
    :root { --topbar-h: 72px; }
}

/* Header
   Do not add backdrop-filter / filter / transform / will-change to the header:
   any of these creates a containing block and breaks `position: fixed` on
   descendants (it would confine the mobile nav to the header). */
.header {
    position: sticky; top: 0; z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--c-line);
    transition: box-shadow .3s var(--ease-out), background .3s var(--ease-out);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: var(--header-h);
    gap: 28px;
}
/* `position: relative` promotes these to the "positioned children" paint
   bucket, so they paint AFTER the fixed nav within the header's stacking
   context — keeping them visible on top of the open mobile menu. */
.header__logo       { order: 1; position: relative; }
.nav                { order: 2; }
.header__brand-mark { order: 3; position: relative; }
.header__burger     { order: 4; position: relative; }
.header__logo img {
    height: 60px; width: auto;
    transition: transform .35s var(--ease-out);
}
.header__logo:hover img { transform: scale(1.03); }

.nav__list {
    display: flex; justify-content: center; gap: 10px;
}
.nav__link {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px; font-weight: 500;
    letter-spacing: .22em; text-transform: uppercase;
    padding: 14px 18px;
    color: var(--c-ink);
    position: relative;
}
.nav__link::after {
    content: ''; position: absolute;
    left: 18px; right: 18px; bottom: 6px;
    height: 2px; background: var(--c-accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s var(--ease-out);
}
.nav__link:hover { color: var(--c-ink); }
.nav__link:hover::after { transform: scaleX(1); }

.header__brand-mark {
    display: inline-flex; align-items: center;
    height: 44px; padding: 0 16px;
    background: var(--c-cream);
    border: 1px solid var(--c-line);
    border-radius: 999px;
    transition: background .3s, border-color .3s;
}
.header__brand-mark:hover { background: #fff; border-color: var(--c-accent-soft); }
.header__brand-mark img {
    height: 22px; width: auto;
    opacity: .9;
}

.header__burger {
    display: none;
    width: 42px; height: 42px;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 5px;
    touch-action: manipulation;
}
.header__burger span {
    display: block; width: 22px; height: 2px; background: var(--c-ink);
    border-radius: 1px;
    transform-origin: center;
    transition: transform .3s var(--ease-out), opacity .2s var(--ease-out);
}
.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav backdrop */
.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 95;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease-out), visibility 0s linear .3s;
    pointer-events: none;
}
.nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .3s var(--ease-out), visibility 0s linear 0s;
}
@media (min-width: 961px) {
    .nav-backdrop { display: none !important; }
}

@media (max-width: 1140px) {
    .nav__link { padding: 14px 12px; font-size: 13px; letter-spacing: .16em; }
    .nav__link::after { left: 12px; right: 12px; }
}

@media (max-width: 960px) {
    .header__inner {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
    }
    .header__logo { order: 1; justify-self: start; }
    .header__logo img { height: 44px; }

    .header__brand-mark {
        order: 2;
        display: inline-flex;
        padding: 0 12px;
        height: 36px;
    }
    .header__brand-mark img { height: 16px; }

    .header__burger {
        order: 3;
        display: inline-flex;
        justify-self: end;
    }

    /* The mobile nav is a full-viewport sliding panel. Because it is the
       FIRST child of the header in the DOM, it paints before the logo,
       Ariat badge and burger within the header's stacking context — so
       those controls stay visible on top of the open menu without any
       z-index gymnastics.
       During menu-open we switch the sticky header to position:fixed so
       it (and its visible children) remain pinned at the top regardless of
       where the user had scrolled to when tapping the burger. */
    .header { z-index: 120; }
    body.menu-open .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 1px 0 var(--c-line);
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        padding-top: calc(var(--topbar-h) + var(--header-h));
        transform: translateX(-100%);
        visibility: hidden;
        transition:
            transform .35s var(--ease-in-out),
            padding-top .35s var(--ease-in-out),
            visibility 0s linear .35s;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-direction: column;
        will-change: transform;
    }
    .nav.is-open {
        transform: translateX(0);
        visibility: visible;
        padding-top: var(--header-h);
        transition:
            transform .35s var(--ease-in-out),
            padding-top .35s var(--ease-in-out),
            visibility 0s linear 0s;
    }

    /* Backdrop is not needed — the nav covers the whole viewport on mobile. */
    .nav-backdrop { display: none !important; }

    .nav__list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 12px 28px calc(40px + env(safe-area-inset-bottom, 0px));
    }
    .nav__list li {
        border-bottom: 1px solid var(--c-line);
        width: 100%;
    }
    .nav__list li:last-child { border-bottom: 0; }
    .nav__link {
        display: block;
        width: 100%;
        padding: 22px 6px;
        font-size: 20px;
        font-weight: 500;
        letter-spacing: .14em;
        color: var(--c-ink);
    }
    .nav__link:active { color: var(--c-accent); }
    .nav__link::after { display: none; }

    body.menu-open .header { box-shadow: 0 1px 0 var(--c-line); }
}
@media (max-width: 560px) {
    :root { --header-h: 70px; }
    .header__logo img { height: 40px; }
    .header__brand-mark { padding: 0 10px; height: 32px; }
    .header__brand-mark img { height: 14px; }
}
@media (max-width: 380px) {
    .header__brand-mark span { display: none; }
    .header__brand-mark { padding: 0 8px; }
}

/* Hero slider */
.hero {
    position: relative;
    height: clamp(520px, 78vh, 820px);
    overflow: hidden;
    background: #000;
}
.hero__slider { position: absolute; inset: 0; }
.hero__slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.06);
    transition: opacity 1.1s var(--ease-out), transform 6s ease-out;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,.25) 100%);
    pointer-events: none;
}

.hero__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 56px; height: 56px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    color: #fff; z-index: 3;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .3s, transform .3s var(--ease-out);
}
.hero__arrow:hover { background: rgba(255,255,255,.25); transform: translateY(-50%) scale(1.06); }
.hero__arrow svg { width: 22px; height: 22px; }
.hero__arrow--prev { left: 28px; }
.hero__arrow--next { right: 28px; }

.hero__dots {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 3;
}
.hero__dot {
    width: 36px; height: 3px;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: background .3s, transform .3s;
    position: relative; overflow: hidden;
}
.hero__dot.is-active { background: rgba(255,255,255,.85); }
.hero__dot::after {
    content: ''; position: absolute; inset: 0;
    background: #fff;
    transform: scaleX(0); transform-origin: left;
}
.hero__dot.is-active::after { animation: dotProgress 6s linear forwards; }
@keyframes dotProgress { to { transform: scaleX(1); } }

@media (max-width: 700px) {
    .hero { height: clamp(380px, 64vh, 560px); }
    .hero__arrow { width: 44px; height: 44px; }
    .hero__arrow--prev { left: 12px; }
    .hero__arrow--next { right: 12px; }
}

/* About */
.about { padding: clamp(70px, 10vw, 130px) 0; background: var(--c-bg); }
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}
.about__media {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about__media-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.04);
    transition: transform 8s var(--ease-out);
}
.about__media:hover .about__media-img { transform: scale(1.12); }

.about__brand-row {
    display: flex; align-items: center; gap: 18px;
    padding: 18px 22px;
    margin: 18px 0 26px;
    background: var(--c-cream);
    border: 1px solid var(--c-line);
    border-left: 3px solid var(--c-accent);
    border-radius: var(--radius-md);
    flex-wrap: wrap;
}
.about__brand-label {
    font-family: var(--font-display);
    font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
    color: var(--c-muted);
    flex-shrink: 0;
}
.about__brand-logo {
    height: 36px; width: auto;
    margin-left: auto;
}
@media (max-width: 540px) {
    .about__brand-row { flex-direction: column; gap: 12px; align-items: flex-start; padding: 16px 18px; }
    .about__brand-logo { margin-left: 0; height: 32px; }
}

.about__copy .lead { color: var(--c-ink-2); font-size: 18px; }
.about__copy p { color: var(--c-muted); }

.about__points {
    display: grid; gap: 18px;
    margin: 30px 0 36px;
    padding: 24px 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.about__points li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
}
.about__points span {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 600;
    color: var(--c-accent);
    line-height: 1;
}
.about__points h4 {
    font-size: 16px; letter-spacing: .12em;
    margin-bottom: 4px;
}
.about__points p { font-size: 14px; color: var(--c-muted); margin: 0; }

@media (max-width: 900px) {
    .about__inner { grid-template-columns: 1fr; }
    .about__media { aspect-ratio: 3/4; max-height: 520px; }
}

/* Section heads */
.section-head { text-align: center; margin: 0 auto 56px; max-width: 720px; }
.section-head .eyebrow { padding: 0 36px; }
.section-head .eyebrow::before { left: 0; }
.section-head .eyebrow::after {
    content: ''; position: absolute; right: 0; top: 50%;
    width: 26px; height: 1px; background: var(--c-accent);
}
.section-head__sub { color: var(--c-muted); margin-top: 14px; font-size: 16px; }

/* Products */
.products { padding: clamp(70px, 10vw, 130px) 0; background: var(--c-cream); }
.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product {
    position: relative;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
    cursor: pointer;
}
.product:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.product__media {
    position: relative;
    aspect-ratio: 1/1.15;
    overflow: hidden;
}
.product__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out), filter .6s var(--ease-out);
}
.product:hover .product__media img {
    transform: scale(1.1) rotate(.5deg);
    filter: brightness(.92);
}
.product__media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.35) 100%);
    opacity: 0;
    transition: opacity .5s var(--ease-out);
}
.product:hover .product__media::after { opacity: 1; }
.product__badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--c-ink);
    color: #fff;
    font-family: var(--font-display);
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    z-index: 2;
    transition: background .3s var(--ease-out);
}
.product:hover .product__badge { background: var(--c-accent); }

@media (max-width: 1100px) {
    .products__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
    .products__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* Parallax band */
.band {
    position: relative;
    height: clamp(360px, 50vh, 520px);
    overflow: hidden;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}
.band__bg {
    position: absolute; inset: -10% 0;
    background-size: cover; background-position: center;
}
.band__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.65), rgba(0,0,0,.35));
}
.band__content { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; }
.band__title {
    font-size: clamp(36px, 6vw, 76px);
    font-weight: 700; letter-spacing: .01em;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.band__sub { font-size: clamp(15px, 2vw, 19px); color: rgba(255,255,255,.85); }

/* Gallery */
.gallery { padding: clamp(70px, 10vw, 130px) 0; background: #fff; overflow: hidden; }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
    padding: 0 14px;
}
.gallery__item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: zoom-in;
    grid-row: span 1;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; grid-row: span 2; }

.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out), filter .5s var(--ease-out);
}
.gallery__item:hover img {
    transform: scale(1.08);
    filter: brightness(.95) saturate(1.1);
}
.gallery__item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.35), transparent 60%);
    opacity: 0;
    transition: opacity .5s;
}
.gallery__item:hover::after { opacity: 1; }

@media (max-width: 900px) {
    .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
    .gallery__item--tall { grid-row: span 2; }
}
@media (max-width: 520px) {
    .gallery__grid { grid-auto-rows: 160px; }
}

/* Contact */
.contact {
    padding: clamp(70px, 10vw, 130px) 0;
    background: linear-gradient(180deg, var(--c-cream) 0%, #fff 100%);
}
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}
.contact__copy .lead { color: var(--c-ink-2); }
.contact__details {
    display: grid; gap: 22px;
    margin-top: 32px;
}
.contact__details li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: center;
}
.contact__details svg {
    width: 24px; height: 24px;
    color: var(--c-accent);
}
.contact__details strong {
    display: block;
    font-family: var(--font-display);
    font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 2px;
}
.contact__details span { font-size: 16px; color: var(--c-ink); }

.form {
    background: #fff;
    padding: clamp(28px, 4vw, 48px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-line);
    min-width: 0;
}
.contact__inner > * { min-width: 0; }
.field input, .field textarea, .field { min-width: 0; max-width: 100%; }
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.field { display: block; margin-bottom: 22px; position: relative; }
.field__label {
    display: block;
    font-family: var(--font-display);
    font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 8px;
}
.field input, .field textarea {
    width: 100%;
    padding: 14px 16px;
    background: #fafafa;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: border-color .3s, background .3s, box-shadow .3s;
    outline: none;
}
.field input:focus, .field textarea:focus {
    background: #fff;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 4px rgba(139,90,43,.12);
}
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.field.has-error input,
.field.has-error textarea {
    border-color: var(--c-error);
    background: #fff7f7;
}
.field__error {
    display: block;
    color: var(--c-error);
    font-size: 12.5px;
    margin-top: 6px;
    min-height: 16px;
}
.form__success,
.form__error {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
}
.form__success {
    background: rgba(31,122,77,.08);
    border: 1px solid rgba(31,122,77,.3);
    color: var(--c-success);
}
.form__error {
    background: rgba(176,0,32,.06);
    border: 1px solid rgba(176,0,32,.3);
    color: var(--c-error);
}

/* intl-tel-input integration with form styles */
.iti { width: 100%; display: block; }
.iti__tel-input { width: 100% !important; }
.field--phone .iti--inline-dropdown .iti__country-list {
    border: 1px solid var(--c-line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    max-height: 240px;
    font-family: var(--font-body);
    font-size: 14px;
    background: #fff;
}
.field--phone .iti__country.iti__highlight { background-color: var(--c-cream); }
.field--phone .iti__selected-country {
    background: transparent;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.field--phone .iti__selected-country:hover,
.field--phone .iti__selected-country:focus,
.field--phone .iti__selected-country[aria-expanded="true"] {
    background: rgba(139, 90, 43, .08);
}
.field--phone.has-error .iti__selected-country { background: #fff7f7; }
.field--phone .iti__search-input {
    border: 0;
    border-bottom: 1px solid var(--c-line);
    padding: 10px 14px;
    font-size: 14px;
    background: #fafafa;
    outline: none;
}
.field--phone .iti__search-input:focus {
    border-bottom-color: var(--c-accent);
    background: #fff;
}
@media (max-width: 480px) {
    .field--phone .iti--fullscreen-popup .iti__country-list { font-size: 16px; }
}

/* Honeypot — offscreen for humans, visible to naive bots */
.hp-field {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.turnstile-mount {
    margin: 8px 0 18px;
    min-height: 65px;
    display: block;
}
.turnstile-mount__notice {
    margin: 0;
    padding: 14px 18px;
    background: rgba(176, 0, 32, .06);
    border: 1px solid rgba(176, 0, 32, .3);
    color: var(--c-error);
    border-radius: var(--radius-sm);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 900px) {
    .contact__inner { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; gap: 0; }
}

/* Address / Map */
.address {
    position: relative;
    min-height: 460px;
    background: var(--c-cream);
    overflow: hidden;
}
.address__map { position: absolute; inset: 0; }
.address__map iframe {
    width: 100%; height: 100%;
    border: 0;
    filter: grayscale(.25) contrast(.95);
}
.address__card {
    position: relative; z-index: 2;
    margin: 80px 0 80px auto;
    width: min(420px, 92%);
    background: #fff;
    padding: 38px 34px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-right: clamp(20px, 6vw, 80px);
}
.address__card h3 { font-size: 26px; margin-bottom: 14px; }
.address__hours { font-size: 14px; color: var(--c-muted); margin: 16px 0 22px; }
.address__hours strong { color: var(--c-ink); display: inline-block; min-width: 90px; }

@media (max-width: 760px) {
    .address { min-height: auto; display: flex; flex-direction: column; }
    .address__map { position: relative; inset: auto; height: 320px; }
    .address__card { margin: -60px auto 40px; }
}

/* Footer */
.footer { background: var(--c-ink); color: rgba(255,255,255,.7); }
.footer a { color: rgba(255,255,255,.78); }
.footer a:hover { color: #fff; }

.footer__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 50px 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo img {
    display: block;
    height: 60px; width: auto;
    background: #fff;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.footer__nav {
    display: flex; justify-content: center; gap: 36px;
    flex-wrap: wrap;
}
.footer__nav a {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 500;
    letter-spacing: .22em; text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}
.footer__nav a::after {
    content: ''; position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--c-accent-soft);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s var(--ease-out);
}
.footer__nav a:hover::after { transform: scaleX(1); }

.footer__brand-mark {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 10px 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
}
.footer__brand-mark span {
    font-family: var(--font-display);
    font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
    color: rgba(255,255,255,.55);
    white-space: nowrap;
}
.footer__brand-mark img {
    height: 18px; width: auto;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer__bottom { padding: 22px 0; }
.footer__bottom-inner {
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    font-size: 12.5px;
}
.footer__bottom-inner p { margin: 0; opacity: .75; letter-spacing: .04em; }

@media (max-width: 900px) {
    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
        padding: 40px 24px;
    }
    .footer__logo { justify-self: center; }
    .footer__brand-mark { justify-self: center; }
}

/* Back to top */
.to-top {
    position: fixed; right: 22px; bottom: 22px;
    width: 48px; height: 48px;
    background: var(--c-ink);
    color: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: inline-flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(20px) scale(.8);
    transition: opacity .35s, transform .35s var(--ease-out), background .3s;
    z-index: 80; pointer-events: none;
}
.to-top.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { background: var(--c-accent); }
.to-top svg { width: 20px; height: 20px; }

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal[data-reveal="left"] { transform: translateX(-40px); }
.reveal[data-reveal="right"] { transform: translateX(40px); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
