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

:root {
  --primary:        #1a3d2b;
  --primary-deep:   #122a1e;
  --primary-mid:    #2a5c40;
  --on-primary:     #ffffff;
  --on-primary-mute:#a8c8b4;

  --violet:         #3d1f5c;
  --violet-mid:     #5a3480;
  --violet-light:   #f2edf9;
  --violet-mute:    #c4aedd;

  --terra:          #b5552a;

  --canvas:         #ffffff;
  --canvas-cream:   #f4ede4;
  --canvas-sage:    #eef3ee;

  --ink:            #1c1c1a;
  --ink-mute:       #5a5a54;
  --hairline:       #ddd8d0;

  --font-display:   'Lora', Georgia, serif;
  --font-body:      'Hanken Grotesk', system-ui, sans-serif;

  --nav-height:     64px;
  --container-max:  1200px;
  --container-pad:  40px;

  --elev-1: 0 8px 32px rgba(0,0,0,0.08);
  --elev-2: 0 16px 48px rgba(61,31,92,0.18);
  --elev-3: 0 32px 80px rgba(26,61,43,0.18);
}

html { scroll-behavior: smooth; }


body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

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

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

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-height);
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--hairline);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav__link:hover { color: var(--primary); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  padding: 14px 28px;
  box-shadow: 0 4px 16px rgba(26,61,43,0.22);
}
.btn--primary:hover {
  background: var(--primary-mid);
  box-shadow: 0 6px 24px rgba(26,61,43,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  padding: 13px 27px;
  border: 1.5px solid var(--hairline);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--nav {
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border: 1.5px solid var(--primary);
}
.btn--nav:hover {
  background: var(--primary);
  color: #fff;
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
}

/* ── Headings ── */
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
}

/* ── Body text ── */
.body-lg {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-mute);
}

/* ── Lead ── */
.lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink-mute);
  margin-bottom: 22px;
}

/* ── Section base ── */
.section { padding: 112px 0; }
.section--white { background: var(--canvas); }
.section--cream { background: var(--canvas-cream); }
.section--sage  { background: var(--canvas-sage); }

.section__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section__intro--left {
  text-align: left;
  max-width: 680px;
  margin: 0 0 48px;
}

/* ── 2-col grid ── */
.section__grid2 {
  display: grid;
  gap: 64px;
  align-items: center;
}
.section__grid2--about   { grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 72px; }
.section__grid2--founder { grid-template-columns: 0.78fr 1.22fr; }

/* ── Hero ── */
.hero {
  padding: 100px 0 96px;
  background:
    radial-gradient(ellipse 55% 65% at 78% 35%, rgba(238,243,238,0.95) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 15% 75%, rgba(61,31,92,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 55% 5%,  rgba(181,85,42,0.07) 0%, transparent 55%),
    var(--canvas-cream);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero__h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero__desc {
  max-width: 480px;
  margin-top: 28px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero__art {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.hero__art-main {
  position: absolute;
  top: 0; right: 0;
  width: 82%;
  height: 78%;
  border-radius: 28px;
  background: var(--canvas-sage);
  box-shadow: var(--elev-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__plant {
  width: 80%;
  height: 80%;
  opacity: 0.85;
}

.hero__art-portrait {
  position: absolute;
  bottom: 0; left: 0;
  width: 52%;
  height: 46%;
  border-radius: 20px;
  border: 4px solid #fff;
  box-shadow: var(--elev-2);
  overflow: hidden;
}

.hero__art-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── About ── */
.about__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-top: 8px;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 6px;
}

.about__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border: 1.5px solid var(--primary);
  border-radius: 100px;
  padding: 11px 24px;
  width: max-content;
  transition: background 0.18s ease, color 0.18s ease;
}
.about__link:hover {
  background: var(--primary);
  color: #fff;
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  border-radius: 20px;
  padding: 40px 32px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover { transform: translateY(-4px); }

.card--plain {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  box-shadow: 0 12px 32px rgba(26,61,43,0.07);
}
.card--plain:hover {
  box-shadow: 0 16px 40px rgba(26,61,43,0.12);
}

.card--violet {
  background: var(--violet);
  color: #fff;
}

.card__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.card--violet .card__eyebrow { color: var(--violet-mute); }
.card--plain  .card__eyebrow { color: var(--primary); }

.card__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mute);
}

.card--violet .card__body { color: rgba(255,255,255,0.8); }

.card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(181,85,42,0.1);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 16px;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
}
.card--plain  .card__cta { color: var(--primary); }
.card--violet .card__cta { color: var(--violet-mute); }

/* ── How we work ── */
.how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  border-top: 1px solid var(--hairline);
}

.how__item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}

.how__num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--terra);
  flex-shrink: 0;
}

.how__label {
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
}

/* ── Founder ── */
.founder__photo-wrap {
  position: relative;
}

.founder__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(26,61,43,0.15);
}

.founder__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin: 16px 0 24px;
}

.founder__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: var(--violet);
}

.founder__text {
  display: flex;
  flex-direction: column;
}

/* ── Closing ── */
.closing {
  padding: 128px 40px;
  background:
    radial-gradient(ellipse 55% 80% at 80% 50%, rgba(42,92,64,0.5) 0%, transparent 65%),
    radial-gradient(ellipse 35% 55% at 10% 30%, rgba(61,31,92,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 90%, rgba(181,85,42,0.12) 0%, transparent 60%),
    var(--primary);
  text-align: center;
}

.closing__inner {
  max-width: 820px;
  margin: 0 auto;
}

.closing__h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
}

.closing__h2 em {
  color: var(--violet-mute);
}

.closing__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  margin-top: 40px;
}

.closing__list span {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--on-primary-mute);
}

.closing__sub {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  margin: 44px auto 0;
  max-width: 520px;
}

/* ── Footer ── */
.footer {
  padding: 80px 0;
  background: var(--primary-deep);
  color: #fff;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.footer__logo em { color: var(--violet-mute); }

.footer__note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-primary-mute);
  margin-top: 16px;
  max-width: 320px;
}

.footer__note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.footer__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-primary-mute);
  opacity: 0.7;
}

.footer__contact span,
.footer__contact a {
  font-size: 17px;
  color: #fff;
  text-decoration: none;
}

.footer__contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Language switcher ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-switch__item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.18s ease;
}
.lang-switch__item:hover { color: var(--primary); }
.lang-switch__item--active { color: var(--primary); cursor: default; }
.lang-switch__sep { font-size: 13px; color: var(--hairline); }

/* ── Responsive ── */
@media (max-width: 900px) {
  :root { --container-pad: 24px; }

  .hero__inner,
  .section__grid2--about,
  .section__grid2--founder { grid-template-columns: 1fr; gap: 48px; }

  .hero__art { display: none; }

  .nav__links { display: none; }

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

  .how__grid { grid-template-columns: 1fr; gap: 0; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }

  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 0 72px; }
  .hero__cta { flex-direction: column; }
  .btn--primary, .btn--ghost { width: 100%; justify-content: center; }
  .closing { padding: 80px 24px; }
}
