/* ============================================
   Àràbà Awódìran — Main Stylesheet
   Theme: Warm, earthy, regal Ifá-inspired palette
   Inspired by: CSS Zen Garden — "The Beauty of CSS Design"
   
   Design Principles Applied:
   • Complete separation of structure and presentation
   • Rich visual texture through layered backgrounds
   • Typography-driven design identity
   • Pseudo-element artistry (::before / ::after)
   • Ornamental section dividers
   • Responsive reflow across breakpoints
   • Subtle animations and transitions
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Color Palette — warm earthy tones */
    --color-bg: #1a1410;
    --color-bg-light: #2a1f17;
    --color-surface: #33271c;
    --color-surface-hover: #3d2f22;
    --color-primary: #c8973e;       /* Gold — Orisha radiance */
    --color-primary-dark: #a87a2a;
    --color-primary-light: #e0b85f;
    --color-accent: #8b4513;       /* Saddle brown — earth */
    --color-accent-light: #a0552e;
    --color-text: #f5ede0;
    --color-text-muted: #c4b8a8;
    --color-text-dark: #2a1f17;
    --color-border: #4a3828;
    --color-success: #5a7a3a;
    --color-danger: #a0392a;
    --color-white: #ffffff;
    --color-orisha-gold: rgba(200,151,62,0.12);
    --color-enso: rgba(200,151,62,0.06);

    /* Section-specific accent overlays */
    --color-about-tint: rgba(42, 31, 23, 0.5);
    --color-booking-tint: rgba(200, 151, 62, 0.03);
    --color-shop-tint: rgba(139, 69, 19, 0.04);
    --color-gallery-tint: rgba(200, 151, 62, 0.02);
    --color-contact-tint: rgba(42, 31, 23, 0.3);

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px rgba(200,151,62,0.15);
}

/* ---------- Reset (normalized) ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition), border-color var(--transition);
    border-bottom: 1px solid transparent;
}

a:hover {
    color: var(--color-primary-light);
    border-bottom-color: var(--color-primary-light);
}

ul {
    list-style: none;
}

::selection {
    background: var(--color-primary);
    color: var(--color-text-dark);
}

/* ---------- Utility ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.hidden {
    display: none !important;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

/* Ornamental divider above section headers — Zen Garden style */
.section-header::before {
    content: '✦ ✦ ✦';
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1.5em;
    color: var(--color-primary);
    opacity: 0.4;
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
}

.section-header:first-child::before {
    content: none;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
    position: relative;
    padding: 0 var(--space-sm);
}

/* Decorative line brackets around label — Zen Garden flourish */
.section-label::before,
.section-label::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.4;
    vertical-align: middle;
    margin: 0 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ---------- Ornamental Section Divider ---------- */
/* Each major section gets a subtle ornate top border */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.3;
}

.section:first-of-type::before {
    content: none;
}

/* Hero section gets no divider */
.hero::before,
.page-hero::before {
    content: none !important;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: var(--color-text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-surface);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
}

.btn-link {
    background: none;
    border: none;
    color: var(--color-text-muted);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-link:hover {
    color: var(--color-primary);
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 20, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(26, 20, 16, 0.96);
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--color-accent);
}

/* Top decorative line on header — Zen Garden detail */
.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--color-primary) 20%, var(--color-primary) 80%, transparent 95%);
    opacity: 0.5;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: none;
}

.nav-logo:hover {
    border-bottom: none;
}

.logo-mark {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: 2px;
    position: relative;
}

/* Orisha circle behind IFA mark — Zen Garden icon treatment */
.logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.nav-menu a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
    border-bottom: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
    border-radius: 1px;
}

.nav-menu a:hover {
    color: var(--color-primary);
    border-bottom: none;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-primary);
    color: var(--color-text-dark) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-sm);
    border-bottom: none !important;
}

.nav-cta::after {
    content: none !important;
}

.nav-cta:hover {
    background: var(--color-primary-light);
    border-bottom: none !important;
}

/* Active nav link */
.nav-menu a.nav-active {
    color: var(--color-primary);
}

.nav-menu a.nav-active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(160deg, #2a1f17 0%, #1a1410 40%, #0d0a08 100%);
    overflow: hidden;
}

/* Zen Garden multi-layer background texture */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 25% 20%, rgba(200,151,62,0.08) 0%, transparent 30%),
        radial-gradient(circle at 75% 40%, rgba(139,69,19,0.06) 0%, transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(200,151,62,0.05) 0%, transparent 40%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(200,151,62,0.02) 60px,
            rgba(200,151,62,0.02) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(200,151,62,0.02) 60px,
            rgba(200,151,62,0.02) 61px
        );
    z-index: 0;
}

/* Floating Orisha-inspired circle — like Zen Garden enso.svg */
.hero::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 300px;
    height: 300px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(26,20,16,0.2) 0%, rgba(26,20,16,0.6) 50%, rgba(26,20,16,0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--space-sm);
    animation: fadeInUp 1.2s ease;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.15;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* fadeInUp defined in Deep Zen Patterns section below */

/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
    background: linear-gradient(160deg, var(--color-bg) 0%, #2a1f17 50%, var(--color-bg) 100%);
    padding: calc(var(--space-xxl) + 60px) 0 var(--space-xl);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

/* Texture overlay for interior page heroes */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--color-bg), transparent);
    pointer-events: none;
}

.page-hero .section-label {
    display: block;
    color: var(--color-primary);
    font-family: var(--font-heading);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: var(--space-sm);
}

.page-hero .section-label::before,
.page-hero .section-label::after {
    width: 30px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.page-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- About ---------- */
.about {
    background: var(--color-bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--color-surface);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: var(--space-sm);
    position: relative;
    overflow: hidden;
}

/* Zen Garden decorative corner flourishes on image placeholder */
.about-image-placeholder::before,
.about-image-placeholder::after {
    content: '◈';
    position: absolute;
    font-size: 1.2rem;
    color: var(--color-primary);
    opacity: 0.3;
}
.about-image-placeholder::before {
    top: 8px;
    left: 8px;
}
.about-image-placeholder::after {
    bottom: 8px;
    right: 8px;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--color-primary-light);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.about-text p {
    margin-bottom: var(--space-sm);
    color: var(--color-text-muted);
}

.about-subheading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary);
    margin: var(--space-md) 0 var(--space-sm);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.about-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    position: relative;
    padding: 0 var(--space-sm);
}

/* Vertical divider between stats — Zen Garden column detail */
.stat + .stat::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--color-border);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ---------- Mission Cards ---------- */
.mission {
    background: var(--color-bg);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.mission-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient accent at bottom of cards — Zen Garden style */
.mission-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.mission-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.mission-card:hover::after {
    opacity: 1;
}

.mission-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.mission-card h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.mission-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mission-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: var(--space-xs);
}

/* ---------- Booking Engine ---------- */
.booking {
    background: var(--color-bg);
}

.booking-engine {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-bg-light);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    position: relative;
}

/* Decorative top accent on booking panel */
.booking-engine::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    border-radius: 1px;
}

.booking-step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    text-align: center;
}

.session-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-sm);
}

.session-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition);
}

.session-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.session-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.session-duration {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.session-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.session-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

/* Calendar */
.calendar-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.cal-nav {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition);
}

.cal-nav:hover {
    background: var(--color-primary);
    color: var(--color-text-dark);
}

.cal-month-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
    padding: 0.5rem 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text);
    background: var(--color-surface);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--color-surface-hover);
    border-color: var(--color-primary);
}

.cal-day.empty {
    background: transparent;
    cursor: default;
}

.cal-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cal-day.today {
    border-color: var(--color-primary);
    font-weight: 700;
}

.cal-day.selected {
    background: var(--color-primary);
    color: var(--color-text-dark);
    font-weight: 700;
}

/* Time slots */
.time-slots {
    margin-top: var(--space-md);
}

.time-slots h4 {
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.time-slot-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.time-slot {
    padding: 0.6rem 1.2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.9rem;
}

.time-slot:hover {
    border-color: var(--color-primary);
    background: var(--color-surface-hover);
    color: var(--color-primary-light);
}

.time-slot.selected {
    background: var(--color-primary);
    color: var(--color-text-dark);
    border-color: var(--color-primary);
}

/* Booking form */
.booking-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: var(--space-sm);
}

.form-row label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-orisha-gold);
}

.booking-summary {
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    margin: var(--space-sm) 0;
    border-left: 3px solid var(--color-primary);
}

.booking-summary p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.booking-summary strong {
    color: var(--color-primary);
}

/* Booking confirmation */
.booking-confirmation {
    text-align: center;
    padding: var(--space-lg);
}

.confirm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm);
    background: var(--color-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 0 30px rgba(90,122,58,0.3);
}

.booking-confirmation h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.confirm-note {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: var(--space-sm);
}

/* ---------- Shop / E-Commerce ---------- */
.shop {
    background: var(--color-bg-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.product-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--color-accent), var(--color-bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-align: center;
    padding: var(--space-sm);
    position: relative;
}

/* Pattern overlay on book placeholders — Zen Garden texture */
.product-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(200,151,62,0.03) 10px,
        rgba(200,151,62,0.03) 11px
    );
    pointer-events: none;
}

.product-info {
    padding: var(--space-sm);
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    min-height: 2.5em;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
}

.product-format {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background: var(--color-bg);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Cart FAB */
.cart-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    transition: all var(--transition);
}

.cart-fab:hover {
    transform: scale(1.1) rotate(-5deg);
}

.cart-icon {
    font-size: 1.5rem;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-danger);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart flyout */
.cart-flyout {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: var(--color-bg-light);
    border-left: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.cart-header h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.cart-close {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-sm);
}

.cart-item {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    color: var(--color-text);
}

.cart-item-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cart-item-price {
    color: var(--color-primary);
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--color-danger);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 0.5rem;
}

.cart-footer {
    padding: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.cart-total {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.cart-total span {
    color: var(--color-primary);
}

/* ---------- Gallery ---------- */
.gallery {
    background: var(--color-bg);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-text-dark);
    border-color: var(--color-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-sm);
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--color-surface);
    transition: all var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--color-primary);
    font-size: 2rem;
    background: linear-gradient(145deg, var(--color-accent), var(--color-bg-light));
    transition: all var(--transition);
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(145deg, var(--color-accent-light), var(--color-surface));
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-sm);
    background: linear-gradient(to top, rgba(26,20,16,0.92), transparent);
    color: var(--color-text);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-content {
    text-align: center;
    max-width: 80vw;
    max-height: 80vh;
}

.lightbox-content img {
    max-width: 80vw;
    max-height: 70vh;
    border-radius: var(--radius-md);
}

.lightbox-caption {
    color: white;
    margin-top: var(--space-sm);
    font-size: 1rem;
}

/* ---------- Newsletter ---------- */
.newsletter {
    background: var(--color-bg-light);
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient glow on newsletter box */
.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--color-orisha-gold), transparent 60%);
    pointer-events: none;
    opacity: 0.5;
}

.newsletter-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.newsletter-text p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-orisha-gold);
}

.newsletter-success {
    margin-top: var(--space-sm);
    color: var(--color-success);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ---------- Contact ---------- */
.contact {
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.contact-info p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.contact-details li {
    padding: 0.75rem 0;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-details strong {
    color: var(--color-text);
}

.contact-form {
    background: var(--color-bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.contact-success {
    margin-top: var(--space-sm);
    color: var(--color-success);
    font-weight: 500;
}

/* ---------- Home CTA Cards ---------- */
.home-cta {
    background: var(--color-surface);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.cta-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.cta-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    border-bottom-color: var(--color-primary);
}

.cta-card:hover::after {
    opacity: 1;
}

.cta-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.cta-card h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.25rem;
}

.cta-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #0d0a08;
    border-top: 1px solid var(--color-border);
    padding: var(--space-lg) 0 var(--space-sm);
    position: relative;
}

/* Top decorative line on footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.footer-col p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-bottom: none;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
    border-bottom: none;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE — Mobile / Tablet
   ============================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--color-bg-light);
        flex-direction: column;
        padding: var(--space-md);
        gap: var(--space-xs);
        transition: right var(--transition);
        border-left: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        padding: 0.8rem 0;
        width: 100%;
        text-align: right;
    }

    .section {
        padding: var(--space-lg) 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-header::before {
        font-size: 0.6rem;
        letter-spacing: 1em;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .about-stats {
        justify-content: center;
    }

    .stat + .stat::before {
        content: none;
    }

    .booking-engine {
        padding: var(--space-md) var(--space-sm);
        border-radius: var(--radius-md);
    }

    .session-cards {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .page-hero {
        padding-top: calc(var(--space-xl) + 60px);
    }

    .cart-flyout {
        width: 100vw;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 0.5rem;
    }

    .logo-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 550px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .logo-mark::after {
        width: 34px;
        height: 34px;
    }
}

/* ---------- High-DPI / Retina ---------- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero::before {
        background-image:
            radial-gradient(circle at 25% 20%, rgba(200,151,62,0.08) 0%, transparent 30%),
            radial-gradient(circle at 75% 40%, rgba(139,69,19,0.06) 0%, transparent 35%),
            radial-gradient(circle at 50% 80%, rgba(200,151,62,0.05) 0%, transparent 40%);
    }
}

/* ============================================
   DEEP ZEN PATTERNS — Inspired by diverse Garden designs
   • Garments 220  — staggered entrance animations, icon sprites
   • Apothecary 218 — ornamental borders, vintage decorative ::first-line
   • Screen Filler 217 — section-specific color blocking
   • Sakura 208 — per-section background imagery
   ============================================ */

/* ---------- Staggered Entrance Animations (inspired by Garments 220) ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Section entrance — each section, and its cards, fade in on scroll */
.section {
    animation: fadeInUp 0.8s ease both;
}

.home-cta .cta-card:nth-child(1) { animation: fadeInUp 0.6s ease 0.1s both; }
.home-cta .cta-card:nth-child(2) { animation: fadeInUp 0.6s ease 0.2s both; }
.home-cta .cta-card:nth-child(3) { animation: fadeInUp 0.6s ease 0.3s both; }

.mission-card:nth-child(1) { animation: fadeInUp 0.6s ease 0.1s both; }
.mission-card:nth-child(2) { animation: fadeInUp 0.6s ease 0.2s both; }
.mission-card:nth-child(3) { animation: fadeInUp 0.6s ease 0.3s both; }

.session-card:nth-child(1) { animation: fadeInUp 0.6s ease 0.1s both; }
.session-card:nth-child(2) { animation: fadeInUp 0.6s ease 0.2s both; }
.session-card:nth-child(3) { animation: fadeInUp 0.6s ease 0.3s both; }

.product-card:nth-child(1) { animation: fadeInUp 0.6s ease 0.05s both; }
.product-card:nth-child(2) { animation: fadeInUp 0.6s ease 0.1s both; }
.product-card:nth-child(3) { animation: fadeInUp 0.6s ease 0.15s both; }
.product-card:nth-child(4) { animation: fadeInUp 0.6s ease 0.2s both; }
.product-card:nth-child(5) { animation: fadeInUp 0.6s ease 0.25s both; }
.product-card:nth-child(6) { animation: fadeInUp 0.6s ease 0.3s both; }

.gallery-item { animation: scaleIn 0.5s ease both; }
.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }
.gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-item:nth-child(8) { animation-delay: 0.4s; }
.gallery-item:nth-child(9) { animation-delay: 0.45s; }
.gallery-item:nth-child(10) { animation-delay: 0.5s; }
.gallery-item:nth-child(11) { animation-delay: 0.55s; }
.gallery-item:nth-child(12) { animation-delay: 0.6s; }

/* ---------- Section-Specific Decorative Backgrounds (inspired by Sakura 208) ---------- */

/* Booking section — subtle radial pattern */
.booking::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 15% 85%, var(--color-booking-tint) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, var(--color-booking-tint) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Shop section — subtle product pattern */
.shop::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, var(--color-shop-tint) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Gallery section — subtle light burst */
.gallery::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 50% 30%, var(--color-gallery-tint) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Contact section — subtle gradient */
.contact::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, var(--color-contact-tint) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure content sits above decorative backgrounds */
.booking > .container,
.shop > .container,
.gallery > .container,
.contact > .container,
.newsletter > .container {
    position: relative;
    z-index: 1;
}

/* ---------- Decorative ::first-line styling (inspired by Apothecary 218) ---------- */
.about-text p:first-of-type::first-line {
    font-family: var(--font-heading);
    font-size: 1.1em;
    letter-spacing: 0.5px;
    color: var(--color-primary-light);
}

.booking-summary p:first-of-type::first-line {
    color: var(--color-primary);
    font-weight: 600;
}

/* ---------- Apothecary-style ornamental bottom border for major sections ---------- */
.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--color-primary) 20%, var(--color-primary) 80%, transparent 95%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.section:hover::after {
    opacity: 0.2;
}

/* Remove bottom ornament for hero, page-hero, footer */
.hero::after,
.page-hero::after,
.site-footer::after {
    content: none !important;
}
