/* ==========================================================================
   Face Studio LA — design system
   Palette: warm sand / blush / espresso (sampled from the logo)
   Type: Cormorant Garamond (display) + Jost (UI & body)
   ========================================================================== */

:root {
    /* --- brand (sage green) --- */
    --espresso:     #2b332a;   /* headings, primary buttons, footer */
    --espresso-2:   #3d4a3b;
    --text:         #5f6a5d;   /* body copy */
    --mocha:        #7f9179;   /* accent — eyebrows, links, underlines */
    --mocha-soft:   rgba(127, 145, 121, 0.14);
    --clay:         #a8b8a2;
    --blush:        #dfe7db;
    --blush-soft:   rgba(223, 231, 219, 0.55);
    --sand:         #cfd9c9;
    --cream:        #f6f7f2;
    --cream-2:      #e9ede3;
    --white:        #ffffff;

    /* --- legacy aliases (older markup keeps working) --- */
    --green-dark:   var(--espresso);
    --green:        var(--espresso-2);
    --green-muted:  rgba(43, 51, 42, 0.63);
    --olive:        var(--mocha);
    --sage:         var(--sand);
    --sage-soft:    var(--blush-soft);
    --black:        #1a1f19;

    --font-head: "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --font-body: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

    --container: 1200px;
    --gutter: 32px;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 10px 40px rgba(58, 70, 56, 0.09);
    --shadow-lg: 0 22px 60px rgba(58, 70, 56, 0.15);
    --transition: 0.3s ease;
    --header-h: 78px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.75;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    color: var(--espresso);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -0.005em;
}

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

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

.section { padding: 100px 0; }
.section-cream { background: var(--cream); }
.section-sage  { background: var(--blush-soft); }

.eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 12px;
    font-weight: 500;
    color: var(--mocha);
    margin-bottom: 16px;
}

.section-title { font-size: clamp(32px, 4.6vw, 52px); margin-bottom: 18px; }

.section-intro {
    max-width: 640px;
    margin: 0 auto 60px;
    text-align: center;
}
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 16px 34px;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.2;
}
.btn-primary { background: var(--espresso); color: var(--white); }
.btn-primary:hover { background: var(--espresso-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--espresso); border-color: var(--espresso); }
.btn-outline:hover { background: var(--espresso); color: var(--white); }
.btn-light { background: var(--white); color: var(--espresso); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: var(--white); color: var(--espresso); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(246, 247, 242, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(43, 51, 42, 0.07);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-h);
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px 6px 6px;
    margin-left: -6px;
    border-radius: 50px;
    transition: background var(--transition), box-shadow var(--transition);
    -webkit-tap-highlight-color: transparent;
}
.brand:hover { background: var(--mocha-soft); }
.brand:active { background: var(--sand); }
.brand:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--mocha); }
.brand-logo { height: 46px; width: 46px; border-radius: 50%; object-fit: cover; }
.brand-name {
    font-family: var(--font-head);
    font-size: 21px;
    color: var(--espresso);
    line-height: 1.05;
    letter-spacing: 0.02em;
}
.brand-name small {
    display: block;
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--mocha);
    margin-top: 3px;
}

.main-nav ul { list-style: none; display: flex; gap: 26px; align-items: center; }
.main-nav a {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--espresso);
    position: relative;
    padding: 6px 0;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--mocha);
    transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { color: var(--mocha); }
.btn-book { padding: 12px 24px; }

/* burger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px; height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 320;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--espresso);
    transition: transform var(--transition), opacity 0.2s ease;
}
.nav-toggle span:nth-child(2) { width: 17px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Mobile drawer (slides in from the left) ---------- */
.nav-backdrop {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(43, 51, 42, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 290;
}
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

.drawer {
    position: fixed;
    top: 0; left: 0;
    height: 100dvh;
    width: min(86vw, 340px);
    background: var(--cream);
    transform: translateX(-102%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.38s;
    z-index: 300;
    display: flex;
    flex-direction: column;
    box-shadow: 8px 0 40px rgba(43, 51, 42, 0.16);
    visibility: hidden;
}
body.nav-open .drawer { transform: translateX(0); visibility: visible; }

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px 18px;
    border-bottom: 1px solid rgba(43, 51, 42, 0.08);
}
.drawer-head .brand-logo { height: 42px; width: 42px; }
.drawer-close {
    background: none; border: none; cursor: pointer;
    width: 38px; height: 38px;
    display: grid; place-items: center;
    color: var(--espresso);
    font-size: 26px; line-height: 1;
    border-radius: 50%;
    transition: background var(--transition);
}
.drawer-close:hover { background: var(--mocha-soft); }

.drawer-nav { flex: 1; overflow-y: auto; padding: 12px 0 24px; -webkit-overflow-scrolling: touch; }
.drawer-nav ul { list-style: none; }
.drawer-nav li { opacity: 0; transform: translateX(-14px); }
body.nav-open .drawer-nav li { animation: drawerIn 0.42s cubic-bezier(0.22,1,0.36,1) forwards; }
body.nav-open .drawer-nav li:nth-child(1) { animation-delay: 0.08s; }
body.nav-open .drawer-nav li:nth-child(2) { animation-delay: 0.12s; }
body.nav-open .drawer-nav li:nth-child(3) { animation-delay: 0.16s; }
body.nav-open .drawer-nav li:nth-child(4) { animation-delay: 0.20s; }
body.nav-open .drawer-nav li:nth-child(5) { animation-delay: 0.24s; }
body.nav-open .drawer-nav li:nth-child(6) { animation-delay: 0.28s; }
body.nav-open .drawer-nav li:nth-child(7) { animation-delay: 0.32s; }
body.nav-open .drawer-nav li:nth-child(8) { animation-delay: 0.36s; }
@keyframes drawerIn { to { opacity: 1; transform: translateX(0); } }

.drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 26px;
    font-family: var(--font-head);
    font-size: 24px;
    color: var(--espresso);
    border-bottom: 1px solid rgba(43, 51, 42, 0.05);
}
.drawer-nav a::after {
    content: "\2192";
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--clay);
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
}
.drawer-nav a:hover, .drawer-nav a.active { color: var(--mocha); background: var(--mocha-soft); }
.drawer-nav a:hover::after, .drawer-nav a.active::after { opacity: 1; transform: translateX(0); }

.drawer-foot {
    padding: 22px 26px calc(26px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(43, 51, 42, 0.08);
}
.drawer-foot .btn { display: block; width: 100%; margin-bottom: 18px; }
.drawer-foot p { font-size: 14px; margin-bottom: 4px; }
.drawer-foot a { color: var(--mocha); }

/* ==========================================================================
   Hero slider
   ========================================================================== */
.hero-slider {
    position: relative;
    height: 700px;                       /* fallback for old engines */
    height: clamp(520px, 78vh, 760px);
    overflow: hidden;
    background: var(--cream-2);
}
.hero-slide {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    opacity: 0;
    transition: opacity 1.05s ease;
    display: grid;
    place-items: center;
    text-align: center;
    pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.hero-slide::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.07);
    transition: transform 8s ease-out;
}
.hero-slide.is-active::before { transform: scale(1); }
.hero-slide:nth-of-type(1)::before { background-image: url("../img/slide-1.svg"); }
.hero-slide:nth-of-type(2)::before { background-image: url("../img/slide-2.svg"); }
.hero-slide:nth-of-type(3)::before { background-image: url("../img/slide-3.svg"); }
.hero-slide:nth-of-type(4)::before { background-image: url("../img/slide-4.svg"); }
.hero-slide::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(180deg, rgba(246,247,242,0.46) 0%, rgba(246,247,242,0.20) 52%, rgba(207,217,201,0.38) 100%);
}
.hero-slide-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 var(--gutter);
}
.hero-slide .eyebrow { color: var(--mocha); }
.hero-slide h1 {
    color: var(--espresso);
    font-size: clamp(38px, 6.4vw, 74px);
    margin-bottom: 22px;
}
.hero-slide p {
    color: var(--text);
    font-size: clamp(16px, 2vw, 19px);
    max-width: 52ch;
    margin: 0 auto 34px;
}
/* italic sub-slogan under the headline */
.hero-slide .hero-sub {
    font-family: var(--font-head);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(17px, 2.1vw, 23px);
    line-height: 1.5;
    letter-spacing: 0.015em;
    color: var(--espresso-2);
    max-width: 40ch;
    margin: -6px auto 36px;
}
.hero-slide .hero-sub::before {
    content: "";
    display: block;
    width: 46px;
    height: 1px;
    background: rgba(43, 51, 42, 0.28);
    margin: 0 auto 20px;
}

.hero-slide .btn + .btn { margin-left: 12px; }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(43,51,42,0.28);
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(6px);
    color: var(--espresso);
    font-size: 20px;
    cursor: pointer;
    display: grid; place-items: center;
    transition: var(--transition);
}
.slider-arrow:hover { background: var(--espresso); color: var(--white); border-color: var(--espresso); }
.slider-arrow.prev { left: 26px; }
.slider-arrow.next { right: 26px; }

.slider-dots {
    position: absolute;
    left: 0; right: 0; bottom: 28px;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.slider-dots button {
    width: 34px; height: 3px;
    border: none; padding: 0;
    background: rgba(43,51,42,0.25);
    cursor: pointer;
    transition: var(--transition);
}
.slider-dots button.is-active { background: var(--espresso); width: 54px; }

/* ==========================================================================
   Cards
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(43, 51, 42, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 16 / 11; object-fit: cover; width: 100%; background: var(--sand); }
.card-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 26px; margin-bottom: 10px; }
.card-body p { font-size: 15px; margin-bottom: 20px; flex: 1; }
.card-link {
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--mocha);
}
.card-link:hover { color: var(--espresso); }

/* service meta row (duration + price) */
.service-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(43, 51, 42, 0.08);
}
.service-meta .dur {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mocha);
}
.service-meta .price {
    font-family: var(--font-head);
    font-size: 26px;
    color: var(--espresso);
    white-space: nowrap;
}
.service-tag {
    display: inline-block;
    align-self: flex-start;
    background: var(--blush);
    color: var(--espresso);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

/* service category heading */
.svc-group { margin-bottom: 64px; }
.svc-group:last-child { margin-bottom: 0; }
.svc-group-head { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.svc-group-head h2 { font-size: clamp(26px, 3.4vw, 36px); }
.svc-group-head::after { content: ""; flex: 1; height: 1px; background: rgba(43, 51, 42, 0.12); }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: clamp(44px, 5vw, 62px); color: var(--espresso); line-height: 1; }
.stat-label { text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; color: var(--mocha); margin-top: 12px; }

/* ==========================================================================
   Split section
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.split-img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split-copy h2 { font-size: clamp(30px, 3.8vw, 44px); margin-bottom: 22px; }
.split-copy p { margin-bottom: 18px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: var(--espresso); color: rgba(255,255,255,0.86); text-align: center; padding: 92px 0; }
.cta-band h2 { color: var(--white); font-size: clamp(32px, 4vw, 46px); margin-bottom: 18px; }
.cta-band p { max-width: 560px; margin: 0 auto 34px; }

/* ==========================================================================
   Instagram feed
   ========================================================================== */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.insta-grid img { aspect-ratio: 1; object-fit: cover; border-radius: 10px; transition: var(--transition); }
.insta-grid a:hover img { opacity: 0.85; transform: scale(1.02); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow);
    text-align: center;
}
.contact-card h4 {
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--mocha);
    margin-bottom: 16px;
}
.contact-card .big { font-family: var(--font-head); font-size: 24px; color: var(--espresso); }
.hours-list { list-style: none; }
.hours-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 4px 12px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(43,51,42,0.12);
    font-size: 15px;
}
.hours-list li > span { min-width: 0; }
.hours-list li:last-child { border-bottom: none; }
.badge {
    display: inline-block;
    background: var(--blush);
    color: var(--espresso);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

/* contact page layout + form */
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--espresso); }
.field input, .field textarea {
    padding: 14px 16px;
    border: 1px solid var(--sand);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: normal;
    text-transform: none;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--mocha); }
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { border-radius: var(--radius); padding: 18px 22px; margin-bottom: 24px; font-size: 15px; }
.alert-ok { background: var(--blush-soft); color: var(--espresso); }
.alert-err { background: #f6e6e0; color: #a5482a; }
.aside-card { text-align: left; margin-bottom: 22px; }
.aside-card:last-child { margin-bottom: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--espresso); color: rgba(255,255,255,0.75); padding: 76px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; }
.footer-logo { height: 50px; width: 50px; border-radius: 50%; object-fit: cover; margin-bottom: 18px; }
.footer-brand p { font-size: 15px; margin-bottom: 20px; }
.footer-social { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--white); }
.footer-social img { border-radius: 6px; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-weight: 400; font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 15px; }
.footer-col a:hover { color: var(--clay); }
.footer-contact li { line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 24px 0; }
.footer-bottom p { font-size: 13px; text-align: center; color: rgba(255,255,255,0.55); }

/* ==========================================================================
   Interior page hero + prose
   ========================================================================== */
.page-hero { background: var(--cream); text-align: center; padding: 86px 0 70px; }
.page-hero h1 { font-size: clamp(38px, 5.4vw, 60px); margin-bottom: 16px; }
.page-hero p { max-width: 620px; margin: 0 auto; }
.prose { max-width: 760px; margin: 0 auto; }
.prose p { margin-bottom: 22px; }
.prose h2 { margin: 44px 0 16px; font-size: 34px; }
.lead { font-size: 20px; }

/* coming soon */
.coming-soon { text-align: center; padding: 110px 0 120px; }
.coming-soon .mark {
    width: 84px; height: 84px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: var(--blush);
    display: grid; place-items: center;
    font-family: var(--font-head);
    font-size: 28px;
    letter-spacing: 0.04em;
    color: var(--mocha);
}
.coming-soon h2 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 18px; }
.coming-soon p { max-width: 560px; margin: 0 auto 16px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split-img { order: -1; max-height: 460px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-layout { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 900px) {
    :root { --gutter: 28px; }
    .main-nav, .btn-book { display: none; }
    .nav-toggle { display: flex; }
    .card-grid, .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 84px 0; }
}

@media (max-width: 720px) {
    :root { --gutter: 26px; }
    body { font-size: 16px; }
    .section { padding: 68px 0; }
    .card-grid, .card-grid.cols-2, .stats, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .form-row { grid-template-columns: 1fr; }
    .stats { gap: 34px; }
    .section-intro { margin-bottom: 40px; }
    .page-hero { padding: 60px 0 52px; }
    .hero-slider { height: 560px; height: clamp(480px, 74vh, 620px); }
    .slider-arrow { display: none; }
    .slider-dots { bottom: 22px; }
    .hero-slide .btn { display: block; width: 100%; max-width: 300px; margin: 0 auto; }
    .hero-slide .btn + .btn { margin: 12px auto 0; }
    .cta-band { padding: 68px 0; }
    .contact-card, .card-body { padding: 26px 22px; }

    /* hours: stack each row so the time sits under its day instead of
       being stranded against the right edge of a narrow card */
    .hours-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        padding: 10px 0;
    }
    .hours-list li > span:first-child {
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--mocha);
    }
    .hours-list li > span:last-child {
        font-family: var(--font-head);
        font-size: 20px;
        line-height: 1.3;
        color: var(--espresso);
    }

    /* long values (phone, email, address) must never push the card wide */
    .contact-card .big { font-size: 22px; }
    .contact-card p, .contact-card a, .footer-contact li {
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .svc-group { margin-bottom: 46px; }
    .brand-name { font-size: 18px; }
    .svc-group-head h2 { font-size: 26px; }
}

@media (max-width: 380px) {
    :root { --gutter: 22px; }
    .brand-name small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}
