
/* ══ LOGO OVERRIDE — v8.2 ══════════════════ */
.nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}
.nav-logo-img {
  width: 110px !important;
  height: 110px !important;
  min-width: 110px !important;
  max-width: 110px !important;
  object-fit: contain !important;
  display: block !important;
}
.nav-logo-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.55rem !important;
  font-weight: 400 !important;
  color: #2D5240 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  display: block !important;
}
/* ══════════════════════════════════════════ */

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

/* ============================================================
   REFLECTION ROOM THERAPY — v5
   Mobile-first. Luxury editorial. Full palette.
   ============================================================ */

:root {
  --forest:      #2D5240;
  --sage:        #4A7C59;
  --sage-light:  #6B9E7A;
  --euc:         #7A9E8E;
  --euc-pale:    #C8DDD7;
  --euc-mist:    #EAF3F0;
  --sage-pale:   #C8DDD0;
  --sage-mist:   #EAF2ED;
  --cream:       #F7F4EF;
  --warm-white:  #FDFAF6;
  --charcoal:    #1C1C1C;
  --stone:       #5A5652;
  --stone-light: #9A9690;
  --blush:       #E8D5C4;
  --blush-deep:  #DEC4AF;
  --gold:        #B89A6A;
  --gold-light:  #D4B896;
  --gold-pale:   #EDE0CE;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;
  --nav-height: 128px;
  --max-width:  1160px;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }
body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  font-size: 16px;
}
img  { max-width:100%; display:block; }
a    { text-decoration:none; color:inherit; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
p { color: var(--stone); line-height: 1.85; }
strong { color: var(--charcoal); font-weight: 500; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  min-height: var(--nav-height);
  display: flex; align-items:center; justify-content:space-between;
  padding: 0.5rem 2rem;
  background: rgba(253,250,246,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: visible;
  box-sizing: border-box;
  width: 100%;
}
.nav.scrolled {
  border-color: var(--euc-pale);
  box-shadow: 0 2px 32px rgba(45,82,64,0.09);
}

/* ── LOGO LOCKUP ────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 120px !important;
  height: 120px !important;
  min-width: 120px !important;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-wordmark {
  font-family: var(--font-serif) !important;
  font-size: 1.6rem !important;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: nowrap;
}

/* Nav links */
.nav-links { display:none; align-items:center; gap:1.4rem; list-style:none; }
.nav-links a {
  font-size: 0.63rem; letter-spacing:0.2em; text-transform:uppercase;
  color: var(--stone); font-weight:400;
  position:relative; padding-bottom:3px; transition:color 0.2s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-1px; left:0; right:0;
  height:1px; background: var(--gold);
  transform:scaleX(0); transform-origin:left; transition:transform 0.3s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }

.nav-portal {
  display:inline-flex; align-items:center;
  padding: 0.55rem 1.35rem;
  background: var(--forest); color:white !important;
  border-radius:100px;
  font-size:0.6rem !important; letter-spacing:0.18em !important;
  text-transform:uppercase !important; font-weight:500 !important;
  transition: background 0.2s, transform 0.2s; white-space:nowrap;
}
.nav-portal::after { display:none !important; }
.nav-portal:hover  { background: var(--euc) !important; transform:translateY(-1px); }

.nav-hamburger { display:flex; flex-direction:column; gap:5px; padding:6px; }
.nav-hamburger span { display:block; width:22px; height:1.5px; background:var(--forest); transition:all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display:none; position:fixed;
  top: var(--nav-height); left:0; right:0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--euc-pale);
  padding: 1.5rem 2rem 2rem;
  z-index:999;
  box-shadow: 0 20px 40px rgba(45,82,64,0.1);
}
.nav-mobile.open { display:block; }
.nav-mobile ul { list-style:none; }
.nav-mobile ul a {
  display:block; padding:0.9rem 0;
  font-size:0.72rem; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--stone); border-bottom:1px solid var(--euc-mist);
  transition:color 0.2s;
}
.nav-mobile ul a:hover { color:var(--forest); }
.nav-mobile .nav-portal { display:inline-flex; margin-top:1.5rem; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.9rem 1.9rem; border-radius:100px;
  font-family:var(--font-sans); font-size:0.66rem;
  letter-spacing:0.2em; text-transform:uppercase; font-weight:500;
  transition:all 0.25s var(--ease-out);
  border:1.5px solid transparent; white-space:nowrap;
}
.btn-primary  { background:var(--forest); color:white; border-color:var(--forest); }
.btn-primary:hover { background:var(--sage); border-color:var(--sage); transform:translateY(-2px); box-shadow:0 8px 24px rgba(45,82,64,0.25); }
.btn-outline  { background:transparent; color:var(--forest); border-color:var(--euc); }
.btn-outline:hover { background:var(--euc-mist); border-color:var(--forest); transform:translateY(-2px); }
.btn-ghost    { background:rgba(255,255,255,0.1); color:white; border-color:rgba(255,255,255,0.4); }
.btn-ghost:hover { background:rgba(255,255,255,0.2); transform:translateY(-2px); }
.btn-euc      { background:var(--euc); color:white; border-color:var(--euc); }
.btn-euc:hover { background:var(--sage); border-color:var(--sage); transform:translateY(-2px); box-shadow:0 8px 24px rgba(122,158,142,0.3); }
.btn-gold     { background:var(--gold); color:white; border-color:var(--gold); }
.btn-gold:hover { background:#a08550; border-color:#a08550; transform:translateY(-2px); box-shadow:0 8px 24px rgba(184,154,106,0.3); }
.btn-arrow::after { content:'→'; transition:transform 0.2s; }
.btn-arrow:hover::after { transform:translateX(4px); }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width:var(--max-width); margin:0 auto; padding:0 1.25rem; }
.section-pad    { padding:5rem 0; }
.section-pad-sm { padding:3rem 0; }

/* ── TYPE SYSTEM ────────────────────────────────────────── */
.section-label {
  display:inline-flex; align-items:center; gap:0.75rem;
  font-size:0.57rem; letter-spacing:0.45em; text-transform:uppercase;
  color:var(--euc); font-weight:400; margin-bottom:1rem;
}
.section-label::before { content:''; width:22px; height:0.5px; background:var(--gold); flex-shrink:0; }

.section-title {
  font-family:var(--font-serif); font-weight:500;
  font-size:clamp(2.4rem, 5.5vw, 3.8rem);
  line-height:1.12; color:var(--forest); letter-spacing:0.01em;
}
.section-title em { font-style:italic; color:var(--euc); }
.section-title strong { color:var(--forest); font-weight:500; }

/* ── GOLD DIVIDER ───────────────────────────────────────── */
.gold-rule { display:flex; align-items:center; gap:0.75rem; margin:1.5rem 0; }
.gold-rule::before, .gold-rule::after { content:''; flex:1; height:0.5px; background:linear-gradient(90deg, transparent, var(--gold-light), transparent); }
.gold-diamond { width:5px; height:5px; background:var(--gold); transform:rotate(45deg); flex-shrink:0; }

/* ── CENTERED LABEL ─────────────────────────────────────── */
.label-center {
  display:flex; align-items:center; justify-content:center; gap:0.75rem;
  font-size:0.57rem; letter-spacing:0.45em; text-transform:uppercase;
  color:var(--euc); font-weight:400; margin-bottom:1rem;
}
.label-center::before, .label-center::after { content:''; width:22px; height:0.5px; background:var(--gold); flex-shrink:0; }

/* ── BADGES ─────────────────────────────────────────────── */
.badge-row { display:flex; flex-wrap:wrap; gap:0.5rem; margin-top:1.5rem; }
.badge {
  padding:0.28rem 0.85rem;
  background:var(--euc-mist); border:1px solid var(--euc-pale);
  border-radius:100px; font-size:0.54rem; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--euc); font-weight:500;
}
.badge-blush {
  background:var(--blush); border-color:var(--blush-deep);
  color: var(--stone);
}
.badge-gold {
  background:var(--gold-pale); border-color:var(--gold-light);
  color: var(--stone);
}

/* ── FULL QUOTE STATEMENT ───────────────────────────────── */
.quote-statement {
  background: var(--forest);
  padding: 5rem 1.5rem;
  text-align:center; position:relative; overflow:hidden;
}
.quote-statement::before {
  content:'\201C';
  position:absolute; top:-4rem; left:50%; transform:translateX(-50%);
  font-family:var(--font-serif); font-size:16rem;
  color:rgba(255,255,255,0.04); line-height:1;
  pointer-events:none; user-select:none;
}
.quote-statement blockquote {
  font-family:var(--font-serif); font-style:italic;
  font-size:clamp(1.2rem, 3vw, 1.85rem);
  color:white; font-weight:300;
  max-width:54ch; margin:0 auto; line-height:1.75;
  position:relative; z-index:1;
}
.quote-statement cite {
  display:block; margin-top:2rem;
  font-size:0.56rem; letter-spacing:0.38em; text-transform:uppercase;
  color:var(--euc); font-style:normal; position:relative; z-index:1;
}


/* ── CARD & LIST HEADINGS — always prominent ────────────── */
.brings-card-title,
.who-card-title,
.why-card-title,
.approach-card-title,
.payment-title,
.familiar-title,
.pattern-title,
.step-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 600 !important;
  color: var(--forest) !important;
  line-height: 1.2;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}
.familiar-title {
  font-size: clamp(1.15rem, 2vw, 1.45rem) !important;
}
/* Dark background cards must have white titles */
.who-card-forest .who-card-title,
.brings-card-forest .brings-card-title {
  color: white !important;
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal { opacity:1; transform:none; transition:opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.reveal.animate { opacity:0; transform:translateY(22px); }
.reveal.animate.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:0.08s; }
.reveal-delay-2 { transition-delay:0.16s; }
.reveal-delay-3 { transition-delay:0.24s; }
.reveal-delay-4 { transition-delay:0.32s; }
.reveal-delay-5 { transition-delay:0.40s; }

/* ── FORM ELEMENTS ──────────────────────────────────────── */
.form-group { display:flex; flex-direction:column; gap:0.4rem; }
.form-label { font-size:0.62rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--forest); font-weight:500; }
.form-label .req { color:var(--euc); margin-left:2px; }
.form-input, .form-textarea, .form-select {
  width:100%; padding:0.85rem 1.1rem;
  background:white; border:1.5px solid var(--euc-pale);
  border-radius:10px; font-family:var(--font-sans);
  font-size:0.95rem; color:var(--charcoal); font-weight:400;
  transition:border-color 0.2s, box-shadow 0.2s; outline:none;
  -webkit-appearance:none; appearance:none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color:var(--euc); box-shadow:0 0 0 3px rgba(122,158,142,0.18);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-error-msg { font-size:0.6rem; color:#c0392b; display:none; margin-top:2px; letter-spacing:0.05em; }
.form-error-msg.show { display:block; }
.form-input::placeholder, .form-textarea::placeholder { color:var(--stone-light); }
.form-textarea { resize:vertical; min-height:120px; }
.form-select {
  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='%237A9E8E' 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; cursor:pointer;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--forest);
  padding: 2.5rem 0 1.5rem;
}
.footer-inner {
  display:flex; flex-direction:column; align-items:center;
  text-align:center; gap:1.1rem;
}
.footer-logo { display:flex; align-items:center; gap:0.85rem; }
.footer-logo-img { width:56px; height:56px; object-fit:contain; }
.footer-logo-wordmark {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.07em;
}
.footer-tagline {
  font-family:var(--font-serif); font-style:italic;
  font-size:0.85rem; color:var(--euc);
}
.footer-links {
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:0.35rem 1.4rem;
  font-size:0.58rem; letter-spacing:0.18em; text-transform:uppercase;
}
.footer-links a { color:rgba(255,255,255,0.35); transition:color 0.2s; }
.footer-links a:hover { color:white; }
.footer-email { font-size:0.78rem; color:rgba(255,255,255,0.35); }
.footer-email a { color:var(--gold-light); transition:color 0.2s; }
.footer-email a:hover { color:white; }

.footer-legal {
  font-size:0.68rem;
  color: rgba(255,255,255,0.85);
  line-height:1.9; max-width:640px; text-align:center;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:1.25rem; width:100%;
}
.footer-legal p { color: rgba(255,255,255,0.85); }
.footer-legal strong { color: white; font-weight:600; }
.footer-legal a { color:var(--gold-light); text-decoration:underline; text-underline-offset:3px; }
.footer-copy { font-size:0.54rem; color:rgba(255,255,255,0.18); letter-spacing:0.12em; padding-top:0.25rem; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (min-width: 768px) {
  .container { padding:0 2.5rem; }
  .section-pad { padding:6.5rem 0; }
  .section-pad-sm { padding:4rem 0; }
  .nav-links { display:flex !important; }
  .nav-hamburger { display:none !important; }
  .nav { padding:0 3rem; }
}
@media (min-width: 1024px) {
  .container { padding:0 3rem; }
  .section-pad { padding:8rem 0; }
}
@media (max-width: 767px) {
  :root { --nav-height: 84px; }
  .nav {
    padding: 0 1.25rem !important;
    min-height: 84px !important;
    height: 84px !important;
  }
  .nav-logo-img {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
  }
  .nav-logo-wordmark {
    font-size: 1rem !important;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    padding: 8px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 1100 !important;
  }
  .nav-hamburger span {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    background: #2D5240 !important;
    border-radius: 2px !important;
    transition: all 0.3s !important;
  }
  .btn { padding: 0.75rem 1.4rem; font-size: 0.62rem; }
}
