/* ─────────────────────────────────────────────
   Base & Custom Properties
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2e42;
  --gold:       #b89c5e;
  --gold-light: #d4b97a;
  --cream:      #f7f4ef;
  --cream-dark: #ede9e2;
  --text:       #1a1a1a;
  --text-muted: #5a5a5a;
  --white:      #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius: 4px;
  --section-gap: 6rem;
  --container-width: 1100px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Utility ─── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.4rem;
}

.hidden { display: none !important; }

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 300;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; font-weight: 400; }

em { font-style: italic; color: var(--gold); }

p { color: var(--text-muted); }
strong { color: var(--text); font-weight: 600; }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { background: var(--cream); }

.btn-full { width: 100%; text-align: center; }

/* ─────────────────────────────────────────────
   Navigation
───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 1.5rem;
  flex-shrink: 0;
}

.lang-switch .lang-active {
  color: var(--gold);
}

.lang-switch .lang-sep {
  color: rgba(255,255,255,0.25);
}

.lang-switch a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.lang-switch a:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─────────────────────────────────────────────
   Hero
───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-content {
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

#hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Decorative background element */
.accent-circle {
  position: absolute;
  right: -10vw;
  top: 50%;
  transform: translateY(-50%);
  width: 60vw;
  max-width: 700px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(184, 156, 94, 0.12);
  background: radial-gradient(circle at center,
    rgba(184, 156, 94, 0.05) 0%,
    transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.accent-circle::before {
  content: '';
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(184, 156, 94, 0.08);
}

/* ─────────────────────────────────────────────
   About
───────────────────────────────────────────── */
#about {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 220px 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-photo { position: relative; }

.portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  display: block;
  filter: grayscale(15%);
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(184,156,94,0.25);
  pointer-events: none;
}

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.2rem; max-width: 640px; }

.credentials {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.credential-icon { font-size: 1.2rem; flex-shrink: 0; }

.credential-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

.credential-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────────
   Approach
───────────────────────────────────────────── */
#approach {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

#approach h2 { margin-bottom: 0.8rem; }
.section-intro { max-width: 560px; margin-bottom: 3rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.2s ease;
}

.card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.07); }

.card-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.8rem;
  line-height: 1;
}

.card h3 { color: var(--text); margin-bottom: 0.7rem; }
.card p { font-size: 0.9rem; line-height: 1.7; }

/* ─────────────────────────────────────────────
   Who I Work With
───────────────────────────────────────────── */
#who {
  padding: var(--section-gap) 0;
  background: var(--white);
}

#who h2 { margin-bottom: 2rem; }

.fit-list {
  list-style: none;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.95rem;
  background: var(--cream);
  border-left: 2px solid var(--gold);
}

.fit-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   Free Sessions Offer
───────────────────────────────────────────── */
#offer {
  padding: var(--section-gap) 2rem;
  background: var(--navy);
  text-align: center;
}

.offer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.offer-badge {
  display: inline-block;
  background: rgba(184, 156, 94, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(184, 156, 94, 0.35);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

#offer h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.offer-desc {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

#offer strong { color: var(--white); }

.offer-details {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.offer-detail {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.2rem 1.8rem;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.detail-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.detail-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.offer-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* ─────────────────────────────────────────────
   Contact
───────────────────────────────────────────── */
#contact {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.contact-grid {
  align-items: start;
  gap: 4rem;
}

.contact-left h2 { margin-bottom: 1.2rem; }
.contact-left p { margin-bottom: 1rem; max-width: 320px; }
.contact-note { font-size: 0.82rem !important; color: var(--text-muted); }

/* Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
}

.optional { font-weight: 400; color: var(--text-muted); }

input, textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  border: 1px solid #d8d3ca;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

input:focus, textarea:focus { border-color: var(--gold); }
input::placeholder, textarea::placeholder { color: #b0aca4; }

.form-legal {
  font-size: 0.75rem !important;
  color: #9a9590 !important;
  text-align: center;
  margin-top: 0.8rem;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #d8d3ca;
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(184, 156, 94, 0.1);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.form-success p { color: var(--text); font-size: 1rem; }

/* ─────────────────────────────────────────────
   Footer
───────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner { display: flex; flex-direction: column; gap: 0.4rem; }

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white) !important;
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45) !important;
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25) !important;
  margin-top: 0.5rem;
}

/* ─────────────────────────────────────────────
   Responsive
───────────────────────────────────────────── */
@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .about-photo {
    max-width: 240px;
  }

  .section-label { padding-top: 0; }

  .contact-grid { gap: 3rem; }
  .contact-left p { max-width: 100%; }

  .hamburger { display: flex; }

  .lang-switch { margin-left: 0.75rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }
}

@media (max-width: 560px) {
  :root { --section-gap: 4rem; }
  .cards { grid-template-columns: 1fr; }
  .offer-details { gap: 0.75rem; }
  .offer-detail { min-width: 100px; padding: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ─── Fade-in animation ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
