/* ============================================================
   SEREIN — Urban Spa & Wellness
   Luxury dark · eucalyptus black · candle gold · ivory
   Cormorant Garamond (display) + Outfit (body)
   ============================================================ */

:root {
    /* Color */
    --color-primary: #0C1410;
    --color-primary-2: #12201A;
    --color-primary-3: #07100C;
    --color-secondary: #C6A15B;
    --color-secondary-2: #E3C98F;
    --color-accent: #8FBFB0;
    --color-background: #0C1410;
    --color-surface: #14211B;
    --color-surface-2: #18291F;
    --color-text: #EDE7DA;
    --color-muted: #A49B8B;
    --color-border: rgba(198, 161, 91, .22);
    --color-border-soft: rgba(237, 231, 218, .1);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', 'Segoe UI', sans-serif;

    /* Layout */
    --container-width: 1240px;

    /* Spacing */
    --space-xs: .5rem;
    --space-sm: .9rem;
    --space-md: 1.6rem;
    --space-lg: 3.2rem;
    --space-xl: 5.5rem;

    /* Radius — gentle, arched feel */
    --radius-small: 4px;
    --radius-medium: 12px;
    --radius-large: 20px;

    /* Shadows + glow */
    --shadow-small: 0 2px 12px rgba(0, 0, 0, .35);
    --shadow-medium: 0 14px 40px rgba(0, 0, 0, .45);
    --shadow-large: 0 30px 70px rgba(0, 0, 0, .55);
    --glow-gold: 0 0 40px rgba(198, 161, 91, .18);

    /* Transitions */
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset & base ---------- */
*, *::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);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text);
    background: var(--color-background);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; color: var(--color-text); }
h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.45rem; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--color-secondary); color: var(--color-primary-3); padding: .8rem 1.4rem;
    border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 2px; border-radius: 2px; }
::selection { background: var(--color-secondary); color: var(--color-primary-3); }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .9rem 1.8rem; border-radius: 99px;
    font-weight: 500; font-size: .93rem; letter-spacing: .02em;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
    border: 1px solid transparent; white-space: nowrap;
}
.btn svg { flex: none; }
.btn--gold { background: var(--color-secondary); color: var(--color-primary-3); }
.btn--gold:hover { background: var(--color-secondary-2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(198, 161, 91, .3); }
.btn--ghost-dark { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn--ghost-dark:hover { border-color: var(--color-secondary); color: var(--color-secondary-2); transform: translateY(-2px); }
.btn--dark { background: var(--color-surface-2); color: var(--color-text); border-color: var(--color-border-soft); }
.btn--dark:hover { border-color: var(--color-secondary); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--nav { padding: .6rem 1.3rem; font-size: .88rem; }
.btn--sm { padding: .6rem 1.2rem; font-size: .86rem; }

.icon-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid var(--color-border); background: var(--color-surface);
    transition: border-color .2s, color .2s, transform .2s;
}
.icon-btn:hover { border-color: var(--color-secondary); color: var(--color-secondary-2); transform: translateY(-1px); }

/* ---------- Announcement bar ---------- */
.announce-bar { background: var(--color-surface-2); border-bottom: 1px solid var(--color-border-soft); color: var(--color-muted); font-size: .84rem; letter-spacing: .02em; }
.announce-inner { padding: .55rem 1.5rem; text-align: center; }
.announce-inner p { max-width: 46rem; margin: 0 auto; }
.announce-inner b { color: var(--color-secondary-2); font-weight: 500; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(12, 20, 16, .82); backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--color-border-soft); box-shadow: 0 8px 30px rgba(0, 0, 0, .35); }
.header-inner { display: flex; align-items: center; gap: 2rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--color-surface-2); color: var(--color-secondary-2);
    border: 1px solid var(--color-border); flex: none;
}
.brand-text { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--color-text); letter-spacing: .02em; }
.brand--footer .brand-mark { background: var(--color-primary-3); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: .3rem; }
.main-nav a {
    display: block; padding: .55rem .95rem; font-weight: 400; font-size: .94rem;
    color: var(--color-muted); border-radius: 99px; position: relative;
    transition: color .2s;
}
.main-nav a:hover { color: var(--color-text); }
.main-nav a.is-active { color: var(--color-secondary-2); }
.main-nav a.is-active::after {
    content: ''; position: absolute; left: 50%; bottom: .2rem; transform: translateX(-50%);
    width: 18px; height: 2px; border-radius: 2px; background: var(--color-secondary);
}
.header-actions { display: flex; align-items: center; gap: .8rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid var(--color-border); border-radius: 50%; background: var(--color-surface); }
.nav-toggle span { width: 18px; height: 1.5px; background: var(--color-text); transition: transform .25s var(--ease), opacity .2s; }

/* ---------- Mobile nav ---------- */
.nav-backdrop { position: fixed; inset: 0; background: rgba(4, 8, 6, .7); z-index: 150; opacity: 0; transition: opacity .3s var(--ease); backdrop-filter: blur(3px); }
.nav-backdrop.is-open { opacity: 1; }
.mobile-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 88vw); z-index: 160;
    background: var(--color-primary-2); display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform .32s var(--ease);
    box-shadow: var(--shadow-large);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--color-border-soft); }
.mobile-nav-list { padding: 1rem 1.4rem; flex: 1; overflow-y: auto; }
.mobile-nav-list li { border-bottom: 1px solid var(--color-border-soft); }
.mobile-nav-list a { display: block; padding: .95rem 0; font-size: 1.15rem; font-weight: 400; font-family: var(--font-display); color: var(--color-text); }
.mobile-nav-list a.is-active { color: var(--color-secondary-2); }
.mobile-nav-foot { padding: 1.2rem 1.4rem; border-top: 1px solid var(--color-border-soft); }
.mobile-nav-foot p { margin-top: .9rem; font-size: .84rem; color: var(--color-muted); text-align: center; }
body.nav-locked { overflow: hidden; }

/* ---------- Toast ---------- */
.toast {
    position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 20px); z-index: 190;
    background: var(--color-secondary); color: var(--color-primary-3); padding: .85rem 1.5rem; border-radius: 99px;
    font-weight: 500; box-shadow: var(--shadow-large); opacity: 0; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(700px 420px at 82% 8%, rgba(198, 161, 91, .16), transparent 60%),
        radial-gradient(520px 320px at 12% 85%, rgba(143, 191, 176, .08), transparent 60%);
    pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: 3.5rem; align-items: center; padding: 5rem 1.5rem 6.5rem; position: relative; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .7rem; color: var(--color-secondary-2); font-weight: 400; font-size: .82rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1.4rem; }
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--color-secondary); }
.hero h1 em { font-style: italic; color: var(--color-secondary-2); }
.hero-sub { color: var(--color-muted); margin: 1.5rem 0 2.2rem; max-width: 32rem; font-size: 1.07rem; font-weight: 300; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 2.4rem; margin-top: 2.8rem; padding-top: 1.8rem; border-top: 1px solid var(--color-border-soft); }
.hero-trust b { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--color-secondary-2); font-weight: 500; }
.hero-trust span { font-size: .8rem; color: var(--color-muted); letter-spacing: .06em; text-transform: uppercase; }

.hero-visual { position: relative; }
.hero-visual .hv-main { border-radius: 999px 999px var(--radius-large) var(--radius-large); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-large); }
.hero-visual .hv-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .hv-side {
    position: absolute; right: -26px; bottom: 28px; width: 44%;
    border-radius: var(--radius-large); overflow: hidden; aspect-ratio: 1 / 1.1;
    border: 6px solid var(--color-primary); box-shadow: var(--shadow-large);
}
.hero-visual .hv-side img { width: 100%; height: 100%; object-fit: cover; }
.hv-badge {
    position: absolute; left: -18px; top: 34px;
    background: var(--color-primary-3); border: 1px solid var(--color-border);
    border-radius: var(--radius-medium); padding: .8rem 1rem; text-align: center;
    box-shadow: var(--shadow-medium);
}
.hv-badge b { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--color-secondary-2); font-weight: 500; }
.hv-badge span { font-size: .72rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Section scaffolding ---------- */
.section { padding: var(--space-xl) 0; position: relative; }
.section--tight { padding: var(--space-lg) 0; }
.section--alt { background: var(--color-surface); }
.section--glow::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(600px 340px at 90% 0, rgba(198, 161, 91, .08), transparent 60%);
    pointer-events: none;
}
.section-head { max-width: 44rem; margin-bottom: var(--space-lg); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { display: inline-flex; align-items: center; gap: .7rem; color: var(--color-secondary-2); font-weight: 400; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1rem; }
.kicker::before { content: ''; width: 30px; height: 1px; background: var(--color-secondary); }
.section-head--center .kicker::after { content: ''; width: 30px; height: 1px; background: var(--color-secondary); }
.section-head p { color: var(--color-muted); margin-top: 1rem; font-size: 1.04rem; font-weight: 300; }
.section-head .head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.section-head h2 em { font-style: italic; color: var(--color-secondary-2); }

/* ---------- Treatment cards ---------- */
.tx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.7rem; }
.tx-card {
    background: var(--color-surface); border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-large); overflow: hidden;
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
    display: flex; flex-direction: column;
}
.tx-card:hover { transform: translateY(-6px); border-color: var(--color-border); box-shadow: var(--shadow-medium); }
.tx-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tx-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .8s; }
.tx-card:hover .tx-media img { transform: scale(1.07); }
.tx-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7, 16, 12, .5), transparent 45%); }
.tx-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--color-secondary); color: var(--color-primary-3);
    font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    padding: .3rem .7rem; border-radius: 99px;
}
.tx-duration {
    position: absolute; bottom: 12px; left: 14px; z-index: 2;
    color: #fff; font-size: .8rem; letter-spacing: .06em;
    display: inline-flex; align-items: center; gap: .4rem;
}
.tx-body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.tx-cat { color: var(--color-secondary-2); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; }
.tx-name { font-size: 1.5rem; }
.tx-name a:hover { color: var(--color-secondary-2); }
.tx-short { color: var(--color-muted); font-size: .9rem; font-weight: 300; }
.tx-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .4rem; padding-top: .9rem; border-top: 1px solid var(--color-border-soft); }
.tx-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-secondary-2); font-weight: 600; }
.tx-rating { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--color-muted); }
.tx-rating .stars { color: var(--color-secondary); }
.tx-cta { display: flex; gap: .6rem; margin-top: .9rem; }

/* Stars */
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 13px; height: 13px; }
.stars--lg svg { width: 17px; height: 17px; }

/* ---------- Promise / value cards ---------- */
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.promise-card { background: var(--color-surface); border: 1px solid var(--color-border-soft); border-radius: var(--radius-large); padding: 1.7rem 1.5rem; transition: transform .3s var(--ease), border-color .3s; }
.promise-card:hover { transform: translateY(-4px); border-color: var(--color-border); }
.promise-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--color-surface-2); color: var(--color-secondary-2); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.promise-card h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.promise-card p { font-size: .88rem; color: var(--color-muted); font-weight: 300; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stats-band .stat { border-right: 1px solid var(--color-border-soft); }
.stats-band .stat:last-child { border-right: none; }
.stats-band .stat b { font-family: var(--font-display); font-size: clamp(2.1rem, 3.6vw, 3rem); font-weight: 500; color: var(--color-secondary-2); display: inline-block; }
.stats-band .stat span { display: block; color: var(--color-muted); font-size: .86rem; margin-top: .2rem; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.testi-card { background: var(--color-surface); border: 1px solid var(--color-border-soft); border-radius: var(--radius-large); padding: 1.9rem 1.8rem; position: relative; }
.testi-quote { position: absolute; top: 1.5rem; right: 1.6rem; color: var(--color-border); opacity: .5; }
.testi-card .stars { margin-bottom: .9rem; color: var(--color-secondary); }
.testi-text { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.6; color: var(--color-text); font-style: italic; }
.testi-who { display: flex; align-items: center; gap: .9rem; margin-top: 1.3rem; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--color-surface-2); border: 1px solid var(--color-border); color: var(--color-secondary-2); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; }
.testi-who b { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.testi-who span { font-size: .8rem; color: var(--color-muted); }

/* ---------- Ritual / process ---------- */
.ritual-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: ritual; }
.ritual-card { position: relative; background: var(--color-surface); border: 1px solid var(--color-border-soft); border-radius: var(--radius-large); padding: 1.8rem 1.5rem; counter-increment: ritual; transition: border-color .3s, transform .3s; }
.ritual-card:hover { border-color: var(--color-border); transform: translateY(-4px); }
.ritual-card::before { content: '0' counter(ritual); font-family: var(--font-display); font-size: 1rem; color: var(--color-secondary-2); letter-spacing: .14em; }
.ritual-card h3 { margin: .9rem 0 .4rem; font-size: 1.2rem; }
.ritual-card p { font-size: .88rem; color: var(--color-muted); font-weight: 300; }

/* ---------- CTA band ---------- */
.cta-band {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px 999px var(--radius-large) var(--radius-large);
    padding: 3.4rem 3rem 3.6rem; text-align: center; position: relative; overflow: hidden;
    box-shadow: var(--glow-gold);
}
.cta-band::before {
    content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
    width: 400px; height: 220px; background: radial-gradient(closest-side, rgba(198, 161, 91, .18), transparent);
    pointer-events: none;
}
.cta-band h2 { max-width: 34rem; margin: 0 auto; }
.cta-band h2 em { font-style: italic; color: var(--color-secondary-2); }
.cta-band p { color: var(--color-muted); max-width: 30rem; margin: .9rem auto 1.8rem; font-weight: 300; }
.cta-band .cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; margin-bottom: 2rem; }
.filter-chip {
    padding: .55rem 1.2rem; border-radius: 99px; border: 1px solid var(--color-border-soft);
    font-size: .87rem; font-weight: 400; color: var(--color-muted); background: var(--color-surface);
    transition: all .25s var(--ease);
}
.filter-chip:hover { border-color: var(--color-secondary); color: var(--color-secondary-2); }
.filter-chip.is-active { background: var(--color-secondary); border-color: var(--color-secondary); color: var(--color-primary-3); font-weight: 500; }
.filter-count { margin-left: auto; font-size: .86rem; color: var(--color-muted); }
.filter-empty { text-align: center; padding: 3rem 0; color: var(--color-muted); }
.filter-empty .btn { margin-top: 1rem; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .85rem; color: var(--color-muted); padding: 1.2rem 1.5rem; }
.breadcrumbs a:hover { color: var(--color-secondary-2); }
.breadcrumbs .sep { color: var(--color-border); }

/* ---------- Page hero ---------- */
.page-hero { padding: 4.5rem 1.5rem 4.2rem; position: relative; }
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(650px 320px at 80% 0, rgba(198, 161, 91, .12), transparent 60%);
    pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 44rem; }
.page-hero h1 em { font-style: italic; color: var(--color-secondary-2); }
.page-hero p { color: var(--color-muted); margin-top: 1.1rem; max-width: 40rem; font-weight: 300; }

/* ---------- Treatment detail ---------- */
.td-top { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.td-gallery { border-radius: var(--radius-large); overflow: hidden; box-shadow: var(--shadow-large); }
.td-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.td-info .td-meta { display: flex; gap: 1.4rem; flex-wrap: wrap; margin: 1.2rem 0; }
.td-meta-chip { display: inline-flex; align-items: center; gap: .5rem; color: var(--color-muted); font-size: .9rem; border: 1px solid var(--color-border-soft); padding: .45rem .95rem; border-radius: 99px; }
.td-meta-chip b { color: var(--color-secondary-2); font-weight: 500; }
.td-price { font-family: var(--font-display); font-size: 2.2rem; color: var(--color-secondary-2); }
.td-info p { color: var(--color-muted); font-weight: 300; }
.td-benefits { margin: 1.6rem 0; }
.td-benefits li { display: flex; gap: .7rem; align-items: flex-start; padding: .45rem 0; color: var(--color-muted); }
.td-benefits svg { color: var(--color-secondary); flex: none; margin-top: 6px; }
.td-notes { background: var(--color-surface); border: 1px solid var(--color-border-soft); border-radius: var(--radius-medium); padding: 1.2rem 1.4rem; margin-top: 1.4rem; }
.td-notes b { color: var(--color-secondary-2); font-weight: 500; display: block; margin-bottom: .2rem; font-family: var(--font-display); font-size: 1.05rem; }
.td-notes p { font-size: .9rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .field--full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .84rem; font-weight: 400; color: var(--color-text); letter-spacing: .04em; }
.field input, .field select, .field textarea {
    border: 1px solid var(--color-border-soft); border-radius: var(--radius-medium);
    padding: .75rem .95rem; background: var(--color-surface); width: 100%; transition: border-color .2s;
    color: var(--color-text);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-secondary); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #C25E5E; }
.field-error { font-size: .78rem; color: #E08A8A; display: none; }
.field.has-error .field-error { display: block; }
.field-hint { font-size: .76rem; color: var(--color-muted); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { font-size: .82rem; color: var(--color-muted); margin-top: .9rem; }
.form-success { display: none; background: var(--color-surface-2); color: var(--color-secondary-2); border: 1px solid var(--color-border); border-radius: var(--radius-medium); padding: 1rem 1.2rem; margin-bottom: 1.2rem; }
.form-success.is-show { display: block; }

/* ---------- Contact layout ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info-card { background: var(--color-surface); border: 1px solid var(--color-border-soft); border-radius: var(--radius-large); padding: 2.2rem 2rem; }
.contact-info-card h2 { margin-bottom: .4rem; }
.contact-info-card > p { color: var(--color-muted); font-weight: 300; }
.contact-info-card ul { margin-top: 1.2rem; }
.contact-info-card ul li { display: flex; gap: .9rem; align-items: flex-start; padding: .85rem 0; border-bottom: 1px solid var(--color-border-soft); font-size: .93rem; }
.contact-info-card ul li:last-child { border-bottom: none; }
.contact-info-card svg { color: var(--color-secondary-2); flex: none; margin-top: 4px; }
.contact-info-card a:hover { color: var(--color-secondary-2); }
.contact-hours { margin-top: 1.2rem; background: var(--color-primary-2); border: 1px solid var(--color-border-soft); border-radius: var(--radius-medium); padding: 1.1rem 1.2rem; font-size: .86rem; }
.contact-hours b { color: var(--color-secondary-2); font-weight: 500; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 48rem; }
.accordion-item { border: 1px solid var(--color-border-soft); border-radius: var(--radius-medium); background: var(--color-surface); margin-bottom: .8rem; overflow: hidden; transition: border-color .2s; }
.accordion-item.is-open { border-color: var(--color-border); }
.accordion-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.35rem; text-align: left; font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; color: var(--color-text); }
.accordion-btn svg { flex: none; transition: transform .3s var(--ease); color: var(--color-secondary); }
.accordion-item.is-open .accordion-btn svg { transform: rotate(180deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.accordion-item.is-open .accordion-panel { max-height: 500px; }
.accordion-panel p { padding: 0 1.35rem 1.25rem; color: var(--color-muted); font-weight: 300; }

/* ---------- Journal ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.7rem; }
.journal-card { background: var(--color-surface); border: 1px solid var(--color-border-soft); border-radius: var(--radius-large); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), border-color .3s; }
.journal-card:hover { transform: translateY(-5px); border-color: var(--color-border); }
.journal-media { aspect-ratio: 3 / 2; overflow: hidden; }
.journal-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.journal-card:hover .journal-media img { transform: scale(1.06); }
.journal-body { padding: 1.35rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.journal-meta { display: flex; gap: .9rem; font-size: .74rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .12em; }
.journal-meta span:first-child { color: var(--color-secondary-2); }
.journal-body h3 { font-size: 1.3rem; line-height: 1.25; }
.journal-body h3 a:hover { color: var(--color-secondary-2); }
.journal-body p { font-size: .9rem; color: var(--color-muted); font-weight: 300; }
.journal-more { margin-top: auto; padding-top: .7rem; font-weight: 400; font-size: .88rem; color: var(--color-secondary-2); display: inline-flex; align-items: center; gap: .35rem; }
.journal-more svg { transition: transform .2s var(--ease); }
.journal-more:hover svg { transform: translateX(4px); }

/* ---------- Article ---------- */
.article-hero { padding-top: 2.5rem; }
.article-meta { display: flex; gap: 1rem; font-size: .78rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .12em; margin: 1rem 0; }
.article-meta span:first-child { color: var(--color-secondary-2); }
.article-hero img { border-radius: var(--radius-large); aspect-ratio: 16 / 7; object-fit: cover; margin-top: 1.5rem; width: 100%; box-shadow: var(--shadow-medium); }
.article-body { max-width: 44rem; margin: 0 auto; }
.article-body p { color: var(--color-muted); margin-bottom: 1.3rem; font-size: 1.03rem; font-weight: 300; line-height: 1.85; }
.article-body p:first-of-type::first-letter { font-family: var(--font-display); font-weight: 500; font-size: 3.6rem; float: left; line-height: .9; padding: .15rem .7rem 0 0; color: var(--color-secondary-2); }
.article-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border-soft); font-size: .95rem; color: var(--color-secondary-2); }
.article-nav a:hover { color: var(--color-text); }

/* ---------- About ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-split img { border-radius: 999px 999px var(--radius-large) var(--radius-large); aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow-large); }
.about-split p { color: var(--color-muted); margin-bottom: 1rem; font-weight: 300; }
.about-split h2 em { font-style: italic; color: var(--color-secondary-2); }
.quote-line { border-left: 2px solid var(--color-secondary); padding-left: 1.2rem; font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--color-text); margin: 1.4rem 0; }
.stats-inline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stats-inline .stat { background: var(--color-surface); border: 1px solid var(--color-border-soft); border-radius: var(--radius-medium); padding: 1.3rem; text-align: center; }
.stats-inline .stat b { font-family: var(--font-display); font-size: 1.9rem; color: var(--color-secondary-2); font-weight: 500; display: inline-block; }
.stats-inline .stat span { display: block; font-size: .78rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }

/* ---------- Thank you / 404 ---------- */
.thanks-wrap, .error-wrap { max-width: 36rem; margin: 0 auto; text-align: center; padding: 4rem 1rem; }
.thanks-mark { width: 84px; height: 84px; border-radius: 50%; background: var(--color-surface-2); border: 1px solid var(--color-border); color: var(--color-secondary-2); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.6rem; animation: pop-in .5s var(--ease); }
.thanks-wrap h1, .error-wrap h1 { margin-bottom: .8rem; }
.thanks-wrap p, .error-wrap p { color: var(--color-muted); margin-bottom: 1.6rem; font-weight: 300; }
.thanks-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.error-code { font-family: var(--font-display); font-size: clamp(5rem, 12vw, 8rem); font-weight: 500; color: var(--color-secondary); line-height: 1; }

/* ---------- Newsletter ---------- */
.news-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.news-form input[type="email"] { flex: 1; min-width: 220px; border: 1px solid var(--color-border-soft); border-radius: 99px; padding: .75rem 1.1rem; background: var(--color-primary-2); color: var(--color-text); }
.news-form input[type="email"]:focus { outline: none; border-color: var(--color-secondary); }
.news-form input[type="email"]::placeholder { color: var(--color-muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-primary-3); border-top: 1px solid var(--color-border-soft); padding: var(--space-xl) 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--color-border-soft); }
.footer-brand .brand-text { color: var(--color-text); }
.footer-brand p { margin: 1.1rem 0 1.3rem; font-size: .9rem; max-width: 22rem; color: var(--color-muted); font-weight: 300; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--color-border-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-muted); transition: all .25s; }
.footer-social a:hover { background: var(--color-secondary); border-color: var(--color-secondary); color: var(--color-primary-3); transform: translateY(-2px); }
.footer-col h3 { font-size: 1.05rem; margin-bottom: 1.1rem; color: var(--color-text); }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col a { font-size: .9rem; color: var(--color-muted); transition: color .2s; font-weight: 300; }
.footer-col a:hover { color: var(--color-secondary-2); }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; margin-bottom: .75rem; color: var(--color-muted); }
.footer-contact svg { color: var(--color-secondary-2); flex: none; margin-top: 4px; }
.footer-news { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2.6rem 0; border-bottom: 1px solid var(--color-border-soft); flex-wrap: wrap; }
.footer-news h3 { font-size: 1.3rem; }
.footer-news p { color: var(--color-muted); font-size: .88rem; margin-top: .3rem; max-width: 30rem; font-weight: 300; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.6rem 0 2rem; font-size: .8rem; color: var(--color-muted); }
.footer-demo { font-style: italic; }
