/* === LUMAE AESTHETICS AND WELLNESS — Brand CSS v1.0 === */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --sage: #354230;
  --gold: #C2714F;
  --gold-bright: #E0A458;
  --cream: #FBF4E6;
  --cream-dark: #F1E3CB;
  --charcoal: #251E18;
  --ice: #EDE4D6;
  --radius: 12px;
  --ease: 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--cream); color: var(--charcoal); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Nav --- */
.nav-bar { position: sticky; top: 0; z-index: 100; background: var(--cream); border-bottom: 1px solid var(--cream-dark); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 82px; }
.nav-logo { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.nav-logo img { height: 56px; width: auto; flex-shrink: 0; display: block; }
.nav-logo-text { display: flex; flex-direction: column; gap: 0.18rem; }
.nav-logo-name { font-family: 'Inter', sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: 0.22em; color: #111; text-transform: uppercase; line-height: 1; }
.nav-logo-tagline { font-family: 'Inter', sans-serif; font-size: 0.46rem; font-weight: 600; letter-spacing: 0.4em; color: #444; text-transform: uppercase; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--charcoal); letter-spacing: 0.04em; transition: color var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--sage); }
.btn-book { background: var(--gold) !important; color: var(--charcoal) !important; padding: 0.55rem 1.35rem !important; border-radius: 100px; font-weight: 600 !important; font-size: 0.85rem !important; transition: background var(--ease), transform var(--ease) !important; }
.btn-book:hover { background: var(--gold-bright) !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: var(--ease); }
.mobile-nav { display: none; background: var(--cream); border-top: 1px solid var(--cream-dark); padding: 1.25rem 2rem; flex-direction: column; gap: 1rem; }
.mobile-nav a { font-size: 1rem; font-weight: 500; color: var(--charcoal); padding: 0.5rem 0; border-bottom: 1px solid var(--cream-dark); }
.mobile-nav.open { display: flex; }
@media (max-width: 768px) { .nav-links { display: none; } .nav-toggle { display: block; } .nav-inner { height: 72px; } .nav-logo img { height: 44px; } }

/* --- Buttons --- */
.btn-primary { display: inline-block; background: var(--gold); color: var(--charcoal); font-weight: 700; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 100px; letter-spacing: 0.03em; border: none; cursor: pointer; transition: background var(--ease), transform var(--ease), box-shadow var(--ease); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194,113,79,0.4); }
.btn-outline { display: inline-block; background: transparent; color: var(--cream); font-weight: 600; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 100px; border: 2px solid rgba(255,255,255,0.4); cursor: pointer; transition: border-color var(--ease), color var(--ease); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sage { display: inline-block; background: var(--sage); color: var(--cream); font-weight: 600; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 100px; border: none; cursor: pointer; transition: opacity var(--ease), transform var(--ease); }
.btn-sage:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-white { display: inline-block; background: white; color: var(--sage); font-weight: 700; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 100px; border: none; cursor: pointer; transition: transform var(--ease), box-shadow var(--ease); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--sage); margin-bottom: 0.75rem; }
.section-sub { font-size: 1.05rem; color: #6D6455; max-width: 600px; margin-bottom: 3rem; line-height: 1.7; }
.divider { height: 1px; background: var(--cream-dark); }

/* --- Hero (Full) --- */
.hero { background: var(--sage); color: var(--cream); padding: 7rem 2rem 7rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 75% 40%, rgba(194,113,79,0.14) 0%, transparent 60%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hero-content { position: relative; }
.hero-brand { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem; }
.hero-brand-logo { width: 100%; max-width: 220px; height: auto; }
.hero-brand-text { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.hero-brand-name { font-family: 'Inter', sans-serif; font-size: 2.6rem; font-weight: 800; letter-spacing: 0.28em; color: var(--cream); text-transform: uppercase; line-height: 1; }
.hero-brand-tagline { font-family: 'Inter', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.5em; color: rgba(251,244,230,0.7); text-transform: uppercase; line-height: 1; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; } .hero-brand { order: -1; } .hero-brand-logo { max-width: 140px; } }
.hero-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; border: 1px solid rgba(194,113,79,0.45); padding: 0.35rem 1rem; border-radius: 100px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.08; margin-bottom: 1.5rem; color: var(--cream); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.1rem; color: rgba(251,244,230,0.78); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-meta { display: flex; gap: 2rem; margin-top: 3.5rem; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(251,244,230,0.55); }
.hero-meta-item strong { color: rgba(251,244,230,0.9); }

/* --- Hero (Small — inner pages) --- */
.hero-sm { background: var(--sage); padding: 5.5rem 2rem 4.5rem; position: relative; overflow: hidden; }
.hero-sm::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(194,113,79,0.1) 0%, transparent 60%); pointer-events: none; }
.hero-sm .container { position: relative; }
.breadcrumb { font-size: 0.78rem; color: rgba(251,244,230,0.45); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--gold); }
.hero-sm h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--cream); margin-bottom: 0.9rem; }
.hero-sm p { color: rgba(251,244,230,0.72); font-size: 1.05rem; max-width: 580px; line-height: 1.7; }
.hero-sm .hero-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; border: 1px solid rgba(194,113,79,0.4); padding: 0.3rem 0.9rem; border-radius: 100px; }

/* --- Hero Shell Watermark --- */
.hero-visual { position: absolute; right: -2rem; top: 50%; transform: translateY(-50%); width: min(52%, 640px); opacity: 0.18; pointer-events: none; user-select: none; display: block; filter: grayscale(1) brightness(2); }
.hero-sm .hero-visual { display: none; }
@media (max-width: 900px) { .hero-visual { width: 240px; opacity: 0.08; } }

/* --- Service Cards --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.5rem; }
.service-card { background: white; border-radius: var(--radius); padding: 2rem; border-top: 3px solid var(--gold); transition: transform var(--ease), box-shadow var(--ease); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(53,66,48,0.13); }
.service-card-icon { width: 50px; height: 50px; background: var(--cream-dark); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.25rem; color: var(--sage); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.88rem; color: #7A6E60; line-height: 1.65; margin-bottom: 1.25rem; }
.card-link { font-size: 0.83rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap var(--ease); }
.card-link:hover { gap: 0.6rem; }
.card-link::after { content: '→'; }

/* --- Pricing Table --- */
.pricing-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(53,66,48,0.09); }
.pricing-table thead { background: var(--sage); color: var(--cream); }
.pricing-table th { padding: 1rem 1.25rem; text-align: left; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Inter', sans-serif; }
.pricing-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--cream-dark); font-size: 0.92rem; vertical-align: top; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover td { background: #FFFCF3; }
.price-cell { font-weight: 700; color: var(--sage); font-size: 1rem; white-space: nowrap; }
.highlight-row td { background: var(--ice) !important; }
.additive-tag { display: inline-block; font-size: 0.72rem; background: var(--cream-dark); color: var(--sage); padding: 0.15rem 0.55rem; border-radius: 6px; margin: 0.15rem 0.1rem; white-space: nowrap; }

/* --- Drip Builder --- */
.drip-builder { background: white; border-radius: 16px; padding: 2.5rem; box-shadow: 0 8px 32px rgba(53,66,48,0.1); border: 1px solid var(--cream-dark); }
.drip-builder h3 { font-size: 1.75rem; color: var(--sage); margin-bottom: 0.4rem; }
.drip-subtitle { color: #7A6E60; font-size: 0.9rem; margin-bottom: 1.75rem; }
.drip-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); margin-bottom: 0.6rem; display: block; }
.drip-select { width: 100%; padding: 0.85rem 1rem; border: 2px solid var(--cream-dark); border-radius: 10px; background: white; font-family: 'Inter', sans-serif; font-size: 0.94rem; color: var(--charcoal); outline: none; transition: border-color var(--ease); margin-bottom: 1.5rem; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23354230' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.drip-select:focus { border-color: var(--gold); }
.addon-row { display: flex; align-items: center; justify-content: space-between; background: var(--cream); border-radius: 10px; padding: 0.9rem 1.1rem; margin-bottom: 0.65rem; border: 2px solid transparent; transition: border-color var(--ease), background var(--ease); }
.addon-row.on { border-color: var(--gold); background: #FCF5E9; }
.addon-name { font-size: 0.92rem; font-weight: 500; }
.addon-desc { font-size: 0.78rem; color: #A89C8D; }
.addon-toggle { padding: 0.38rem 1rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600; border: none; cursor: pointer; transition: all var(--ease); background: var(--cream-dark); color: var(--charcoal); }
.addon-toggle.on { background: var(--gold); color: white; }
.drip-total { margin-top: 1.75rem; background: var(--sage); border-radius: 14px; padding: 1.75rem; text-align: center; }
.drip-total-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,244,230,0.55); margin-bottom: 0.3rem; }
.drip-total-amount { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.drip-total-note { font-size: 0.78rem; color: rgba(251,244,230,0.5); margin-top: 0.5rem; }

/* --- Membership Band --- */
.membership-band { background: var(--cream-dark); border-radius: var(--radius); padding: 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; border-left: 4px solid var(--gold); }
.membership-band h3 { font-size: 1.55rem; color: var(--sage); margin-bottom: 0.4rem; }
.membership-band p { color: #6D6455; font-size: 0.92rem; line-height: 1.65; }
.price-box { text-align: center; min-width: 150px; }
.price-was { font-size: 0.85rem; color: #A89C8D; text-decoration: line-through; }
.price-now { font-family: 'Playfair Display', serif; font-size: 3.2rem; color: var(--sage); line-height: 1; }
.price-mo { font-size: 0.78rem; color: #7A6E60; }

/* --- Founding Member CTA --- */
.founding-cta { background: linear-gradient(135deg, #45503A 0%, var(--sage) 100%); border-radius: 18px; padding: 3.5rem; text-align: center; color: var(--cream); }
.founding-cta h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 0.75rem; }
.founding-cta .gold { color: var(--gold); }
.founding-cta p { color: rgba(251,244,230,0.75); margin-bottom: 2rem; font-size: 1rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.founding-spots { display: inline-block; font-size: 0.78rem; font-weight: 600; color: var(--gold); border: 1px solid rgba(194,113,79,0.45); padding: 0.3rem 1rem; border-radius: 100px; margin-bottom: 1.5rem; }
.email-form { display: flex; gap: 0.75rem; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.email-form input { flex: 1; min-width: 200px; padding: 0.85rem 1.25rem; border-radius: 100px; border: none; font-family: 'Inter', sans-serif; font-size: 0.94rem; outline: none; }

/* --- Location Band --- */
.location-band { background: var(--sage); padding: 4.5rem 2rem; text-align: center; color: var(--cream); }
.location-band .loc-tag { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.location-band h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 0.75rem; }
.location-band p { color: rgba(251,244,230,0.65); font-size: 0.95rem; }

/* --- Telehealth Cards --- */
.tele-card { background: white; border-radius: var(--radius); padding: 2rem; box-shadow: 0 4px 20px rgba(53,66,48,0.08); border-left: 4px solid var(--gold); margin-bottom: 1.5rem; }
.tele-card h3 { font-size: 1.35rem; color: var(--sage); margin-bottom: 0.5rem; }
.tele-card .tele-price { font-size: 0.82rem; font-weight: 600; color: #8A5433; background: rgba(194,113,79,0.15); padding: 0.2rem 0.75rem; border-radius: 100px; display: inline-block; margin-bottom: 0.9rem; }
.tele-card p { font-size: 0.92rem; color: #7A6E60; line-height: 1.7; }
.tele-card ul { margin-top: 0.75rem; padding-left: 1.25rem; }
.tele-card ul li { font-size: 0.88rem; color: #7A6E60; margin-bottom: 0.3rem; }

/* --- Goal Quiz --- */
.quiz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.quiz-opt { background: white; border: 2px solid var(--cream-dark); border-radius: 14px; padding: 1.75rem 1.25rem; text-align: center; cursor: pointer; transition: border-color var(--ease), transform var(--ease); }
.quiz-opt:hover { border-color: var(--gold); transform: translateY(-2px); }
.quiz-opt.sel { border-color: var(--gold); background: #FDF7EC; }
.quiz-opt .qicon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.quiz-opt .qlabel { font-size: 0.88rem; font-weight: 600; color: var(--sage); }
.quiz-result-box { background: var(--sage); color: var(--cream); border-radius: 14px; padding: 2rem; text-align: center; }
.quiz-result-box h4 { font-size: 1.4rem; color: var(--gold); margin-bottom: 0.5rem; }
.quiz-result-box p { font-size: 0.92rem; opacity: 0.8; margin-bottom: 1.5rem; }

/* --- Conditions --- */
.conditions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 0.85rem; }
.condition-chip { background: var(--ice); border-radius: 10px; padding: 0.75rem 1rem; font-size: 0.88rem; font-weight: 500; color: var(--sage); text-align: center; border: 1px solid rgba(53,66,48,0.1); }

/* --- Ketamine Lounge --- */
.lounge-card { background: linear-gradient(135deg, var(--sage) 0%, #262E21 100%); border-radius: 16px; padding: 3rem; color: var(--cream); }
.lounge-card h3 { font-size: 1.7rem; color: var(--gold); margin-bottom: 1rem; }
.lounge-card ul { list-style: none; }
.lounge-card li { padding: 0.5rem 0 0.5rem 1.5rem; position: relative; font-size: 0.92rem; color: rgba(251,244,230,0.82); }
.lounge-card li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.65rem; top: 0.75rem; }
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .price-cards { grid-template-columns: 1fr; } }
.price-card { background: white; border-radius: var(--radius); padding: 2rem; border-top: 3px solid var(--gold); text-align: center; }
.price-card h4 { font-size: 1.05rem; color: var(--sage); margin-bottom: 0.5rem; }
.price-card .amount { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--sage); line-height: 1; margin: 0.5rem 0; }
.price-card p { font-size: 0.82rem; color: #A89C8D; }

/* --- Steps --- */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.step-item { text-align: center; }
.step-num { width: 52px; height: 52px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: white; }
.step-item h4 { font-size: 1.05rem; color: var(--sage); margin-bottom: 0.4rem; }
.step-item p { font-size: 0.88rem; color: #7A6E60; }

/* --- Badge / Tags --- */
.badge { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.85rem; border-radius: 100px; }
.badge-gold { background: rgba(194,113,79,0.18); color: #8A5527; }
.badge-sage { background: rgba(53,66,48,0.1); color: var(--sage); }
.badge-ice { background: var(--ice); color: #6B5C42; }

/* --- Info Split --- */
.info-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .info-split { grid-template-columns: 1fr; gap: 2rem; } }

/* --- Footer --- */
.footer { background: var(--sage); color: var(--cream); padding: 2rem 2rem 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: start; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name { font-family: 'Inter', sans-serif; font-size: 1.0rem; font-weight: 800; letter-spacing: 0.22em; color: var(--cream); text-transform: uppercase; line-height: 1; margin-bottom: 0.3rem; }
.footer-brand-tagline { font-family: 'Inter', sans-serif; font-size: 0.45rem; font-weight: 600; letter-spacing: 0.4em; color: rgba(251,244,230,0.6); text-transform: uppercase; line-height: 1; margin-bottom: 1rem; }
.footer-brand-sub { font-size: 0.82rem; color: rgba(251,244,230,0.55); line-height: 1.6; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(251,244,230,0.62); margin-bottom: 0.6rem; transition: color var(--ease); }
.footer-col a:hover { color: var(--cream); }
.social-row { display: flex; gap: 0.65rem; margin-top: 1.1rem; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; transition: background var(--ease); }
.social-icon:hover { background: var(--gold); }
.footer-legal { max-width: 1200px; margin: 2rem auto 0; font-size: 0.7rem; color: rgba(251,244,230,0.38); line-height: 1.75; }
.footer-legal strong { color: rgba(251,244,230,0.58); }
.footer-bottom { max-width: 1200px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; color: rgba(251,244,230,0.35); flex-wrap: wrap; gap: 0.5rem; }
.footer-legal-links { max-width: 1200px; margin: 1.75rem auto 0; display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; font-size: 0.73rem; }
.footer-legal-links a { color: rgba(251,244,230,0.42); transition: color var(--ease); }
.footer-legal-links a:hover { color: var(--gold); }
.footer-legal-links span { color: rgba(251,244,230,0.18); }

/* --- Legal Content Pages --- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.25rem; color: var(--sage); margin: 2.5rem 0 0.75rem; padding-top: 1.75rem; border-top: 1px solid var(--cream-dark); font-family: 'Playfair Display', serif; }
.legal-content h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 { font-size: 0.97rem; color: var(--sage); margin: 1.5rem 0 0.4rem; font-family: 'Inter', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.legal-content p { color: #574F44; font-size: 0.93rem; line-height: 1.82; margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { margin: 0.25rem 0 1rem 1.5rem; }
.legal-content li { color: #574F44; font-size: 0.93rem; line-height: 1.82; margin-bottom: 0.4rem; }
.legal-content .effective-date { font-size: 0.82rem; color: #A89C8D; margin-bottom: 2.5rem; display: block; }
.legal-content .notice-box { background: var(--ice); border-left: 3px solid var(--sage); border-radius: 8px; padding: 1rem 1.25rem; font-size: 0.88rem; color: #7D6A4F; line-height: 1.7; margin: 1.5rem 0; }
.legal-content .notice-box strong { color: var(--sage); }

/* --- Responsive --- */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .hero { padding: 6rem 1.5rem 5rem; }
  .hero-sm { padding: 4rem 1.5rem 3.5rem; }
  .container { padding: 0 1.25rem; }
  .email-form { flex-direction: column; }
  .membership-band { flex-direction: column; text-align: center; }
}
