/* =========================================================================
   Amy Nail Studio — design system
   Palette: sage green · ivory/cream · warm gold · soft blush
   Type: Fraunces (display) · Inter (body) · Sacramento (script accents)
   ========================================================================= */

:root {
    /* Surfaces */
    --ivory: #F8F6EF;
    --cream: #EFEADD;
    --sand: #E6DCC8;
    --white: #FFFFFF;

    /* Brand greens */
    --sage-soft: #DDE7D7;
    --sage: #9FB59A;
    --sage-500: #7C9579;
    --sage-700: #54684F;

    /* Accents */
    --gold: #BC9B5E;
    --gold-soft: #E6D6AE;
    --blush: #ECD9D0;

    /* Text */
    --ink: #2B312A;
    --muted: #767B6E;

    /* Effect tokens */
    --r-sm: 12px;
    --r: 20px;
    --r-lg: 32px;
    --shadow-sm: 0 6px 20px rgba(58, 66, 52, .07);
    --shadow: 0 18px 50px rgba(58, 66, 52, .12);
    --shadow-lg: 0 40px 90px rgba(58, 66, 52, .18);
    --ring: 1px solid rgba(120, 137, 112, .18);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-script: 'Sacramento', cursive;

    --container: 1180px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.01em;
    margin: 0;
    color: var(--ink);
}

p { margin: 0 0 1rem; }

::selection { background: var(--sage-soft); color: var(--sage-700); }

.skip-link {
    position: absolute;
    left: -999px;
    top: .5rem;
    z-index: 999;
    background: var(--ink);
    color: var(--ivory);
    padding: .6rem 1rem;
    border-radius: 999px;
}
.skip-link:focus { left: .75rem; }

/* --------------------------------------------------------------- layout */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1.2rem, 4vw, 2.5rem);
}

.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--cream { background: var(--cream); }
.section--sage {
    background: linear-gradient(160deg, var(--sage-700), var(--sage-500));
    color: var(--ivory);
}
.section--sage h1, .section--sage h2, .section--sage h3 { color: var(--ivory); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .72rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.1rem;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
    opacity: .7;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 640px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-top: 1rem; }

.script { font-family: var(--font-script); color: var(--sage-500); font-weight: 400; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); }

/* --------------------------------------------------------------- buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .85rem 1.6rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: .95rem;
    letter-spacing: .01em;
    border: 1px solid transparent;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
    will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
    background: var(--sage-700);
    color: var(--ivory);
    box-shadow: 0 12px 26px rgba(84, 104, 79, .32);
}
.btn--primary:hover { background: var(--ink); box-shadow: 0 18px 34px rgba(43, 49, 42, .3); }

.btn--gold {
    background: linear-gradient(120deg, var(--gold), #cdae74);
    color: #3a2f12;
    box-shadow: 0 12px 26px rgba(188, 155, 94, .35);
}

.btn--ghost {
    background: transparent;
    border-color: rgba(84, 104, 79, .35);
    color: var(--sage-700);
}
.btn--ghost:hover { background: var(--sage-700); color: var(--ivory); border-color: var(--sage-700); }

.btn--light { background: var(--ivory); color: var(--sage-700); }
.btn--light:hover { background: var(--white); }

.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ------------------------------------------------------------------- nav */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background .4s, box-shadow .4s, border-color .4s;
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    background: rgba(248, 246, 239, .82);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    box-shadow: 0 8px 30px rgba(58, 66, 52, .08);
    border-bottom-color: rgba(120, 137, 112, .14);
}
.nav__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: 1.1rem clamp(1.2rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__mark {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--sage-700);
    line-height: .9;
}
.brand__mark--lg { font-size: 3.4rem; color: var(--sage-soft); }
.brand__sub {
    font-size: .62rem;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--muted);
    padding-left: .2rem;
    margin-top: 3px;
}

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link {
    position: relative;
    font-size: .94rem;
    font-weight: 500;
    color: var(--ink);
    padding: .25rem 0;
    transition: color .25s;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 0; bottom: -3px;
    width: 100%;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.nav__link:hover { color: var(--sage-700); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--sage-700); }
.nav__cta { margin-left: .4rem; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
}
.nav__toggle span {
    width: 24px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .35s var(--ease), opacity .25s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------ hero */
.hero {
    position: relative;
    padding-top: clamp(2rem, 5vw, 4rem);
    padding-bottom: clamp(3rem, 7vw, 6rem);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto auto;
    width: 60vw; height: 60vw;
    max-width: 760px; max-height: 760px;
    background: radial-gradient(closest-side, rgba(159, 181, 154, .5), transparent 70%);
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
}
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.hero__title {
    font-size: clamp(2.6rem, 6.2vw, 5rem);
    line-height: 1.02;
    margin-bottom: 1.4rem;
}
.hero__title em { font-style: italic; color: var(--sage-500); }
.hero__title .script {
    display: block;
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: .8;
    margin-bottom: -.2rem;
}
.hero__text { max-width: 30rem; font-size: 1.1rem; color: var(--muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero__stats {
    display: flex;
    gap: clamp(1.2rem, 3vw, 2.4rem);
    margin-top: 2.6rem;
    padding-top: 1.8rem;
    border-top: var(--ring);
}
.hero__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--sage-700);
}
.hero__stat span { font-size: .82rem; color: var(--muted); letter-spacing: .02em; }

/* layered photo composition */
.hero__media { position: relative; min-height: 420px; }
.hero__photo {
    position: absolute;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    border: 6px solid var(--white);
}
.hero__photo--main {
    width: 74%;
    aspect-ratio: 3/4;
    right: 4%;
    top: 0;
    z-index: 2;
}
.hero__photo--accent {
    width: 46%;
    aspect-ratio: 1/1;
    left: 0;
    bottom: 0;
    z-index: 3;
    border-radius: var(--r);
}
.hero__badge {
    position: absolute;
    z-index: 4;
    top: 8%;
    left: 0;
    background: var(--white);
    border-radius: 999px;
    padding: .6rem 1.1rem .6rem .7rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    box-shadow: var(--shadow);
    font-size: .82rem;
    font-weight: 500;
}
.hero__badge .dot {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold));
    display: grid; place-items: center;
    font-size: 1rem;
}

/* organic marquee strip */
.marquee {
    background: var(--sage-700);
    color: var(--ivory);
    overflow: hidden;
    padding-block: .9rem;
    white-space: nowrap;
}
.marquee__track {
    display: inline-flex;
    gap: 3rem;
    animation: marquee 26s linear infinite;
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: .04em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after { content: "✦"; color: var(--gold-soft); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------- feature */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
    margin-top: 3rem;
}
.feature {
    background: var(--white);
    border: var(--ring);
    border-radius: var(--r);
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature__icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--sage-soft);
    color: var(--sage-700);
    display: grid; place-items: center;
    margin-bottom: 1.1rem;
}
.feature h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .96rem; margin: 0; }

/* --------------------------------------------------------------- services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.6rem;
    margin-top: 3rem;
}
.service-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-sm);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    isolation: isolate;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform .8s var(--ease);
}
.service-card:hover img { transform: scale(1.07); }
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(35, 41, 33, .82) 0%, rgba(35, 41, 33, .25) 45%, transparent 75%);
}
.service-card__body { padding: 1.8rem; color: var(--ivory); }
.service-card__body .eyebrow { color: var(--gold-soft); margin-bottom: .5rem; }
.service-card__body h3 { color: var(--white); font-size: 1.7rem; margin-bottom: .35rem; }
.service-card__body p { color: rgba(255, 255, 255, .82); font-size: .95rem; margin-bottom: 1rem; }
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 500;
    font-size: .9rem;
    color: var(--ivory);
}
.service-card__link .arrow { transition: transform .35s var(--ease); }
.service-card:hover .service-card__link .arrow { transform: translateX(5px); }

/* ---------------------------------------------------------------- gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
    margin-top: 3rem;
}
.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    box-shadow: var(--shadow-sm);
}
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}
.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 49, 42, .35), transparent 60%);
    opacity: 0;
    transition: opacity .4s;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ------------------------------------------------------------ testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.testimonial {
    background: var(--white);
    border: var(--ring);
    border-radius: var(--r);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.testimonial__stars { color: var(--gold); letter-spacing: .15em; margin-bottom: 1rem; }
.testimonial p { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--ink); }
.testimonial__who { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; }
.testimonial__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--sage-soft);
    color: var(--sage-700);
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
}
.testimonial__who span { font-size: .85rem; color: var(--muted); }
.testimonial__who strong { display: block; font-size: .95rem; color: var(--ink); font-weight: 600; }

/* -------------------------------------------------------------------- CTA */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
    content: "";
    position: absolute;
    inset: auto auto -40% -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(closest-side, rgba(230, 214, 174, .35), transparent 70%);
}
.cta-card {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin-inline: auto;
}
.cta-card h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.cta-card p { color: rgba(248, 246, 239, .85); margin: 1rem auto 2rem; max-width: 32rem; }
.section--sage .cta-card .btn--ghost { color: var(--ivory); border-color: rgba(248, 246, 239, .5); }
.section--sage .cta-card .btn--ghost:hover { background: var(--ivory); color: var(--sage-700); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ------------------------------------------------------------ page header */
.page-hero {
    position: relative;
    padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: -30% 0 auto 0;
    height: 70%;
    background: radial-gradient(closest-side, rgba(159, 181, 154, .35), transparent 70%);
    pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: 1rem; }
.page-hero p { color: var(--muted); font-size: 1.1rem; }
.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 1.4rem; letter-spacing: .04em; }
.crumbs a:hover { color: var(--sage-700); }
.crumbs span { color: var(--gold); }

/* -------------------------------------------------------------- price list */
.price-card {
    background: var(--white);
    border: var(--ring);
    border-radius: var(--r-lg);
    padding: clamp(1.6rem, 4vw, 2.6rem);
    box-shadow: var(--shadow-sm);
}
.price-card + .price-card { margin-top: 1.6rem; }
.price-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.price-card__head h3 { font-size: 1.6rem; }
.price-card__head .tag { font-size: .78rem; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; }

.price-row {
    display: flex;
    align-items: baseline;
    gap: .8rem;
    padding: .85rem 0;
    border-bottom: 1px dashed rgba(120, 137, 112, .25);
}
.price-row:last-child { border-bottom: none; }
.price-row__name { font-weight: 500; color: var(--ink); }
.price-row__desc { color: var(--muted); font-size: .9rem; }
.price-row__dots { flex: 1; border-bottom: 1px dotted rgba(120, 137, 112, .4); transform: translateY(-4px); }
.price-row__price { font-family: var(--font-display); font-size: 1.15rem; color: var(--sage-700); white-space: nowrap; }

.price-note { color: var(--muted); font-size: .9rem; margin-top: 1.6rem; }

/* ------------------------------------------------------------ split / info */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/5;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 1rem; }
.split__body p { color: var(--muted); }

.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .8rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); }
.check-list li::before {
    content: "✦";
    color: var(--gold);
    font-size: .9rem;
    line-height: 1.6;
}

/* ------------------------------------------------------------ contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}
.info-list { display: grid; gap: 1.2rem; margin-top: 2rem; }
.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    border: var(--ring);
    border-radius: var(--r);
    padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow-sm);
}
.info-item__icon {
    flex: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--sage-soft);
    color: var(--sage-700);
    display: grid; place-items: center;
}
.info-item h4 { font-family: var(--font-body); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.info-item p { margin: 0; color: var(--ink); }
.info-item a:hover { color: var(--sage-700); }

.form-card {
    background: var(--white);
    border: var(--ring);
    border-radius: var(--r-lg);
    padding: clamp(1.6rem, 4vw, 2.6rem);
    box-shadow: var(--shadow);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .45rem; color: var(--ink); }
.field input, .field select, .field textarea {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid rgba(120, 137, 112, .3);
    border-radius: var(--r-sm);
    background: var(--ivory);
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink);
    transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--sage-500);
    box-shadow: 0 0 0 4px rgba(124, 149, 121, .15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-hint { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.form-result { margin-top: 1rem; color: var(--sage-700); font-weight: 500; }

/* --------------------------------------------------------------- footer */
.footer {
    position: relative;
    background: var(--ink);
    color: rgba(248, 246, 239, .72);
    padding-top: clamp(3.5rem, 7vw, 5rem);
    overflow: hidden;
}
.footer__glow {
    position: absolute;
    inset: auto auto -50% 50%;
    transform: translateX(-50%);
    width: 80vw; height: 40vw;
    max-height: 380px;
    background: radial-gradient(closest-side, rgba(124, 149, 121, .4), transparent 70%);
    pointer-events: none;
}
.footer__inner {
    position: relative;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1.2rem, 4vw, 2.5rem);
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer__tagline { font-family: var(--font-display); font-size: 1.1rem; color: var(--ivory); margin: .4rem 0 .6rem; }
.footer__note { font-size: .92rem; max-width: 24rem; }
.footer__heading { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-soft); margin-bottom: 1.1rem; }
.footer__col { display: flex; flex-direction: column; gap: .6rem; }
.footer__col a { color: rgba(248, 246, 239, .72); transition: color .25s; width: fit-content; }
.footer__col a:hover { color: var(--ivory); }
.footer__col p { margin: 0; font-size: .92rem; }
.footer__ig {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: .4rem;
    color: var(--sage-soft) !important;
    font-weight: 500;
}
.footer__bar {
    position: relative;
    max-width: var(--container);
    margin-inline: auto;
    padding: 1.4rem clamp(1.2rem, 4vw, 2.5rem);
    border-top: 1px solid rgba(248, 246, 239, .12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .82rem;
}
.footer__bar p { margin: 0; }
.footer__made span { color: var(--blush); }

/* ------------------------------------------------------------- animations */
/* Content is visible by default (no-JS safe, mobile safe). The fade/slide-in
   entrance is layered on only for wider, pointer-based screens, where the
   IntersectionObserver is reliable — so phones never risk blank sections. */
.reveal { opacity: 1; transform: none; }

@media (min-width: 721px) {
    html.js .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .8s var(--ease), transform .8s var(--ease);
    }
    html.js .reveal.is-visible { opacity: 1; transform: none; }
    html.js [data-delay="1"] { transition-delay: .08s; }
    html.js [data-delay="2"] { transition-delay: .16s; }
    html.js [data-delay="3"] { transition-delay: .24s; }
    html.js [data-delay="4"] { transition-delay: .32s; }
}

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

/* ------------------------------------------------------------- responsive */
@media (max-width: 900px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__media { min-height: 380px; max-width: 460px; margin-inline: auto; width: 100%; }
    .split, .contact-grid { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
    .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}

@media (max-width: 720px) {
    .nav__toggle { display: flex; }
    .nav__links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(80vw, 320px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.8rem;
        padding: 2.5rem;
        background: var(--cream);
        box-shadow: -20px 0 60px rgba(43, 49, 42, .2);
        transform: translateX(100%);
        transition: transform .45s var(--ease);
    }
    .nav__links.is-open { transform: translateX(0); }
    .nav__link { font-size: 1.3rem; font-family: var(--font-display); }
    .nav__cta { margin-left: 0; margin-top: .5rem; }
    body.nav-open { overflow: hidden; }
    .hero__stats { gap: 1.2rem 1.6rem; flex-wrap: wrap; }
    .hero__stat strong { font-size: 1.6rem; }
    .field-row { grid-template-columns: 1fr; }
    .footer__bar { justify-content: center; text-align: center; }
}

/* Stacked price rows: "name … price" on top, description below — no cramped
   three-column squeeze on narrow screens. */
@media (max-width: 640px) {
    .price-row {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "name price"
            "desc desc";
        column-gap: 1rem;
        row-gap: .2rem;
        align-items: baseline;
    }
    .price-row__name { grid-area: name; }
    .price-row__price { grid-area: price; text-align: right; }
    .price-row__desc { grid-area: desc; font-size: .88rem; }
    .price-row__dots { display: none; }
    .price-card__head { margin-bottom: 1rem; }
}

@media (max-width: 560px) {
    .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery__item--wide { grid-column: span 1; }
    .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
    .hero__title .script { font-size: clamp(2.1rem, 8vw, 2.8rem); }
    .eyebrow { letter-spacing: .2em; }
}
