/* ============================================
   SORA - HAIR & EYELASH — Design System
   Brand: Sage #7a8c6f / Ivory #f8f5ee / Warm Brown #8b6f52
   Tone: Natural / Healing / Feminine
   ============================================ */

:root {
    --sage: #8fa085;
    --sage-dark: #667a5d;
    --sage-soft: #b3c4a8;
    --sage-pale: #e8eee0;
    --ivory: #faf7ef;
    --ivory-dark: #f0eadb;
    --beige: #e3d8c2;
    --beige-dark: #c9bba0;
    --brown: #9a7f62;
    --brown-dark: #6b5641;
    --brown-light: #c4ab8c;
    --white: #ffffff;
    --cream: #fdfbf5;
    --gray-50: #fbfaf6;
    --gray-100: #f4f1e9;
    --gray-200: #e9e4d5;
    --gray-300: #d3ccb9;
    --gray-500: #8f8a7c;
    --gray-700: #4d493f;
    --gray-900: #221f18;
    --shadow-sm: 0 1px 3px rgba(107, 86, 65, 0.04);
    --shadow-md: 0 6px 20px rgba(107, 86, 65, 0.06);
    --shadow-lg: 0 16px 50px rgba(107, 86, 65, 0.09);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-serif: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', '游明朝', serif;
    --font-sans: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic Pro', sans-serif;
    --font-en: 'Cormorant Garamond', 'Times New Roman', serif;
    --container: 1200px;
    --container-narrow: 960px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--gray-900);
    background: var(--cream);
    line-height: 1.95;
    letter-spacing: 0.035em;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--brown-dark);
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}
a:hover { opacity: 0.7; }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--brown-dark);
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}
.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}
section { padding: var(--space-xl) 0; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-label {
    font-family: var(--font-en);
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
    display: block;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}
.section-lead {
    color: var(--gray-700);
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 2.1;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo { display: flex; align-items: center; gap: 0.75rem; }
.header-logo img {
    height: 80px;
    width: auto;
    transition: filter 0.3s ease;
}
.site-header.scrolled .header-logo img {
    height: 64px;
}
.site-header:not(.scrolled) .header-logo img {
    filter: brightness(0) invert(1);
}

.nav-main {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-main a {
    font-family: var(--font-en);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
}
.site-header.scrolled .nav-main a { color: var(--brown-dark); }
.nav-main a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 1px;
    background: var(--sage);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-main a:hover { opacity: 1; }
.nav-main a:hover::after { transform: scaleX(1); }

.nav-cta {
    padding: 0.65rem 1.5rem;
    background: var(--sage);
    color: var(--white) !important;
    border-radius: 999px;
    font-family: var(--font-sans) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.1em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--sage-dark); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: 0.3s;
}
.site-header.scrolled .menu-toggle span { background: var(--brown-dark); }

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(44, 36, 26, 0.25) 0%, rgba(44, 36, 26, 0.45) 60%, rgba(44, 36, 26, 0.65) 100%);
    z-index: 1;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}
.hero-sub {
    font-family: var(--font-en);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    letter-spacing: 0.35em;
    color: var(--sage-pale);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4.2vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    line-height: 1.7;
    color: var(--white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero-divider {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: var(--sage-soft);
    margin: 2rem auto 1.5rem;
}
.hero-copy {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 2.1;
    margin-bottom: 2.5rem;
    letter-spacing: 0.1em;
}
.hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    font-family: var(--font-en);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.7;
    animation: float 2.5s ease-in-out infinite;
}
.scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--white);
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}
.btn-primary {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}
.btn-primary:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    opacity: 1;
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    opacity: 1;
}
.btn-brown {
    background: var(--brown);
    color: var(--white);
    border-color: var(--brown);
}
.btn-brown:hover { background: var(--brown-dark); opacity: 1; }
.btn-line {
    background: #06c755;
    color: var(--white);
    border-color: #06c755;
}
.btn-line:hover { background: #05a847; opacity: 1; }

/* ============================================
   Concept / About
   ============================================ */
.concept {
    background: var(--ivory);
}
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.concept-image {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}
.concept-content .section-label { text-align: left; }
.concept-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.concept-text {
    color: var(--gray-700);
    line-height: 2.1;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ============================================
   Services preview (top page)
   ============================================ */
.services { background: var(--cream); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.service-card {
    background: var(--cream);
    padding: 2.75rem 1.75rem;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: block;
    color: inherit;
    border: 1px solid var(--ivory-dark);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--sage);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    opacity: 1;
}
.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    color: var(--sage-dark);
}
.service-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--brown-dark);
    margin-bottom: 0.25rem;
}
.service-en {
    font-family: var(--font-en);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--sage-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}
.service-desc {
    font-size: 0.85rem;
    color: var(--gray-700);
    line-height: 1.9;
}

/* ============================================
   Menu page
   ============================================ */
.menu-section {
    background: var(--cream);
    padding: var(--space-xl) 0;
}
.menu-section:nth-child(even) { background: var(--ivory); }

.menu-category {
    max-width: 820px;
    margin: 0 auto 4rem;
}
.menu-category-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.menu-category-en {
    font-family: var(--font-en);
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: var(--sage-dark);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}
.menu-category-jp {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    color: var(--brown);
}
.menu-category-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.75rem;
    letter-spacing: 0.05em;
}

.menu-list {
    list-style: none;
}
.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px dashed var(--gray-300);
    align-items: baseline;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--brown-dark);
    letter-spacing: 0.05em;
}
.menu-item-en {
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--sage-dark);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.15rem;
}
.menu-item-desc {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-top: 0.3rem;
    line-height: 1.7;
}
.menu-item-price {
    font-family: var(--font-en);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--brown-dark);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.menu-item-price .tax {
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-left: 0.25rem;
    font-family: var(--font-sans);
}
.menu-badge {
    display: inline-block;
    background: var(--sage-pale);
    color: var(--sage-dark);
    font-size: 0.65rem;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    margin-left: 0.5rem;
    letter-spacing: 0.08em;
    vertical-align: middle;
    font-family: var(--font-sans);
}
.menu-note {
    max-width: 820px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem;
    background: var(--ivory-dark);
    border-left: 3px solid var(--sage);
    font-size: 0.83rem;
    color: var(--gray-700);
    line-height: 1.9;
}

/* ============================================
   Reserve banner (two-column CTA)
   ============================================ */
.reserve-banner {
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
    padding: var(--space-lg) 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.reserve-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}
.reserve-banner-inner { position: relative; z-index: 1; }
.reserve-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.reserve-sub {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}
.reserve-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.reserve-buttons .btn-primary {
    background: var(--white);
    color: var(--sage-dark);
    border-color: var(--white);
}
.reserve-buttons .btn-primary:hover {
    background: var(--ivory);
    border-color: var(--ivory);
}

/* ============================================
   Staff
   ============================================ */
.staff { background: var(--cream); }
.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.staff-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--ivory-dark);
}
.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.staff-photo {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    background-color: var(--ivory-dark);
}
.staff-body {
    padding: 2rem 1.75rem 2.25rem;
    text-align: center;
}
.staff-role {
    font-family: var(--font-en);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--sage-dark);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.staff-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--brown-dark);
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}
.staff-name-en {
    font-family: var(--font-en);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    display: block;
}
.staff-bio {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    text-align: left;
}
.staff-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid var(--ivory-dark);
}
.staff-skill {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    background: var(--sage-pale);
    color: var(--sage-dark);
    border-radius: 999px;
    letter-spacing: 0.05em;
}

/* ============================================
   Blog (Instagram embed)
   ============================================ */
.blog-section { background: var(--cream); }
.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.ig-grid .instagram-media {
    margin: 0 auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-md) !important;
}
.ig-profile-link {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   Voice (reviews)
   ============================================ */
.voice-section { background: var(--cream); }
.voice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}
.voice-card {
    background: var(--cream);
    padding: 2.25rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ivory-dark);
    position: relative;
}
.voice-card::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-family: var(--font-en);
    font-size: 4rem;
    color: var(--sage-pale);
    line-height: 1;
}
.voice-stars {
    color: var(--sage-dark);
    letter-spacing: 0.15em;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    position: relative;
}
.voice-text {
    color: var(--gray-700);
    font-size: 0.92rem;
    line-height: 1.95;
    margin-bottom: 1.25rem;
    position: relative;
}
.voice-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 1rem;
    border-top: 1px solid var(--ivory-dark);
    font-size: 0.78rem;
    color: var(--gray-500);
}
.voice-meta-name { font-family: var(--font-serif); color: var(--brown-dark); }
.voice-form-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: var(--ivory);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}
.voice-form-wrap iframe {
    width: 100%;
    min-height: 700px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--cream);
}

/* ============================================
   Coming Soon (shared)
   ============================================ */
.coming-soon {
    text-align: center;
    padding: var(--space-2xl) 2rem;
    background: var(--ivory);
}
.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--sage);
    opacity: 0.7;
}
.coming-soon-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}
.coming-soon-text {
    color: var(--gray-700);
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 2;
}

/* ============================================
   Access
   ============================================ */
.access { background: var(--ivory); }
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}
.access-map {
    aspect-ratio: 4 / 3;
    background: var(--gray-200);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border-radius: var(--radius-md);
}
.access-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.access-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 1rem;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
}
.info-table th,
.info-table td {
    padding: 1rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
    vertical-align: top;
}
.info-table th {
    width: 28%;
    color: var(--sage-dark);
    font-weight: 500;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.info-table td {
    color: var(--gray-700);
    line-height: 1.9;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #4d3f30 0%, #3a2f24 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: var(--space-lg) 0 var(--space-md);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo img {
    height: 88px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}
.footer-about {
    font-size: 0.85rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}
.footer-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
}
.footer-title {
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-soft);
    margin-bottom: 1.25rem;
}
.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    transition: color 0.25s;
}
.footer-nav a:hover { color: var(--sage-soft); opacity: 1; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
}

/* ============================================
   Page header (sub pages)
   ============================================ */
.page-header {
    background: linear-gradient(160deg, var(--sage-dark) 0%, var(--sage) 65%, var(--sage-soft) 100%);
    color: var(--white);
    padding: 11rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}
.page-header-inner { position: relative; z-index: 1; }
.page-header .section-label { color: var(--sage-pale); }
.page-header h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    letter-spacing: 0.18em;
    font-weight: 400;
}

/* ============================================
   Form
   ============================================ */
.form-section { background: var(--ivory); padding: var(--space-xl) 0; }
.form-container { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.form-card {
    background: var(--cream);
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
}
.form-row { margin-bottom: 1.5rem; }
.form-row label {
    display: block;
    font-size: 0.85rem;
    color: var(--brown-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}
.form-row .required {
    color: #c94f4f;
    margin-left: 0.25rem;
    font-size: 0.75rem;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border: 1px solid var(--beige);
    background: var(--cream);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-900);
    transition: border-color 0.25s, background 0.25s;
    border-radius: var(--radius-sm);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--sage);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-submit { text-align: center; margin-top: 2.5rem; }
.form-submit button { padding: 1.1rem 4rem; }
.form-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.8;
}

/* ============================================
   Policy pages
   ============================================ */
.policy-section {
    background: var(--cream);
    padding: var(--space-xl) 0;
}
.policy-body {
    max-width: 780px;
    margin: 0 auto;
}
.policy-intro {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 2.1;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}
.policy-article {
    margin-bottom: 2.5rem;
}
.policy-article h2 {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--brown-dark);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--sage);
}
.policy-article p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 2;
    margin-bottom: 0.75rem;
}
.policy-article ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}
.policy-article ul li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 2;
}
.policy-article ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 6px;
    height: 6px;
    background: var(--sage);
    border-radius: 50%;
}
.policy-contact {
    background: var(--ivory);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
}
.policy-contact p {
    margin: 0;
}
.policy-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    text-align: right;
}
.policy-date p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================================
   Cancel policy card
   ============================================ */
.cancel-policy-card {
    max-width: 780px;
    margin: 0 auto;
    background: var(--ivory);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}
.cancel-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}
.cancel-table th,
.cancel-table td {
    padding: 1.1rem 1.5rem;
    text-align: left;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--gray-200);
}
.cancel-table thead th {
    background: var(--sage-pale);
    color: var(--sage-dark);
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}
.cancel-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.cancel-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.cancel-free {
    color: var(--sage-dark);
    font-weight: 500;
}
.cancel-charge {
    color: #b85c4e;
}
.cancel-notes {
    padding-top: 1rem;
}
.cancel-notes h3 {
    font-size: 0.95rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
}
.cancel-notes ul {
    list-style: none;
    padding: 0;
}
.cancel-notes ul li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 2;
    margin-bottom: 0.5rem;
}
.cancel-notes ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 6px;
    height: 6px;
    background: var(--sage);
    border-radius: 50%;
}
.cancel-contact {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================================
   Counseling form enhancements
   ============================================ */
.counseling-intro {
    text-align: center;
    margin-bottom: 3rem;
}
.counseling-intro p {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 2.1;
}
.form-section-title {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 2.5rem 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--brown-dark);
    letter-spacing: 0.08em;
}
.form-section-title:first-child { margin-top: 0; }
.form-section-num {
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--sage);
    letter-spacing: 0;
    line-height: 1;
}
.form-section-en {
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--sage-dark);
    text-transform: uppercase;
    margin-left: auto;
}
.form-section-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Checkbox / Radio groups */
.check-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.check-item,
.radio-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    background: var(--ivory);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid transparent;
}
.check-item:hover,
.radio-item:hover {
    background: var(--sage-pale);
}
.check-item input,
.radio-item input {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    accent-color: var(--sage);
    flex-shrink: 0;
}
.check-label,
.radio-label {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
}
.check-item--agree {
    background: var(--sage-pale);
    border-color: var(--sage-soft);
    padding: 1.1rem 1.25rem;
}
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Agreement box */
.agreement-box {
    background: var(--ivory);
    border-left: 3px solid var(--sage);
    padding: 1.75rem 2rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 1rem;
}
.agreement-box p {
    font-size: 0.88rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.8;
}
.agreement-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.agreement-box ul li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 0.4rem;
}
.agreement-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 6px;
    height: 6px;
    background: var(--sage);
    border-radius: 50%;
}

/* Outline sage button */
.btn-outline-sage {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    border: 1px solid var(--sage);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    background: transparent;
    color: var(--sage-dark);
}
.btn-outline-sage:hover {
    background: var(--sage-pale);
    opacity: 1;
}

/* ============================================
   Print styles
   ============================================ */
.print-header {
    display: none;
}
.print-only {
    display: none;
}

/* Signature area (print) */
.signature-area {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}
.signature-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}
.signature-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.signature-date {
    flex: 0 0 200px;
}
.signature-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}
.signature-line {
    display: block;
    border-bottom: 1px solid var(--gray-700);
    height: 2rem;
}
.signature-note {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

@media print {
    .site-header,
    .site-footer,
    .page-header,
    .no-print,
    .nav-main,
    .menu-toggle,
    .reserve-banner { display: none !important; }

    .print-header {
        display: block !important;
        text-align: center;
        padding: 1.5rem 0 1rem;
        border-bottom: 2px solid var(--sage);
        margin-bottom: 1.5rem;
    }
    .print-header h1 {
        font-family: var(--font-serif);
        font-size: 1.2rem;
        color: var(--brown-dark);
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }
    .print-header p {
        font-size: 0.8rem;
        color: var(--gray-500);
    }
    .print-only { display: block !important; }

    body { background: white; }
    section { padding: 1rem 0 !important; }
    .form-section { padding: 0 !important; }
    .form-card {
        box-shadow: none !important;
        padding: 1rem !important;
        border: none !important;
    }
    .counseling-intro { margin-bottom: 1rem; display: none; }
    .form-section-title { margin: 1.5rem 0 0.75rem; }
    .form-row input,
    .form-row select,
    .form-row textarea {
        border: none;
        border-bottom: 1px solid var(--gray-300);
        border-radius: 0;
        padding: 0.5rem 0;
        min-height: 1.8rem;
    }
    .form-row textarea { min-height: 3rem; }
    .check-item, .radio-item {
        background: none;
        padding: 0.4rem 0;
    }
    .agreement-box { background: none; padding: 1rem 1.5rem; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .concept-grid { grid-template-columns: 1fr; gap: 3rem; }
    .access-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    section { padding: var(--space-lg) 0; }
    .container, .container-narrow { padding: 0 1.25rem; }
    .header-inner { padding: 0 1.25rem; }
    .header-logo img { height: 56px; }
    .site-header.scrolled .header-logo img { height: 48px; }
    .footer-logo img { height: 64px; }
    .nav-main { display: none; }
    .menu-toggle { display: block; }
    .nav-main.open {
        display: flex;
        position: fixed;
        top: 0; right: 0;
        width: 80%; height: 100vh;
        background: var(--sage-dark);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .nav-main.open a { color: var(--white); font-size: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-card { padding: 2rem 1.5rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .menu-item { grid-template-columns: 1fr; gap: 0.5rem; }
    .menu-item-price { text-align: right; }
    .staff-grid { grid-template-columns: 1fr; }
    .ig-grid { grid-template-columns: 1fr; }
    .voice-grid { grid-template-columns: 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .cancel-policy-card { padding: 1.5rem; }
    .cancel-table th, .cancel-table td { padding: 0.85rem 1rem; font-size: 0.85rem; }
    .signature-row { flex-direction: column; gap: 1.5rem; }
    .signature-date { flex: 1; }
}
@media (max-width: 1024px) {
    .staff-grid { grid-template-columns: repeat(2, 1fr); }
    .ig-grid { grid-template-columns: repeat(2, 1fr); }
}
