:root {
  --tidal: #2B4F72;
  --seafoam: #7BB8D4;
  --sage: #8B9E7C;
  --sage-light: #A8B89C;
  --sage-dark: #6B7D5E;
  --driftwood: #C9A96E;
  --deep-blue: #1A3A5C;
  --slate: #1E2A3A;
  --shore: #F4F8FC;
  --white: #F9FBFE;
  --bg: #F9FBFE;
  --cream: #F9FBFE;
  --rule: rgba(139,158,124,0.3);
  --rule-light: rgba(43,79,114,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

body {
  font-family: 'Karla', sans-serif;
  color: var(--slate);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  animation: pageIn 0.6s ease both;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }

.column { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.column--narrow { max-width: 680px; margin: 0 auto; padding: 0 40px; }
.column--wide { max-width: 1060px; margin: 0 auto; padding: 0 40px; }

hr { border: none; height: 1px; background: var(--rule); margin: 0; }
hr.light { background: var(--rule-light); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* SPACING — tightened from originals */
.space-200 { height: 120px; }
.space-160 { height: 100px; }
.space-120 { height: 80px; }
.space-100 { height: 60px; }
.space-80 { height: 56px; }
.space-60 { height: 40px; }
.space-40 { height: 32px; }

/* UTILITIES */
.text-center { text-align: center; }
.lead { font-size: 1.05rem; color: var(--tidal); max-width: 560px; margin: 0 auto; line-height: 1.8; font-weight: 300; }

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(249,251,254,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--slate); text-decoration: none; letter-spacing: 0.01em; }
.logo span { color: var(--sage); }

.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--slate); font-size: 0.8rem; font-weight: 400; letter-spacing: 0.03em; transition: color 0.2s; }
.nav-links a:hover { color: var(--sage); }
.nav-links a.active { color: var(--sage); font-weight: 500; }
.nav-cta { font-weight: 500 !important; color: var(--white) !important; background: var(--sage); padding: 8px 20px; border-radius: 3px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--sage-dark) !important; color: var(--white) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--slate); margin: 5px 0; transition: 0.3s; }

/* HERO (landing) */
.hero {
  background: var(--deep-blue);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,158,124,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 { font-size: 5rem; font-weight: 400; color: #fff; letter-spacing: -0.02em; line-height: 1.08; max-width: 820px; margin-bottom: 32px; position: relative; z-index: 2; }
.hero h1 em { font-style: italic; color: var(--sage-light); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 540px; line-height: 1.75; font-weight: 300; letter-spacing: 0.02em; margin-bottom: 48px; position: relative; z-index: 2; }

/* Hero variants for modified landing */
.hero-content { position: relative; z-index: 2; }
.hero-buttons { display: flex; gap: 20px; align-items: center; justify-content: center; margin-top: 48px; margin-bottom: 120px; flex-wrap: wrap; }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 120px; z-index: 1; }

/* PAGE HERO (subpages) */
.page-hero {
  background: var(--deep-blue);
  padding: 120px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,158,124,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 { font-size: 3.8rem; font-weight: 400; color: #fff; letter-spacing: -0.02em; line-height: 1.08; max-width: 700px; margin: 0 auto 24px; position: relative; z-index: 2; }
.page-hero h1 em { font-style: italic; color: var(--sage-light); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.68); max-width: 500px; margin: 0 auto; line-height: 1.75; font-weight: 300; position: relative; z-index: 2; }
.page-hero .wave,
.page-hero .hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 80px; z-index: 1; }

/* BUTTONS */
.btn-primary { font-family: 'Karla', sans-serif; background: var(--sage); color: #fff; padding: 14px 36px; text-decoration: none; font-weight: 500; font-size: 0.88rem; letter-spacing: 0.05em; transition: all 0.3s; border: 1px solid var(--sage); display: inline-block; border-radius: 3px; }
.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.btn-secondary { font-family: 'Karla', sans-serif; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; font-weight: 400; letter-spacing: 0.05em; transition: color 0.3s; }
.btn-secondary:hover { color: #fff; }
.btn-cta { font-family: 'Karla', sans-serif; display: inline-block; background: var(--sage); color: #fff; padding: 16px 44px; text-decoration: none; font-weight: 500; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.3s; border-radius: 3px; }
.btn-cta:hover { background: var(--sage-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(139,158,124,0.3); }
.btn-outline { font-family: 'Karla', sans-serif; display: inline-block; background: transparent; color: var(--sage); padding: 16px 44px; text-decoration: none; font-weight: 500; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.3s; border: 1px solid var(--sage); margin-left: 16px; border-radius: 3px; }
.btn-outline:hover { background: var(--sage); color: #fff; transform: translateY(-1px); }

/* SECTIONS */
.section { max-width: 1060px; margin: 0 auto; padding: 0 40px; }
.section-center { text-align: center; }
.section-intro { font-size: 1.05rem; color: var(--tidal); max-width: 560px; line-height: 1.8; font-weight: 300; }
.section-center .section-intro { margin: 0 auto; }
.section-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.section-center .section-cta { justify-content: center; }
.section-note { font-size: 0.9rem; color: var(--tidal); font-weight: 300; }
.section-note strong { font-weight: 500; color: var(--slate); }
.section-note a { color: var(--sage); text-decoration: none; }
.section-note a:hover { color: var(--sage-dark); }
.section-center .section-note { text-align: center; }

/* SECTION HEADERS */
.section-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--sage); margin-bottom: 20px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 400; color: var(--slate); line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.01em; }
.section-desc { font-size: 1rem; color: var(--tidal); max-width: 520px; line-height: 1.8; font-weight: 300; }

/* CTA CENTER (IV drips page) */
.cta-center { text-align: center; margin-top: 48px; }

/* PILLARS GRID */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar-card { text-align: center; padding: 40px 24px; border: 1px solid var(--rule-light); transition: border-color 0.3s, box-shadow 0.3s; }
.pillar-card:hover { border-color: var(--sage-light); box-shadow: 0 4px 20px rgba(43,79,114,0.06); }
.pillar-card h3,
.pillar-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--slate); margin-bottom: 12px; }
.pillar-card p { font-size: 0.88rem; color: var(--tidal); line-height: 1.7; font-weight: 300; }

/* EDITORIAL FRAME */
.editorial-frame { border: 1px solid var(--rule); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; background: var(--shore); overflow: hidden; }
.editorial-frame span { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.4rem; color: rgba(43,79,114,0.15); letter-spacing: 0.05em; z-index: 1; }
.editorial-frame svg.wave-pattern { position: absolute; bottom: 20%; left: 10%; width: 80%; opacity: 0.06; }
.editorial-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* PAGE HERO IMAGE */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

/* SECTION IMAGE (standalone photo block) */
.section-image { width: 100%; border: 1px solid var(--rule); overflow: hidden; }
.section-image img { width: 100%; height: auto; display: block; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

/* SERVICE LIST */
.service-list { list-style: none; margin-top: 40px; }
.service-list li { padding: 24px 0; border-bottom: 1px solid var(--rule-light); display: flex; justify-content: space-between; align-items: baseline; }
.service-list li:first-child { border-top: 1px solid var(--rule-light); }
.service-list li > span:last-child { font-weight: 700; }
.service-list h3,
.service-list h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--slate); margin-bottom: 6px; }
.service-list p { font-size: 0.9rem; color: var(--tidal); line-height: 1.7; font-weight: 300; }
.service-list .price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--sage); margin-top: 4px; }

/* Simple service list (name + price inline) */
.service-list.simple { margin-top: 0; }
.service-list.simple li { padding: 12px 0; display: list-item; font-size: 0.95rem; color: var(--slate); font-weight: 400; }
.service-list.simple li strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; margin-bottom: 4px; }
.service-list.simple li p { margin-top: 4px; }

/* CATALOG */
.catalog { list-style: none; max-width: 680px; margin: 0 auto; }
.catalog > li { padding: 36px 0; border-bottom: 1px solid var(--rule); }
.catalog > li:first-child { border-top: 1px solid var(--rule); }
.catalog > li h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--slate); margin-bottom: 8px; line-height: 1.3; }
.catalog > li h3 span { font-family: 'Karla', sans-serif; font-size: 0.75rem; font-weight: 400; color: var(--tidal); letter-spacing: 0.02em; }
.catalog > li p { font-size: 0.9rem; color: var(--tidal); line-height: 1.7; font-weight: 300; margin-top: 6px; }
.catalog > li .price { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--sage); display: block; margin-top: 8px; }
.catalog > li .price span { font-family: 'Karla', sans-serif; font-size: 0.82rem; font-weight: 300; color: var(--tidal); }
.catalog-num { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-weight: 400; color: var(--sage); display: block; margin-bottom: 4px; letter-spacing: 0.05em; }

.catalog-item { display: grid; grid-template-columns: 56px 1fr; gap: 0 24px; padding: 32px 0; border-bottom: 1px solid var(--rule); }
.catalog-item:first-child { border-top: 1px solid var(--rule); }
.catalog-number { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--sage); line-height: 1.3; }
.catalog-content h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; color: var(--slate); margin-bottom: 6px; line-height: 1.3; }
.catalog-content p { font-size: 0.9rem; color: var(--tidal); line-height: 1.7; font-weight: 300; }
.catalog-content .price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--sage); margin-top: 6px; }

/* DIVIDER SECTION */
.divider-section { max-width: 680px; margin: 0 auto; padding: 80px 40px; text-align: center; }
.divider-section .cafe-rule { margin-bottom: 48px; }
.divider-section .cafe-rule:last-child { margin-top: 48px; margin-bottom: 0; }
.tags { font-size: 0.82rem; font-weight: 400; letter-spacing: 0.04em; color: var(--tidal); text-align: center; margin-top: 24px; }

/* FINAL CTA */
.final-cta { max-width: 680px; margin: 0 auto; padding: 80px 40px; text-align: center; background: var(--shore); border: 1px solid var(--rule-light); }
.final-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 400; font-style: italic; color: var(--slate); letter-spacing: -0.01em; }
.final-cta .section-cta { justify-content: center; }

.cafe-rule { display: block; width: 60px; height: 1px; background: var(--sage); margin: 0 auto; }
.cafe-title { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 400; color: var(--slate); text-align: center; letter-spacing: -0.02em; line-height: 1.05; }
.cafe-title em { font-style: italic; }
.cafe-body { max-width: 500px; margin: 0 auto; text-align: center; font-size: 1rem; color: var(--tidal); line-height: 1.85; font-weight: 300; }
.cafe-tags { text-align: center; font-size: 0.82rem; font-weight: 400; letter-spacing: 0.04em; color: var(--tidal); }

/* DRIP GRID */
.drip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.drip-card { border: 1px solid var(--rule); padding: 32px 28px; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; }
.drip-card:hover { border-color: var(--sage-light); box-shadow: 0 6px 24px rgba(43,79,114,0.07); transform: translateY(-2px); }
.drip-card h3,
.drip-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--slate); margin-bottom: 4px; }
.drip-card .drip-nick { font-size: 0.78rem; font-style: italic; color: var(--sage); margin-bottom: 12px; }
.drip-card p { font-size: 0.88rem; color: var(--tidal); line-height: 1.7; font-weight: 300; }
.drip-card .price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--sage); margin-top: 12px; }
.drip-card .ingredients { font-size: 0.78rem; color: var(--tidal); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--rule-light); font-weight: 300; line-height: 1.6; }
.drip-card .ingredients strong { font-weight: 500; color: var(--slate); }
.drip-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--sage); display: block; margin-top: 12px; }

/* INJECTION GRID */
.injection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.injection-item { padding: 20px 24px; border: 1px solid var(--rule-light); transition: border-color 0.3s, box-shadow 0.3s; }
.injection-item:hover { border-color: var(--sage-light); box-shadow: 0 2px 12px rgba(43,79,114,0.05); }
.injection-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--slate); margin-bottom: 4px; }
.injection-item p { font-size: 0.82rem; color: var(--tidal); line-height: 1.6; font-weight: 300; }

/* MEMBERSHIP TABLE (index.html table version) */
.membership-table { width: 100%; border-collapse: collapse; }
.membership-table table { width: 100%; border-collapse: collapse; }
.membership-table thead th { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--tidal); text-align: left; padding: 0 16px 16px; border-bottom: 1px solid var(--slate); }
.membership-table thead th:last-child { text-align: right; }
.membership-table tbody tr { border-bottom: 1px solid var(--rule-light); }
.membership-table tbody tr.featured { background: rgba(139,158,124,0.06); }
.membership-table tbody td { padding: 28px 16px; vertical-align: top; }
.membership-table .plan-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--slate); white-space: nowrap; }
.membership-table .plan-features { font-size: 0.88rem; color: var(--tidal); line-height: 1.75; font-weight: 300; }
.membership-table .plan-price { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--slate); text-align: right; white-space: nowrap; }
.membership-table .plan-price span { font-family: 'Karla', sans-serif; font-size: 0.8rem; font-weight: 300; color: var(--tidal); }

/* MEMBERSHIP CARDS (subpages: wellness, medical) */
.membership-card { border: 1px solid var(--rule); padding: 36px 32px; margin-bottom: 24px; transition: border-color 0.3s, box-shadow 0.3s; position: relative; }
.membership-card:hover { border-color: var(--sage-light); box-shadow: 0 4px 20px rgba(43,79,114,0.06); }
.membership-card.featured { border-color: var(--sage); background: rgba(139,158,124,0.04); }
.membership-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--slate); margin-bottom: 8px; }
.membership-card .price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--sage); margin-bottom: 20px; display: block; }
.membership-card .price span { font-family: 'Karla', sans-serif; font-size: 0.85rem; font-weight: 300; color: var(--tidal); }
.membership-card ul { list-style: none; }
.membership-card ul li { font-size: 0.9rem; color: var(--tidal); padding: 8px 0; border-bottom: 1px solid var(--rule-light); font-weight: 300; line-height: 1.6; }
.membership-card ul li:last-child { border-bottom: none; }

/* Grid for membership cards on medical page */
.membership-table:has(.membership-card) { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* BADGE */
.badge { display: inline-block; font-family: 'Karla', sans-serif; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage-dark); border: 1px solid var(--sage); padding: 3px 10px; border-radius: 2px; margin-bottom: 12px; }

/* NOTE */
.note { font-size: 0.82rem; color: var(--tidal); font-weight: 300; font-style: italic; margin-top: 16px; }

/* BUNDLES */
.bundle-grid,
.bundles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.bundle-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--sage); display: block; margin-bottom: 12px; }
.bundle-card { border: 1px solid var(--rule); padding: 36px 32px; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; }
.bundle-card:hover { border-color: var(--sage-light); box-shadow: 0 6px 24px rgba(43,79,114,0.07); transform: translateY(-2px); }
.bundle-card h3,
.bundle-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--slate); margin-bottom: 8px; }
.bundle-card .bundle-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--sage); margin-bottom: 16px; }
.bundle-card .bundle-price span,
.bundle-card .price span { font-family: 'Karla', sans-serif; font-size: 0.8rem; font-weight: 300; color: var(--tidal); }
.bundle-card .price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--sage); display: block; margin-bottom: 16px; }
.bundle-card p { font-size: 0.88rem; color: var(--tidal); line-height: 1.7; font-weight: 300; }
.bundle-card ul { list-style: none; margin: 12px 0; }
.bundle-card ul li { font-size: 0.88rem; color: var(--tidal); padding: 6px 0; font-weight: 300; padding-left: 16px; position: relative; }
.bundle-card ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 1px; background: var(--sage); }
.bundle-note { font-size: 0.78rem; color: var(--tidal); font-style: italic; margin-top: 12px; line-height: 1.6; font-weight: 300; }

/* QUOTE */
.quote-block { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-style: italic; font-weight: 400; color: var(--slate); line-height: 1.35; text-align: center; max-width: 640px; margin: 0 auto; letter-spacing: -0.01em; }
.quote-attr { text-align: center; font-size: 0.82rem; color: var(--sage); margin-top: 20px; font-weight: 500; letter-spacing: 0.05em; display: block; }

/* PROVIDER */
.provider-creds { list-style: none; margin-top: 24px; }
.provider-creds li { font-size: 0.88rem; color: var(--tidal); padding: 10px 0; border-bottom: 1px solid var(--rule-light); font-weight: 300; }
.provider-creds li:first-child { border-top: 1px solid var(--rule-light); }

/* CTA SECTION */
.cta-section { text-align: center; max-width: 680px; margin: 0 auto; padding: 0 40px; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 400; font-style: italic; color: var(--slate); margin-bottom: 20px; letter-spacing: -0.01em; }
.cta-body { font-size: 1rem; color: var(--tidal); max-width: 440px; margin: 0 auto 40px; font-weight: 300; line-height: 1.8; }
.cta-buttons { display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h3,
.contact-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--slate); margin-bottom: 8px; }
.contact-info p { font-size: 0.9rem; color: var(--tidal); line-height: 1.8; font-weight: 300; margin-bottom: 4px; }
.contact-info a { color: var(--sage); text-decoration: none; transition: color 0.2s; }
.contact-info a:hover { color: var(--sage-dark); }
.contact-form label { display: block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--tidal); margin-bottom: 8px; }
.contact-form input, .contact-form textarea { width: 100%; font-family: 'Karla', sans-serif; font-size: 0.9rem; padding: 14px 16px; border: 1px solid var(--rule); background: var(--white); color: var(--slate); margin-bottom: 24px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; border-radius: 3px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(139,158,124,0.1); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { font-family: 'Karla', sans-serif; background: var(--sage); color: #fff; border: none; padding: 14px 40px; font-weight: 500; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; border-radius: 3px; }
.contact-form button:hover { background: var(--sage-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(139,158,124,0.3); }

/* ACCORDION (FAQ) */
.accordion { list-style: none; max-width: 680px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid var(--rule); }
.accordion-item:first-child { border-top: 1px solid var(--rule); }
.accordion-trigger { width: 100%; background: none; border: none; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; }
.accordion-trigger h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--slate); line-height: 1.3; padding-right: 24px; }
.accordion-trigger .icon { font-size: 1.4rem; color: var(--sage); transition: transform 0.3s; flex-shrink: 0; }
.accordion-item.open .accordion-trigger .icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.accordion-item.open .accordion-body { max-height: 600px; }
.accordion-body p { font-size: 0.9rem; color: var(--tidal); line-height: 1.8; font-weight: 300; padding-bottom: 28px; }

/* FREQUENCY NOTE */
.freq-note { font-size: 0.82rem; color: var(--sage-dark); font-weight: 400; margin-top: 8px; font-style: italic; }

/* GALLERY GRID */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--rule-light); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.02); box-shadow: 0 8px 32px rgba(43,79,114,0.12); }

/* FOOTER */
footer { border-top: 1px solid var(--rule); padding: 80px 40px 48px; }
.footer-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { padding-right: 24px; }
.footer-brand .logo { display: inline-block; margin-bottom: 14px; font-size: 1.15rem; }
.footer-brand p { font-size: 0.82rem; color: var(--tidal); line-height: 1.7; font-weight: 300; }
footer h4 { font-family: 'Karla', sans-serif; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--slate); margin-bottom: 16px; font-weight: 600; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a { color: var(--tidal); text-decoration: none; font-size: 0.82rem; font-weight: 300; transition: color 0.2s; }
footer ul a:hover { color: var(--sage); }
.footer-bottom { max-width: 960px; margin: 56px auto 0; padding-top: 24px; border-top: 1px solid var(--rule-light); text-align: center; font-size: 0.75rem; color: var(--tidal); font-weight: 300; letter-spacing: 0.04em; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .drip-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 900px) {
  .hero h1 { font-size: 3.5rem; }
  .page-hero h1 { font-size: 2.8rem; }
  .cafe-title { font-size: 3rem; }
  .section-title { font-size: 2.4rem; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
  .injection-grid { grid-template-columns: 1fr; }
  .membership-table:has(.membership-card) { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(249,251,254,0.98); backdrop-filter: blur(14px); padding: 24px; gap: 16px; border-bottom: 1px solid var(--rule);
  }
  nav.open .nav-links a { font-size: 0.9rem; padding: 4px 0; }
  .column, .column--wide { padding: 0 24px; }
  .hero { padding: 80px 24px 0; min-height: 90vh; }
  .hero h1 { font-size: 2.6rem; }
  .page-hero { padding: 100px 24px 60px; }
  .page-hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; gap: 16px; margin-bottom: 80px; }
  .section { padding: 0 24px; }
  .column--narrow { padding: 0 24px; }
  .divider-section, .final-cta { padding: 60px 24px; }
  .final-cta h2 { font-size: 2.4rem; }
  .bundle-grid,
  .bundles-grid { grid-template-columns: 1fr; }
  .cafe-title { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillars-grid[style*="repeat(4"] { grid-template-columns: 1fr !important; }
  .drip-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-table thead { display: none; }
  .membership-table tbody tr { display: block; padding: 28px 0; }
  .membership-table tbody td { display: block; padding: 4px 0; }
  .membership-table .plan-price { text-align: left; margin-top: 12px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .space-200 { height: 80px; }
  .space-160 { height: 64px; }
  .space-120 { height: 56px; }
  .space-100 { height: 48px; }
  .space-80 { height: 40px; }
  .space-60 { height: 32px; }
  .space-40 { height: 24px; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
  .cta-section { padding: 0 24px; }
  .cta-buttons { flex-direction: column; }
}
