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

:root {
  --burgundy: #3B0D11;
  --burgundy-light: #5a1620;
  --forest: #3F4737;
  --forest-light: #6b7563;
  --sage: #98AB98;
  --sage-light: #b4c4b4;
  --cream: #EAE2D8;
  --cream-light: #f7f4f0;
  --cream-dark: #d4c9bb;
  --rust: #882B18;
  --white: #ffffff;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(59,13,17,0.04);
  --shadow-md: 0 4px 16px rgba(59,13,17,0.06);
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--forest);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

::selection { background: var(--cream); color: var(--burgundy); }

/* ── Focus visible (a11y) ────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--burgundy);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 0.5rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.center { text-align: center; }

.subtitle {
  color: var(--forest-light);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* ── Layout ──────────────────────────────────────────── */
.container { max-width: 1060px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 2rem 0; }
.section-warm { background: var(--cream-light); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
}

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

/* ── Button ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  background: var(--burgundy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  background: var(--burgundy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active { transform: translateY(0); box-shadow: none; }
.btn-full { width: 100%; text-align: center; }

/* ── Header ──────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s;
}

.header.scrolled { box-shadow: 0 1px 0 var(--cream); }

.header-inner {
  max-width: 100%;
  margin: 0;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--burgundy);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-light);
}

/* Desktop: nav floats inside header visually */
.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  position: fixed;
  top: 0;
  right: 0;
  height: 64px;
  padding-right: 2rem;
  z-index: 101;
}

.nav-close { display: none; }

.nav a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--forest-light);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  cursor: pointer;
}

.nav a:hover { color: var(--burgundy); }
.nav a.active { color: var(--burgundy); }

.lang-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 100px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  transition: all var(--transition);
}

.lang-toggle:hover { border-color: var(--burgundy); color: var(--burgundy); }

/* Mobile-only lang toggle — hidden on desktop */
.lang-toggle-mobile {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 100px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-toggle-mobile:hover { border-color: var(--burgundy); color: var(--burgundy); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--burgundy);
  transition: all 0.3s;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 64px;
  background: var(--white);
}

.hero-content {
  padding: 4rem 3rem;
  max-width: 520px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  font-style: italic;
}

.hero-sub {
  color: var(--forest-light);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.hero-image {
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Page Header ─────────────────────────────────────── */
.page-header {
  padding: 5rem 2rem 0.5rem;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.page-header h1 { margin-bottom: 0.75rem; }

.page-header-sub {
  color: var(--forest-light);
  font-size: 0.95rem;
}

/* ── Botanical Strips ────────────────────────────────── */
.botanical-strip {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.botanical-strip--short { height: 180px; }

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

/* ── About ───────────────────────────────────────────── */
.about-photo img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  max-height: 420px;
}

.about-text p { color: var(--forest-light); font-size: 0.95rem; }

/* ── Features / How I Work ───────────────────────────── */
/* ── Approach intro ───────────────────────────────────── */
.approach-intro {
  max-width: 640px;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.approach-intro p {
  color: var(--forest-light);
  font-size: 0.95rem;
  text-align: left;
}

.approach-intro blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.4;
  margin-bottom: 2rem;
  position: relative;
  padding: 0 1rem;
}

.approach-intro blockquote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--sage);
  position: absolute;
  left: -0.5rem;
  top: -0.75rem;
  line-height: 1;
}

.approach-intro blockquote::after {
  content: '\201D';
  font-size: 3rem;
  color: var(--sage);
  position: absolute;
  right: -0.5rem;
  bottom: -1.25rem;
  line-height: 1;
}

.feature { padding: 2rem 0; }

.feature-icon {
  color: var(--sage);
  margin-bottom: 1rem;
}

.feature p {
  color: var(--forest-light);
  font-size: 0.9rem;
}

/* ── Home Cards ──────────────────────────────────────── */
.home-card {
  display: block;
  padding: 2rem;
  border: 1px solid var(--cream);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.home-card:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.home-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.home-card p { color: var(--forest-light); font-size: 0.88rem; margin: 0; }

/* ── Journey / Flow ──────────────────────────────────── */
.flow {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.flow-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 1.5rem;
  position: relative;
}

.flow-number {
  grid-column: 1;
  grid-row: 1 / -1;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--burgundy);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.25rem;
  position: relative;
  z-index: 2;
}

.flow-line {
  position: absolute;
  left: 30px;
  top: 2.5rem;
  bottom: 0;
  width: 1px;
  background: var(--cream);
}

.flow-step:last-child .flow-line { display: none; }

.flow-content {
  grid-column: 2;
  padding-bottom: 3rem;
}

.flow-content h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.flow-content p { color: var(--forest-light); font-size: 0.9rem; }

.flow-step:last-child .flow-content { padding-bottom: 0; }

/* ── Services ────────────────────────────────────────── */
.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--cream);
  transition: box-shadow var(--transition);
}

.service-card:hover { box-shadow: var(--shadow-md); }

.service-icon {
  color: var(--sage);
  margin-bottom: 1rem;
}

.service-card ul { margin-top: 1rem; }

.service-card li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--forest-light);
  margin-bottom: 0.4rem;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

.tags span {
  padding: 0.35rem 0.85rem;
  background: var(--cream-light);
  border: 1px solid var(--cream);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--forest);
  transition: background var(--transition);
}

.tags span:hover { background: var(--cream); }

.lang-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.25rem; }

.lang-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.lang-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--burgundy);
  flex-shrink: 0;
}

.section-divider {
  height: 1px;
  background: var(--cream);
  margin: 3rem 0;
}

.lang-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.25rem;
}

/* ── Form ────────────────────────────────────────────── */
.form {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; }

.form-group > label:first-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.35rem;
}

.form-hint { font-size: 0.78rem; color: var(--forest-light); margin-bottom: 0.35rem; }

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

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  min-height: 44px;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(59,13,17,0.06);
}

textarea { resize: vertical; min-height: 100px; }

select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7563' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--forest-light);
  cursor: pointer;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--cream);
  border-radius: 8px;
  transition: border-color var(--transition), background var(--transition);
  min-height: 44px;
}

.radio-option:hover { border-color: var(--sage); }
.radio-option input[type="radio"] { margin-top: 2px; accent-color: var(--burgundy); cursor: pointer; }
.radio-option input:checked ~ span { color: var(--forest); font-weight: 500; }

.form-group input.error,
.form-group textarea.error { border-color: var(--rust); box-shadow: 0 0 0 3px rgba(136,43,24,0.08); }

/* ── Form States ─────────────────────────────────────── */
.form-success {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--sage);
}

.form-success h3 { margin-top: 1rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--forest-light); }

.form-error {
  max-width: 540px;
  margin: 1rem auto 0;
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: var(--rust);
  font-size: 0.85rem;
  text-align: center;
}

.hidden { display: none; }

/* ── Certifications ──────────────────────────────────── */
.certifications { padding: 4rem 0; }

.cert-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 0.75rem;
}

.cert-logos img {
  height: 48px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.cert-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--cream);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer .logo { font-size: 1rem; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--forest-light);
  transition: color var(--transition);
  cursor: pointer;
}

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

.footer-links svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--cream-dark);
}

/* ── PT version banner ───────────────────────────────── */
.pt-banner {
  background: var(--cream-light);
  border-top: 1px solid var(--cream);
  padding: 2rem 0;
  text-align: center;
}

.pt-banner p {
  font-size: 0.85rem;
  color: var(--forest-light);
  margin-bottom: 0.75rem;
}

.pt-banner a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--burgundy);
  cursor: pointer;
}

.pt-banner a:hover { text-decoration: underline; }

/* ── Utilities ───────────────────────────────────────── */
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.25rem; }

/* ── Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE DRAWER — rebuilt from scratch
   ══════════════════════════════════════════════════════════ */

/* Desktop: hide mobile-only elements */
.drawer-backdrop { display: none; }

@media (max-width: 768px) {

  /* ── Hamburger button ──────────────────────────────── */
  .menu-btn {
    display: flex;
    z-index: 101;
  }

  /* ── Backdrop: covers left side behind drawer ──────── */
  .drawer-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000066;
    z-index: 999;
    -webkit-tap-highlight-color: transparent;
  }
  .drawer-backdrop.open {
    display: block;
  }

  /* ── Drawer panel ──────────────────────────────────── */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 0 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: none;
  }
  .nav.open {
    transform: translateX(0);
  }

  /* ── Nav links inside drawer ───────────────────────── */
  .nav a {
    display: block;
    width: 100%;
    padding: 20px 40px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--burgundy);
    text-align: left;
    text-decoration: none;
    min-height: 44px;
  }
  .nav a:hover {
    background: var(--cream-light);
  }
  .nav a.active {
    font-weight: 500;
    border-left: 3px solid var(--burgundy);
    padding-left: 37px;
  }

  /* ── Close button (X) inside drawer top-right ──────── */
  .nav-close {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  .nav-close::before,
  .nav-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: var(--burgundy);
  }
  .nav-close::before { transform: translate(-50%, -50%) rotate(45deg); }
  .nav-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

  /* ── PT toggle: show both in header AND in drawer ──── */
  .nav .lang-toggle {
    display: inline-block;
    margin-top: auto;
    margin-bottom: 0;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }

  /* Duplicate lang toggle visible next to hamburger */
  .header-inner {
    gap: 0.5rem;
  }

  /* ── Mobile lang toggle visible in header ────────────── */
  .lang-toggle-mobile {
    display: inline-block;
  }

  /* ── Hamburger animation ───────────────────────────── */
  .menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .menu-btn.open span:nth-child(2) { transform: rotate(-45deg) translate(0, 0); }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 4.5rem 2rem 2rem;
    max-width: 100%;
    margin: 0;
    text-align: center;
  }

  .hero-image {
    min-height: 50vh;
    height: 50vh;
  }

  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { order: -1; }
  .about-photo img { aspect-ratio: 4/3; max-height: 360px; }

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

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

  .section { padding: 1.5rem 0; }

  .botanical-strip { height: 220px; }
  .botanical-strip--short { height: 160px; }

  .footer-inner { gap: 1rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }

  .flow-step { grid-template-columns: 44px 1fr; gap: 0 1rem; }
  .flow-number { font-size: 1.4rem; }
  .flow-line { left: 22px; }

  .cert-logos { gap: 2rem; }
  .cert-logos img { height: 36px; }

  .page-header { padding: 1.75rem 1.5rem 0.5rem; margin-top: 64px; }

  .logo-sub { display: none; }

  .lang-row { flex-direction: column; align-items: center; gap: 0.75rem; }
}
