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

:root {
  --sage:      #bdbfae;
  --charcoal:  #524b4d;
  --navy:      #023859;
  --sage-light:#d4d6c7;
  --sage-pale: #edeee9;
  --sage-faint:#f5f5f1;
  --white:     #fafaf8;
  --ink:       #1e1a1b;
  --navy-deep: #012640;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sage-light);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.4s;
}

nav.scrolled .nav-logo { color: var(--navy); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Courier Prime', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--sage); }
nav.scrolled .nav-links a { color: var(--charcoal); }
nav.scrolled .nav-links a:hover { color: var(--navy); }

.nav-cta {
  font-family: 'Courier Prime', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--sage);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s !important;
}

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(2,56,89,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(189,191,174,0.08) 0%, transparent 60%);
}

/* Subtle grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(189,191,174,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189,191,174,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'Courier Prime', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s ease forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(189,191,174,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.8rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s ease forwards;
}

.btn-primary {
  background: var(--sage);
  color: var(--navy-deep);
  border: none;
  border-radius: 5px;
  padding: 0.85rem 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(189,191,174,0.3);
  border-radius: 5px;
  padding: 0.85rem 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 1s 1s ease forwards;
  z-index: 2;
}

.scroll-hint span {
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(189,191,174,0.4);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(189,191,174,0.25);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--sage);
  animation: scanline 2s 1.5s ease-in-out infinite;
}

@keyframes scanline {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}

/* ── SECTION BASE ── */
section { padding: 6rem 2.5rem; }

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-heading em {
  font-style: italic;
  color: var(--charcoal);
}

/* ── PILLARS ── */
.pillars {
  background: var(--sage-faint);
  border-top: 1px solid var(--sage-light);
  border-bottom: 1px solid var(--sage-light);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid var(--sage-light);
  border-radius: 10px;
  overflow: hidden;
}

.pillar {
  padding: 2.2rem 1.8rem;
  border-right: 1px solid var(--sage-light);
  transition: background 0.3s;
}

.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--white); }

.pillar-num {
  font-family: 'Courier Prime', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 1.2rem;
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--charcoal);
  line-height: 1.7;
}

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

.for-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.for-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.for-text p strong {
  color: var(--navy);
  font-weight: 500;
}

.for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.for-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.55;
  padding: 1rem 1.2rem;
  background: var(--sage-faint);
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.for-list li:hover {
  border-color: var(--sage);
  background: var(--white);
}

.for-list li::before {
  content: '↑';
  color: var(--navy);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── ABOUT ── */
.about-section {
  background: var(--navy-deep);
  color: var(--white);
}

.about-section .section-heading {
  color: var(--sage-pale);
}

.about-section .section-heading em {
  color: var(--sage);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.about-sidebar {
  position: sticky;
  top: 6rem;
}

.about-badge {
  width: 100%;
  aspect-ratio: 1;
  max-width: 280px;
  border-radius: 12px;
  background: rgba(189,191,174,0.08);
  border: 1px solid rgba(189,191,174,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
}

.about-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
  letter-spacing: 0.08em;
}

.about-badge-name {
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(189,191,174,0.4);
  margin-top: 0.5rem;
}

.about-badge-title {
  font-size: 0.78rem;
  color: rgba(189,191,174,0.5);
  text-align: center;
  line-height: 1.5;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(189,191,174,0.65);
  margin-bottom: 1.4rem;
}

.about-content p strong {
  color: var(--sage-pale);
  font-weight: 400;
}

.about-content p em {
  color: var(--sage);
  font-style: italic;
}

.about-divider {
  width: 40px;
  height: 1px;
  background: rgba(189,191,174,0.2);
  margin: 2rem 0;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Courier Prime', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(189,191,174,0.45);
  text-transform: uppercase;
}

.credential::before {
  content: '';
  width: 16px;
  height: 1px;
  background: rgba(189,191,174,0.25);
  flex-shrink: 0;
}

/* ── WORK TOGETHER ── */
.work-section { background: var(--sage-faint); }

.work-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.work-text p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.work-text p strong { color: var(--navy); font-weight: 500; }

.work-note {
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  background: white;
  border: 1px solid var(--sage-light);
  border-left: 3px solid var(--navy);
  border-radius: 0 6px 6px 0;
  font-size: 0.82rem;
  color: var(--charcoal);
  line-height: 1.6;
  font-style: italic;
}

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--sage-light);
  border-radius: 12px;
  padding: 2rem 2rem 2.2rem;
  box-shadow: 0 4px 24px rgba(2,56,89,0.06);
}

.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-card p {
  font-size: 0.8rem;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 1.6rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.6;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--sage-faint);
  border: 1.5px solid var(--sage-light);
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(2,56,89,0.07);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

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

.submit-btn {
  width: 100%;
  background: var(--navy);
  color: var(--sage-pale);
  border: none;
  border-radius: 6px;
  padding: 0.9rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin-top: 0.6rem;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover { background: #024a77; transform: translateY(-1px); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success .check {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.85rem;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 3rem 2.5rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--sage-pale);
  letter-spacing: 0.04em;
}

.footer-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(189,191,174,0.3);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(189,191,174,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--sage); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.services-intro {
  max-width: 600px;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--sage-light);
  border-radius: 12px;
  padding: 2rem;
  background: var(--sage-faint);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 6px 28px rgba(2,56,89,0.08);
}

.service-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--navy-deep);
  border-color: transparent;
}

.service-card.featured:hover {
  background: #013060;
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(2,56,89,0.2);
}

.service-num {
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.service-card.featured .service-num { color: rgba(189,191,174,0.5); }

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.service-card.featured .service-name { color: var(--sage-pale); }

.service-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  display: inline-block;
}

.service-card.featured .service-tag { color: rgba(189,191,174,0.45); }

.service-desc {
  font-size: 0.85rem;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-card.featured .service-desc { color: rgba(189,191,174,0.6); }

.service-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--sage-light);
  font-size: 0.78rem;
}

.service-card.featured .tier-row {
  background: rgba(189,191,174,0.06);
  border-color: rgba(189,191,174,0.12);
}

.tier-label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.6;
  min-width: 60px;
}

.service-card.featured .tier-label { color: rgba(189,191,174,0.4); opacity: 1; }

.tier-includes {
  flex: 1;
  padding: 0 0.8rem;
  font-size: 0.76rem;
  color: var(--charcoal);
  line-height: 1.4;
}

.service-card.featured .tier-includes { color: rgba(189,191,174,0.55); }

.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}

.service-card.featured .tier-price { color: var(--sage); }

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-family: 'Courier Prime', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: gap 0.2s;
}

.service-card.featured .service-cta { color: var(--sage); }
.service-cta:hover { gap: 0.7rem; }

/* ── RESPONSIVE SERVICES ── */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: 1; grid-template-columns: 1fr; }
}


@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  section { padding: 4.5rem 1.5rem; }

  .nav-links { display: none; }

  .hero { padding: 7rem 1.5rem 4rem; }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--sage-light); }
  .pillar:last-child { border-bottom: none; }

  .for-body { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-sidebar { position: static; }
  .about-badge { max-width: 200px; margin: 0 auto; }
  .work-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
