@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&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --cream: #F8F4EE;
  --cream-dark: #EDE7DC;
  --sage: #7A8FA6;
  --sage-dark: #4E6478;
  --sage-light: #E8EEF4;
  --sand: #C4A882;
  --text: #252520;
  --text-muted: #5C5C54;
  --white: #FFFFFF;
  --border: #DDD6CB;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 244, 238, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 6%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-dark);
}

.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 40px;
  font-size: 0.82rem !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--sage-dark) !important;
}

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

section {
  padding: 88px 6%;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  padding: 0.9rem 2.1rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  background: var(--sage-dark);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--sage);
  color: var(--sage-dark);
  padding: 0.9rem 2.1rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: all 0.2s;
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--sage-light);
}

/* ── SECTION LABELS ── */
.label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.1rem;
  font-weight: 400;
  line-height: 1.14;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 560px;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: var(--cream-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(20,35,55,0.62) 0%, rgba(20,35,55,0.32) 45%, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 66px 90px;
  height: 100%;
  max-width: 600px;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 4.4vw, 72px);
  font-weight: 300;
  line-height: 1.14;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
  text-wrap: balance;
}

.hero-content h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.hero-content > p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 420px;
  line-height: 1.8;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

.hero-badge-light {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: rgba(255,255,255,0.75) !important;
  margin-bottom: 20px;
  align-self: flex-start;
  width: fit-content;
}

.hero-dot-light {
  background: rgba(255,255,255,0.6) !important;
  animation: none !important;
}

.hero-ctas {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-primary {
  display: inline-block;
  background: #fff;
  color: var(--sage-dark);
  padding: 14px 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 40px;
  transition: all 0.2s ease;
  font-family: 'DM Sans', sans-serif;
  border: none;
}

.btn-hero-primary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

.btn-hero-ghost {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 12px 28px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 40px;
  transition: all 0.2s ease;
  font-family: 'DM Sans', sans-serif;
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
}

/* legacy selectors — unused but kept to avoid errors */
.hero-inner { display: contents; }
.hero-image { display: none; }
.hero-image-panel { display: none; }
.hero-content-panel { display: none; }
.hero-badges { display: none; }
.badge { display: none; }

.hero-image img,
.about-image img,
.about-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.photo-placeholder svg {
  opacity: 0.3;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--sage-dark);
  padding: 70px 8%;
  text-align: center;
}

.intro-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  max-width: 820px;
  margin: 0 auto;
}

.intro-strip p em {
  color: var(--sand);
  font-style: italic;
}

.intro-stats { display: none; }
.stat { display: none; }
.stat-num { display: none; }
.stat-label { display: none; }

/* ── SERVICES ── */
.services-section {
  background: var(--white);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.25rem 2.25rem 2.5rem;
  border-radius: 0;
  border: none;
  border-top: 2px solid var(--sage-light);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border-color: var(--sage);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--sage);
  font-style: italic;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  color: var(--text);
  line-height: 1.25;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.82rem;
  color: var(--sage-dark);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 1px;
  display: inline-block;
  text-transform: uppercase;
}

/* ── WHO I HELP ── */
.who-section {
  background: var(--cream);
}

.who-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.who-header .section-subtitle {
  margin: 0 auto;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: who;
}

.who-card {
  background: var(--white);
  padding: 2rem 1.75rem 2.25rem;
  border-radius: 0;
  text-align: left;
  border: none;
  border-top: 1.5px solid var(--sage);
  counter-increment: who;
}

.who-icon {
  display: none;
}

.who-card::before {
  content: '0' counter(who);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--sage);
  display: block;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.who-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  color: var(--text);
  line-height: 1.2;
}

.who-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── ABOUT TEASER ── */
.about-teaser {
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.about-image {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-dark);
  outline: 1.5px solid rgba(122,143,166, 0.25);
  outline-offset: 12px;
  box-shadow: 0 30px 60px rgba(37, 37, 32, 0.1);
}

.about-text .section-subtitle {
  max-width: 100%;
  margin-bottom: 1.75rem;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--border);
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.credential-item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── APPROACH ── */
.approach-section {
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
  counter-reset: approach;
}

.approach-item {
  border-top: 1.5px solid var(--sage-dark);
  padding-top: 0;
  counter-increment: approach;
}

.approach-item::before {
  content: '0' counter(approach);
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--sand);
  display: block;
  line-height: 1;
  margin: 1.25rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.approach-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.approach-item p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── CTA BANNER ── */
.cta-section {
  background: var(--sage-dark);
  text-align: center;
  padding: 90px 6%;
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-section h2 em {
  font-style: italic;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--sage-dark);
}

.cta-section .btn-primary:hover {
  background: var(--cream);
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  padding: 70px 6% 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── PAGE HEROES ── */
.page-hero {
  background: var(--cream);
  padding: 160px 6% 80px;
  text-align: center;
}

.page-hero .section-title {
  font-size: 3.2rem;
  max-width: 700px;
  margin: 0 auto 1.25rem;
}

.page-hero .section-subtitle {
  margin: 0 auto;
  max-width: 520px;
  text-align: center;
}

/* ── SERVICES PAGE ── */
.service-detail {
  padding: 90px 6%;
}

.service-detail:nth-child(even) {
  background: var(--white);
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.service-detail-inner.reverse {
  direction: rtl;
}

.service-detail-inner.reverse > * {
  direction: ltr;
}

.service-detail-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.service-detail-content p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.service-detail-content h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.includes-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.includes-list li {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.includes-list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

.service-visual {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-dark);
}

.rate-box {
  background: var(--sage-light);
  border: 1px solid rgba(122,143,166,0.15);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.rate-box strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.2rem;
}

/* ── FAQ ── */
.faq-section {
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.faq-item p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── ABOUT PAGE ── */
.about-full {
  background: var(--white);
}

.about-full-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.about-full-image {
  position: sticky;
  top: 100px;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-dark);
}

.about-full-text p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-full-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.edu-list {
  list-style: none;
  margin-bottom: 2rem;
}

.edu-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}

.edu-list li strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.edu-list li span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ── CONTACT PAGE ── */
.contact-section {
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-details li strong {
  color: var(--text);
  min-width: 80px;
  font-weight: 500;
}

.contact-form {
  background: var(--cream);
  padding: 2.75rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.contact-form .form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--cream);
  z-index: 300;
  padding: 90px 40px 40px;
  transition: right 0.3s ease;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.nav-drawer.open {
  right: 0;
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.nav-drawer ul a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-drawer ul a:hover {
  color: var(--sage-dark);
}

.nav-drawer-close {
  position: absolute;
  top: 26px;
  right: 26px;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(37, 37, 32, 0.4);
  z-index: 200;
  backdrop-filter: blur(2px);
}

.nav-overlay.open {
  display: block;
}

/* ── GOOD FAITH ESTIMATE ── */
.gfe-notice {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.gfe-notice strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-image {
    display: none;
  }

  .hero-text h1 {
    font-size: 2.85rem;
    line-height: 1.1;
  }

  .services-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-inner,
  .about-full-inner,
  .service-detail-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-full-image {
    position: static;
    aspect-ratio: 4/3;
  }

  .service-detail-inner.reverse {
    direction: ltr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .intro-strip .container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  section {
    padding: 80px 5%;
  }

  .hero {
    padding: 120px 5% 80px;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .page-hero .section-title {
    font-size: 2.4rem;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .intro-stats {
    gap: 30px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .post-hero h1 {
    font-size: 2.2rem;
  }
}

/* ── PAGE TRANSITION ── */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ── SCROLL ANIMATIONS ── */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate.visible {
  opacity: 1;
  transform: none;
}

/* ── BLOG SECTION ── */
.blog-section {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.blog-card {
  background: var(--white);
  border: none;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.07);
}

.blog-card-image {
  height: 210px;
  background: var(--sage-light);
  position: relative;
  overflow: hidden;
}

.blog-card-category {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--sage-dark);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
}

.blog-card-body {
  padding: 1.75rem;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.28;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.blog-read-more {
  font-size: 0.8rem;
  color: var(--sage-dark);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 1px;
  display: inline-block;
}

/* ── BLOG LISTING PAGE ── */
.blog-hero {
  background: var(--cream);
  padding: 160px 6% 70px;
  text-align: center;
}

.blog-hero .section-title {
  max-width: 600px;
  margin: 0.5rem auto 1rem;
}

.blog-hero .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.blog-listing {
  background: var(--white);
  padding: 80px 6%;
}

.blog-listing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── BLOG POST PAGE ── */
.post-hero {
  background: var(--cream);
  padding: 160px 6% 60px;
}

.post-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.post-category {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sage-light);
  color: var(--sage-dark);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.post-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.post-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.14;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.post-lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

.post-body {
  padding: 60px 6% 100px;
}

.post-body-inner {
  max-width: 720px;
  margin: 0 auto;
}

.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--text);
  margin: 2.75rem 0 1rem;
  line-height: 1.2;
}

.post-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.post-body ul {
  margin: 0.5rem 0 1.5rem 0;
  list-style: none;
}

.post-body ul li {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
}

.post-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 14px;
  height: 1px;
  background: var(--sage);
}

.post-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

.post-author-box {
  background: var(--sage-light);
  border-radius: 4px;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
  border: 1px solid rgba(122,143,166,0.12);
}

.post-author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cream-dark);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--sage-dark);
}

.post-author-box strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.post-author-box span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.post-back:hover { color: var(--sage-dark); }

/* ── WAITLIST NOTICE ── */
.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage-light);
  border: 1px solid rgba(122,143,166,0.2);
  border-radius: 20px;
  padding: 0.4rem 1rem 0.4rem 0.75rem;
  font-size: 0.77rem;
  color: var(--sage-dark);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.waitlist-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* ── 404 PAGE ── */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 6% 80px;
}

.not-found-inner { max-width: 480px; }

.not-found-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.not-found h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text);
}

.not-found p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-size: 0.97rem;
}

.not-found-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SERVICES LIST (editorial index) ── */
.services-list {
  margin-top: 3rem;
}

.service-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1.5rem;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.25s ease, border-color 0.25s;
}

.service-row:last-child {
  border-bottom: 1px solid var(--border);
}

.service-row:hover {
  padding-left: 0.75rem;
  border-color: var(--sage);
}

.service-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--sage);
  flex-shrink: 0;
  line-height: 1;
}

.service-row-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.35rem;
  line-height: 1.1;
  transition: color 0.2s;
}

.service-row:hover .service-row-body h3 {
  color: var(--sage-dark);
}

.service-row-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-row-arrow {
  font-size: 1.3rem;
  color: var(--sage);
  text-align: right;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.service-row:hover .service-row-arrow {
  transform: translateX(6px);
}

/* ── QUOTE SECTION ── */
.quote-section {
  background: var(--sage-dark);
  padding: 100px 8%;
  text-align: center;
}

.site-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto;
  border: none;
}

.site-quote em {
  opacity: 0.75;
}

/* ── BLOG INDEX (editorial list) ── */
.blog-index {
  margin-top: 2.5rem;
}

.blog-row {
  display: grid;
  grid-template-columns: 160px 1fr 1.5rem;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.25s ease, border-color 0.25s;
}

.blog-row:last-child {
  border-bottom: 1px solid var(--border);
}

.blog-row:hover {
  padding-left: 0.75rem;
  border-color: var(--sage);
}

.blog-row-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex-shrink: 0;
}

.blog-row-cat {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.blog-row-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-row-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.22;
  transition: color 0.2s;
}

.blog-row:hover .blog-row-title {
  color: var(--sage-dark);
}

.blog-row-arrow {
  font-size: 1.3rem;
  color: var(--sage);
  text-align: right;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.blog-row:hover .blog-row-arrow {
  transform: translateX(5px);
}

/* ── RESPONSIVE: hero + index layouts ── */
@media (min-width: 1400px) {
  .hero { min-height: 100vh; }
  .hero-bg img { object-position: right top; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero { height: 100svh; max-height: 100svh; overflow: hidden; }
  .hero-content { padding: 0 32px 40px; }
  .hero-content h1 { font-size: 38px; }
  .hero-content > p { font-size: 14px; margin-bottom: 28px; }
  .hero-badge-light { font-size: 0.72rem; margin-bottom: 14px; }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    height: 100svh;
    min-height: 100svh;
  }

  .hero-bg img {
    content: url('jordanhero2.webp');
    object-position: center 15%;
  }

  .hero-overlay {
    background: linear-gradient(to top, rgba(20,35,55,0.78) 0%, rgba(20,35,55,0.48) 40%, transparent 75%);
  }

  .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    padding: 0 24px 56px;
    max-width: 100%;
    justify-content: flex-start;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content > p {
    font-size: 14px;
  }

  .hero-ctas {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    flex: 1;
    text-align: center;
    padding: 13px 16px;
    font-size: 14px;
  }

  .hero-badge-light {
    font-size: 0.7rem;
    padding: 0.35rem 0.8rem 0.35rem 0.65rem;
    margin-bottom: 14px;
  }

  .service-row {
    grid-template-columns: 2.5rem 1fr 1.2rem;
    gap: 1rem;
    padding: 1.75rem 0;
  }

  .service-row-body h3 {
    font-size: 1.5rem;
  }

  .blog-row {
    grid-template-columns: 1fr 1.2rem;
    gap: 0.4rem 1rem;
    padding: 1.5rem 0;
  }

  .blog-row-meta {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
  }

  .blog-row-date {
    font-size: 0.72rem;
  }

  .blog-row-title {
    font-size: 1.3rem;
  }

  .site-quote {
    font-size: 1.8rem;
  }

  .intro-strip p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .hero-ctas { gap: 10px; }
}

/* ── ACCESSIBILITY ── */
:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate {
    opacity: 1 !important;
    transform: none !important;
  }
  .waitlist-dot { animation: none !important; }
}

/* ── WHAT TO EXPECT ── */
.expect-section {
  background: var(--cream);
}

.expect-header {
  margin-bottom: 3rem;
  max-width: 620px;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  counter-reset: expect;
}

.expect-step {
  position: relative;
  padding-top: 2.25rem;
  border-top: 1.5px solid var(--sand);
  counter-increment: expect;
}

.expect-step::before {
  content: '0' counter(expect);
  position: absolute;
  top: 1.4rem;
  right: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--sand);
}

.expect-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.expect-step p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .expect-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ── ABOUT SIGNATURE ── */
.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--sage-dark);
  margin: 0.25rem 0 1.75rem;
  line-height: 1;
}

.about-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
