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

/* ── Tokens ── */
:root {
  --white:        #FAFAF8;
  --green-wash:   #EDF4EE;
  --text:         #111110;
  --text-muted:   #7A7872;
  --pink:         #D4706A;
  --pink-light:   #FAF0EE;
  --green:        #1B4A30;
  --green-mid:    #2E7A4A;
  --border:       #E5E2DB;
  --font-serif:   'Fraunces', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --max-w:        1120px;
  --pad-x:        56px;
  --section-y:    104px;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h3 { font-size: 1.1rem; margin-bottom: 14px; line-height: 1.3; }
p  { margin-bottom: 18px; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section { padding: var(--section-y) 0; }

/* ── Button ── */
.btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--pink);
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: transparent; color: var(--pink); }

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
}

.nav-links { display: flex; align-items: center; gap: 36px; }

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { color: var(--pink) !important; font-weight: 500 !important; }

/* ── Section label ── */
.section-label {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 56px;
}
.section-label span {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.label-green span { color: var(--green-mid); }

/* ── Hero ── */
#hero {
  min-height: calc(100vh - 62px);
  display: flex;
  align-items: center;
  padding: 80px var(--pad-x);
  background: var(--white);
}

.hero-inner { width: 100%; max-width: var(--max-w); margin: 0 auto; }

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 36px;
}

#hero h1 {
  font-size: clamp(3.25rem, 7.5vw, 5.75rem);
  max-width: 900px;
  margin-bottom: 32px;
  color: var(--text);
  line-height: 1.07;
}

#hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 480px;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 28px; }

.hero-lang {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* ── Ticker ── */
.ticker-strip {
  background: var(--green);
  color: rgba(255, 255, 255, 0.7);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 34s linear infinite;
}

.ticker-inner span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── About ── */
#about { background: var(--green-wash); }

.about-grid {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 96px;
  align-items: start;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #D4E6D8;
  border: none;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
  line-height: 1.4;
  margin-bottom: 24px !important;
}

.about-text p { font-size: 0.975rem; color: rgba(17, 17, 16, 0.78); }

.about-footer {
  font-size: 0.775rem;
  letter-spacing: 0.03em;
  color: var(--text-muted) !important;
  border-top: 1px solid rgba(27, 74, 48, 0.15);
  padding-top: 18px;
  margin-top: 6px;
}

/* ── How I Work ── */
#work { background: var(--white); }

.section-sub {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 56px;
  line-height: 1.4;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  position: relative;
}

.card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--green-mid);
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  right: -1.5px;
}

.card-featured {
  background: var(--pink);
  border-color: var(--pink);
}

.card-featured::before { background: #b85d58; }

.card h3 { color: var(--text); }
.card-featured h3 { color: #fff; }

.card-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.card-featured .card-label { color: rgba(255, 255, 255, 0.65); }

.card p { font-size: 0.9rem; color: var(--text-muted); }
.card-featured p { color: rgba(255, 255, 255, 0.82); }

.card-detail { color: var(--text-muted) !important; font-size: 0.85rem !important; }
.card-featured .card-detail { color: rgba(255, 255, 255, 0.58) !important; }

.card-meta {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.card-featured .card-meta {
  color: rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 0.2);
}

/* ── Proof ── */
#proof { background: var(--pink-light); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid rgba(232, 49, 90, 0.15);
  margin-bottom: 72px;
}

.proof-item {
  padding: 36px 32px;
  border-right: 1.5px solid rgba(232, 49, 90, 0.15);
  background: #fff;
}
.proof-item:last-child { border-right: none; }

.proof-dash {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--pink);
  margin-bottom: 14px;
  line-height: 1;
}

.proof-item h3 {
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 14px;
}

.proof-item p { font-size: 0.875rem; color: var(--text-muted); }

.tags {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-top: 18px;
}

.testimonial { max-width: 700px; }

.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.7;
  color: var(--pink);
  margin-bottom: 16px;
  display: block;
}

blockquote {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 16px;
}

cite {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ── Contact ── */
#contact { background: var(--green); }

.contact-heading {
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.contact-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin-bottom: 10px;
}

.contact-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.38);
  max-width: 440px;
  margin-bottom: 48px;
}

.contact-details { display: flex; flex-direction: column; gap: 12px; }

.contact-details a {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}
.contact-details a:hover { color: #fff; }

.contact-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.contact-meta span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.32);
}

/* ── Footer ── */
footer {
  padding: 22px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--white);
}

.footer-newsletter {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-newsletter:hover { color: var(--pink); }

/* ── Responsive ── */
@media (max-width: 960px) {
  :root { --pad-x: 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .photo-placeholder, .about-photo img { max-width: 200px; aspect-ratio: 1 / 1; }
  .cards { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: none; border-bottom: 1.5px solid rgba(232, 49, 90, 0.15); }
  .proof-item:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  :root { --pad-x: 20px; --section-y: 64px; }

  nav { padding: 16px var(--pad-x); }
  .nav-links a:not(.nav-cta) { display: none; }

  #hero { min-height: 85vh; padding: 56px var(--pad-x); }
  #hero h1 { font-size: 2.8rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }

  .contact-heading { font-size: 3.5rem; }
  .contact-meta { flex-direction: column; gap: 6px; }

  footer { flex-direction: column; gap: 10px; text-align: center; }
}
