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

:root {
  --navy:        #0F1F38;
  --slate:       #2A3F5F;
  --cream:       #F7F3EE;
  --amber:       #C8923A;
  --amber-light: #E0B06A;
  --text-dark:   #1A2A40;
  --text-mid:    #4A5568;
  --white:       #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(15, 31, 56, 0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.25);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--navy) 0%, var(--slate) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(200,146,58,0.08);
  box-shadow: 0 0 0 60px rgba(200,146,58,0.03), 0 0 0 120px rgba(200,146,58,0.02);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}
.hero-title strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-statement {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3rem;
  border-left: 3px solid var(--amber);
  padding-left: 1.5rem;
}
.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: var(--amber);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── SHARED ── */
section { position: relative; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--amber);
  opacity: 0.5;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 620px;
}
.section-body + .section-body {
  margin-top: 1.25rem;
}

/* ── PERSONAL STRIP ── */
#personal {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.personal-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.personal-divider {
  background: rgba(255,255,255,0.08);
  height: 100%;
  min-height: 60px;
  align-self: center;
}
.personal-item .pi-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
.personal-item p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.personal-item .pi-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.personal-item .pi-cite {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.8;
}

/* ── WHAT I DO ── */
#what { background: var(--cream); }

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.differentiators {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.diff-item {
  padding-left: 1.25rem;
  border-left: 2px solid var(--amber);
}
.diff-item h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.diff-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── SERVICES ── */
#services { background: var(--navy); }
#services .section-heading { color: var(--white); }
#services .section-body    { color: rgba(255,255,255,0.6); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--amber);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.service-card:hover { background: rgba(255,255,255,0.07); }
.service-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ── HOW I WORK ── */
#how { background: var(--slate); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.how-heading { color: var(--white); }
.how-body    { color: rgba(255,255,255,0.58); }

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-step {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.how-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: rgba(200,146,58,0.25);
}
.step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.05em;
}
.step-content h4 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  padding-top: 0.6rem;
}
.step-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ── WHY ORGANIC ── */
#why { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.why-point {
  padding-left: 1.25rem;
  border-left: 2px solid var(--amber);
}
.why-point h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.why-point p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── CONNECT ── */
#connect {
  background: var(--navy);
  text-align: center;
}
#connect .section-label          { justify-content: center; }
#connect .section-label::after   { display: none; }
#connect .section-heading        { color: var(--white); margin: 0 auto 1.25rem; }
#connect .section-body           { color: rgba(255,255,255,0.58); margin: 0 auto 2.75rem; }

.connect-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--amber);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.connect-btn:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: #080F1C;
  text-align: center;
  padding: 2rem;
  color: rgba(255,255,255,0.22);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .section-inner { padding: 5rem 1.5rem; }
  .what-grid,
  .how-grid,
  .why-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .personal-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .personal-divider { display: none; }
}
