/* =================================================================
   Aromatics Spa — style.css
   Design system: soft greens + warm neutrals, airy & premium.
   All colors live in :root so the whole site can be rethemed here.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
    --sage:        #4A6B4F;   /* primary */
    --sage-dark:   #3A4A3C;
    --eucalyptus:  #8AA888;   /* secondary */
    --mint:        #DCE7D5;   /* section bg */
    --ochre:       #C9A86A;   /* accent */
    --terracotta:  #B96A5B;   /* CTA */
    --terracotta-d:#A4584A;
    --linen:       #FAF7F0;   /* page bg */
    --charcoal:    #3A3A38;   /* text */
    --muted:       #7A7A73;   /* muted text */
    --white:       #FFFFFF;
    --whatsapp:    #25D366;

    --radius:      14px;
    --radius-sm:   8px;
    --shadow:      0 10px 30px rgba(74, 107, 79, 0.10);
    --shadow-sm:   0 4px 14px rgba(74, 107, 79, 0.08);
    --container:   1180px;
    --ease:        cubic-bezier(.22, .61, .36, 1);

    --font-head:   'Cormorant Garamond', Georgia, serif;
    --font-body:   'Jost', -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--linen);
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 500;
    line-height: 1.15;
    color: var(--sage-dark);
}
h1 { font-size: clamp(2.6rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.5rem; }

.container { width: 90%; max-width: var(--container); margin: 0 auto; }

/* Reusable section eyebrow + heading */
.eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .78rem;
    font-weight: 500;
    color: var(--ochre);
    margin-bottom: .75rem;
    display: inline-block;
}
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-head p { color: var(--muted); margin-top: 1rem; }
.bg-mint { background: var(--mint); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-body); font-weight: 500; font-size: .95rem;
    letter-spacing: .03em; padding: .85rem 1.8rem;
    border-radius: 50px; border: 1.5px solid transparent;
    cursor: pointer; transition: all .3s var(--ease);
}
.btn-cta      { background: var(--terracotta); color: var(--white); }
.btn-cta:hover{ background: var(--terracotta-d); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline  { border-color: var(--sage); color: var(--sage); background: transparent; }
.btn-outline:hover { background: var(--sage); color: var(--white); }
.btn-ghost-light { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-ghost-light:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }

/* ---------- Header / nav ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.1rem 0; transition: all .35s var(--ease);
}
.site-header.scrolled {
    background: var(--linen); box-shadow: var(--shadow-sm); padding: .65rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; line-height: .9; }
.brand-fallback { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-head); font-size: 1.85rem; font-weight: 600; color: var(--sage); }
.brand-sub  { font-size: .7rem; letter-spacing: .5em; color: var(--ochre); padding-left: .15em; }
/* On the hero (before scroll) the brand sits on a dark image */
body.has-hero .site-header:not(.scrolled) .brand-name { color: var(--white); }

/* ---- Logo image (swaps in for the text once uploaded) ---- */
.brand-logo { height: 52px; width: auto; display: none; transition: height .35s var(--ease); }
.site-header.scrolled .brand-logo { height: 42px; }
.brand-logo--dark { display: block; }                 /* default: solid header */
/* Over the hero photo, swap to the white version */
body.has-hero .site-header:not(.scrolled) .brand-logo--dark { display: none; }
body.has-hero .site-header:not(.scrolled) .brand-logo--light { display: block; }
/* When a logo image is present, hide the text fallback */
body:not(.no-logo) .brand-fallback { display: none; }
/* When no logo is uploaded, hide the (broken) images, keep the text */
body.no-logo .brand-logo { display: none !important; }
body.has-hero .site-header:not(.scrolled) .main-nav > a { color: rgba(255,255,255,.92); }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav > a { font-size: .95rem; font-weight: 400; position: relative; transition: color .2s; }
.main-nav > a:not(.nav-book)::after {
    content: ''; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0;
    background: var(--ochre); transition: width .3s var(--ease);
}
.main-nav > a:not(.nav-book):hover::after,
.main-nav > a.active::after { width: 100%; }
.nav-book { margin-left: .5rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--sage); transition: all .3s; }
body.has-hero .site-header:not(.scrolled) .nav-toggle span { background: var(--white); }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    color: var(--white); text-align: center;
    background: linear-gradient(rgba(40,55,42,.45), rgba(40,55,42,.55)),
                var(--sage) center/cover no-repeat;
    /* Drop your photo at assets/img/hero.jpg to activate: */
    background-image: linear-gradient(rgba(40,55,42,.45), rgba(40,55,42,.6)), url('../img/hero.jpg');
}
.hero-content { max-width: 760px; margin: 0 auto; padding-top: 4rem; }
.hero h1 { color: var(--white); }
.hero p { font-size: 1.2rem; font-weight: 300; margin: 1.4rem 0 2.2rem; opacity: .95; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; opacity: .8;
}

/* ---------- Highlights / why us ---------- */
.highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.highlight { text-align: center; padding: 1rem; }
.highlight .hl-icon {
    width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 50%;
    background: var(--mint); display: flex; align-items: center; justify-content: center;
    color: var(--sage); font-size: 1.6rem;
}
.highlight h3 { margin-bottom: .5rem; }
.highlight p { color: var(--muted); font-size: .95rem; }

/* ---------- Service / package cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.8rem; }
.card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-img { height: 200px; background: var(--eucalyptus) center/cover no-repeat; overflow: hidden; }
.card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.card-desc { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; flex: 1; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.duration { font-size: .8rem; color: var(--sage); background: var(--mint); padding: .25rem .7rem; border-radius: 50px; }
.price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--ochre); }
.price small { font-size: .7rem; color: var(--muted); font-family: var(--font-body); }
.card-book { margin-top: 1.1rem; font-weight: 500; color: var(--terracotta); display: inline-flex; gap: .4rem; align-items: center; }
.card-book:hover { gap: .7rem; }

/* Featured / signature ribbon */
.card.featured { border: 1.5px solid var(--ochre); position: relative; }
.ribbon {
    position: absolute; top: 1rem; right: 1rem; z-index: 2; background: var(--ochre);
    color: var(--white); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
    padding: .3rem .8rem; border-radius: 50px;
}

/* ---------- Split feature (about teaser) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-img { border-radius: var(--radius); overflow: hidden; min-height: 420px; background: var(--eucalyptus) center/cover; box-shadow: var(--shadow); }
.split-text p { color: var(--muted); margin: 1.2rem 0 1.8rem; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; }
.testimonial { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.testimonial .stars { color: var(--ochre); margin-bottom: 1rem; letter-spacing: .2em; }
.testimonial blockquote { font-family: var(--font-head); font-size: 1.3rem; color: var(--sage-dark); line-height: 1.4; }
.testimonial cite { display: block; margin-top: 1.2rem; font-style: normal; font-weight: 500; color: var(--muted); font-size: .9rem; }

/* ---------- Awards & recognition ---------- */
.awards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3rem; text-align: center; }
.award { padding: 1rem; }
.award img { height: 120px; width: auto; margin: 0 auto 1.1rem; object-fit: contain; }
.award h4 { font-family: var(--font-body); font-weight: 600; color: var(--sage); margin-bottom: .3rem; }
.award p { color: var(--muted); font-size: .9rem; }

.tripadvisor-bar {
    display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; justify-content: center;
    background: var(--white); border-radius: var(--radius); padding: 1.6rem 2.2rem; box-shadow: var(--shadow-sm);
}
.ta-rating { display: flex; align-items: center; gap: .6rem; }
.ta-score { font-family: var(--font-head); font-size: 2.6rem; font-weight: 600; color: var(--sage); line-height: 1; }
.ta-stars { color: var(--ochre); font-size: 1.4rem; letter-spacing: 2px; }
.ta-text { display: flex; flex-direction: column; gap: .2rem; }
.ta-text strong { color: var(--sage-dark); font-weight: 500; }
.ta-text span { color: var(--muted); font-size: .9rem; }
.tripadvisor-bar .btn { margin-left: auto; }
@media (max-width: 640px) {
    .tripadvisor-bar { flex-direction: column; text-align: center; gap: 1rem; }
    .tripadvisor-bar .btn { margin-left: 0; }
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--sage); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { opacity: .9; margin: 1rem auto 2rem; max-width: 540px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--sage-dark); color: rgba(255,255,255,.8); padding-top: 4rem; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.3fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand { font-family: var(--font-head); font-size: 1.7rem; color: var(--white); margin-bottom: 1rem; }
.footer-logo { height: 56px; width: auto; }
/* Show the text version only when no logo image is present */
body:not(.no-logo) .footer-brand-text { display: none; }
.footer-brand-text span { color: var(--ochre); }
.footer-about { line-height: 1.7; }
.footer-social { margin-top: 1.2rem; display: flex; gap: 1.2rem; }
.footer-social a:hover, .footer-col a:hover { color: var(--ochre); }
.footer-col h4 { font-family: var(--font-body); font-size: .85rem; text-transform: uppercase; letter-spacing: .15em; color: var(--white); margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; margin-bottom: .6rem; transition: color .2s; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; }
.hours-row span:last-child { color: rgba(255,255,255,.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.55); }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 200;
    width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ---------- Scroll reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; inset: 0 0 0 35%; flex-direction: column; justify-content: center;
        gap: 1.8rem; background: var(--linen); padding: 2rem; transform: translateX(100%);
        transition: transform .35s var(--ease); box-shadow: -10px 0 30px rgba(0,0,0,.1);
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav > a { color: var(--charcoal) !important; font-size: 1.1rem; }
    body.nav-locked { overflow: hidden; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: stretch; }
}

/* =================================================================
   INNER PAGES — shared components
   ================================================================= */

/* Page hero (sub-pages) */
.page-hero {
    background: var(--mint); text-align: center;
    padding: 10rem 0 4rem; margin-bottom: 0;
}
.page-hero h1 { margin-bottom: .8rem; }
.page-hero p { color: var(--muted); max-width: 600px; margin: 0 auto; }

/* Filter bar (services) */
.filter-bar { background: var(--linen); border-bottom: 1px solid rgba(0,0,0,.06); position: sticky; top: 0; z-index: 50; }
.filter-bar .container { display: flex; gap: .6rem; padding: 1rem 0; flex-wrap: wrap; align-items: center; }
.filter-btn {
    background: transparent; border: 1.5px solid transparent; border-radius: 50px;
    padding: .5rem 1.2rem; font-family: var(--font-body); font-size: .9rem; cursor: pointer;
    color: var(--charcoal); transition: all .2s;
}
.filter-btn:hover { border-color: var(--eucalyptus); }
.filter-btn.active { background: var(--sage); color: var(--white); }
.filter-link { margin-left: auto; color: var(--terracotta); }

.group-title { margin: 2.5rem 0 1.5rem; padding-bottom: .6rem; border-bottom: 2px solid var(--mint); }
.service-group:first-child .group-title { margin-top: 0; }

/* Package "includes" list */
.includes-list { list-style: none; margin: .4rem 0 1rem; }
.includes-list li { font-size: .9rem; color: var(--charcoal); padding: .25rem 0 .25rem 1.4rem; position: relative; }
.includes-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--eucalyptus); font-weight: bold; }
.package-card .card-img { height: 180px; }

/* Facility & etiquette grids (about) */
.facility-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.facility { background: var(--white); border-radius: var(--radius-sm); padding: 1rem 1.3rem; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: .8rem; }
.facility span { color: var(--eucalyptus); font-weight: bold; }
.etiquette-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.etiquette { background: var(--white); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.etiquette h4 { font-family: var(--font-body); font-weight: 600; color: var(--sage); margin-bottom: .5rem; }
.etiquette p { color: var(--muted); font-size: .92rem; }

/* Vouchers */
.voucher-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.voucher-card { background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); border: 1.5px solid transparent; transition: all .3s var(--ease); }
.voucher-card:hover { border-color: var(--ochre); transform: translateY(-4px); }
.voucher-amount { font-family: var(--font-head); font-size: 2rem; font-weight: 600; color: var(--sage); margin-bottom: 1rem; }
.voucher-custom { background: var(--mint); }
.voucher-custom p { color: var(--muted); font-size: .85rem; margin-bottom: 1rem; }

.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; text-align: center; }
.step-item { padding: 1rem; }
.step-num { display: inline-flex; width: 44px; height: 44px; border-radius: 50%; background: var(--sage); color: var(--white); align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 1rem; }
.step-item h4 { font-family: var(--font-body); font-weight: 600; margin-bottom: .4rem; color: var(--sage); }
.step-item p { color: var(--muted); font-size: .9rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--eucalyptus); box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem 1rem .8rem; color: var(--white); font-size: .9rem; background: linear-gradient(transparent, rgba(40,55,42,.75)); }
.gallery-item.no-img { display: flex; align-items: center; justify-content: center; }
.gallery-item.no-img::after { content: attr(data-label); }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; }
.contact-info { background: var(--mint); border-radius: var(--radius); padding: 2rem; }
.contact-info h2 { font-size: 1.6rem; margin-bottom: 1.2rem; }
.info-list { list-style: none; }
.info-list li { margin-bottom: 1.2rem; font-size: .95rem; line-height: 1.5; }
.info-list strong { color: var(--sage); font-family: var(--font-body); font-weight: 600; }
.contact-actions { display: flex; gap: .8rem; margin-top: 1.5rem; flex-wrap: wrap; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }

/* =================================================================
   FORMS (shared)
   ================================================================= */
.styled-form .field, .booking-step .field { margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.styled-form label, .field-label { display: block; font-size: .88rem; font-weight: 500; color: var(--sage); margin-bottom: .4rem; }
input, select, textarea {
    width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--charcoal);
    padding: .8rem 1rem; border: 1.5px solid #e3ddd0; border-radius: var(--radius-sm);
    background: var(--white); transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--eucalyptus); box-shadow: 0 0 0 3px rgba(138,168,136,.2); }
.hp-field { position: absolute; left: -9999px; }

.alert { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-size: .95rem; }
.alert-success { background: #e6f0e0; color: #3b6d11; border: 1px solid #c0dd97; }
.alert-error { background: #fbeaea; color: #a32d2d; border: 1px solid #f0baba; }

/* =================================================================
   BOOKING WIZARD
   ================================================================= */
.booking-wrap { max-width: 720px; margin: 0 auto; }
.stepper { display: flex; justify-content: space-between; list-style: none; margin-bottom: 2rem; counter-reset: step; gap: .3rem; }
.step-dot { flex: 1; text-align: center; font-size: .78rem; color: var(--muted); position: relative; cursor: default; }
.step-dot span { display: block; width: 34px; height: 34px; line-height: 34px; border-radius: 50%; background: #e3ddd0; color: var(--white); margin: 0 auto .5rem; font-weight: 600; transition: background .3s; }
.step-dot.active span { background: var(--terracotta); }
.step-dot.done span { background: var(--sage); cursor: pointer; }
.step-dot.done { cursor: pointer; }

.booking-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.booking-step { display: none; animation: fadeStep .4s var(--ease); }
.booking-step.active { display: block; }
@keyframes fadeStep { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.booking-step h3 { margin-bottom: 1.4rem; }
.step-hint { color: var(--muted); font-size: .88rem; margin-top: .6rem; }
.step-nav { display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; }

.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: .7rem; }
.slot-btn { padding: .7rem .5rem; border: 1.5px solid #e3ddd0; border-radius: var(--radius-sm); background: var(--white); cursor: pointer; font-size: .9rem; transition: all .2s; }
.slot-btn:hover { border-color: var(--eucalyptus); }
.slot-btn.selected { background: var(--sage); color: var(--white); border-color: var(--sage); }

.summary { background: var(--mint); border-radius: var(--radius-sm); padding: 1.2rem 1.5rem; margin-bottom: 1rem; }
.summary-row { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .95rem; }
.summary-row:last-child { border-bottom: 0; }
.summary-row span { color: var(--muted); }
.booking-fallback { text-align: center; margin-top: 1.5rem; color: var(--muted); font-size: .92rem; }
.booking-fallback a { color: var(--terracotta); font-weight: 500; }

/* Booking success state */
.booking-success { text-align: center; padding: 1rem 0; animation: fadeStep .5s var(--ease); }
.success-tick {
    width: 72px; height: 72px; margin: 0 auto 1.2rem; border-radius: 50%;
    background: var(--sage); color: var(--white); font-size: 2.2rem;
    display: flex; align-items: center; justify-content: center;
}
.booking-success h3 { color: var(--sage); margin-bottom: .8rem; }
.booking-success p { color: var(--muted); line-height: 1.7; }
.success-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.8rem; flex-wrap: wrap; }

@media (max-width: 600px) {
    .contact-layout { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .booking-card { padding: 1.5rem; }
    .stepper { font-size: 0; }
    .stepper .step-dot span { margin-bottom: 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
