:root {
  --ink: #24233f;
  --muted: #6c7169;
  --paper: #fffdf8;
  --cream: #eef1e8;
  --white: #ffffff;
  --green: #1f2b18;
  --green-2: #7d9400;
  --gold: #8c9d22;
  --line: rgba(18, 37, 31, 0.14);
  --shadow: 0 22px 60px rgba(24, 33, 27, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin-top: 0;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  line-height: 1.04;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  font-weight: 650;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.2vw, 4.7rem);
  font-weight: 650;
}

h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 1.15rem;
  line-height: 1.16;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 850;
}

.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button-gold {
  background: var(--green-2);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(36, 35, 63, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 136px;
  height: auto;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-drop-trigger {
  padding: 10px 11px;
  border-radius: 7px;
  color: rgba(36, 35, 63, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-dropdown:hover .nav-drop-trigger,
.nav-dropdown:focus-within .nav-drop-trigger {
  background: rgba(125, 148, 0, 0.08);
  color: var(--green);
}

.nav-actions .button {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.82rem;
}

.nav-dropdown {
  position: relative;
}

.nav-drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-drop-trigger::after {
  content: "⌄";
  font-size: 0.8rem;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  padding: 10px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--green);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.area-hero {
  padding: 60px 0 78px;
  background:
    radial-gradient(circle at 62% 35%, rgba(125, 148, 0, 0.12), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #fbfaf4 100%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.area-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.78fr);
  gap: 64px;
  align-items: start;
}

.team-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 64px;
  align-items: center;
}

.founder-portrait {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 14%;
}

.founder-portrait figcaption {
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  background: var(--white);
}

.founder-portrait strong {
  color: var(--green);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.founder-portrait span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-points span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green-2);
  font-weight: 900;
}

.quick-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-form label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid rgba(18, 37, 31, 0.18);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 112px;
  padding-top: 13px;
  resize: vertical;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-status {
  padding: 12px 13px;
  border: 1px solid rgba(31, 131, 104, 0.3);
  border-radius: 6px;
  background: #e7f2ed;
  color: var(--green);
  font-weight: 850;
}

.metric-strip {
  background: var(--cream);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  padding: 34px 30px;
}

.metric strong {
  display: block;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
  margin-top: 38px;
}

.photo-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cream);
  box-shadow: 0 18px 48px rgba(18, 37, 31, 0.08);
}

.photo-card:first-child {
  min-height: 360px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.photo-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 11px 13px;
  border-radius: 6px;
  background: rgba(255, 252, 246, 0.92);
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 10px 30px rgba(18, 37, 31, 0.12);
}

.photo-credit {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.74rem;
}

.photo-credit a {
  color: inherit;
}

.section-alt {
  background: var(--cream);
}

.section-dark {
  color: var(--white);
  background: var(--green);
}

.section-dark h2,
.section-dark .lead {
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 44px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(24, 33, 27, 0.08);
}

.card p,
.content-block p,
.content-block li {
  color: var(--muted);
  font-size: 0.95rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.45fr);
  gap: 56px;
  align-items: start;
}

.content-block {
  max-width: 780px;
}

.content-block h2 {
  margin-top: 42px;
}

.content-block h2:first-child {
  margin-top: 0;
}

.side-panel {
  position: sticky;
  top: 90px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(24, 33, 27, 0.07);
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-grid span,
.tag-grid a {
  display: inline-flex;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green);
  font-weight: 850;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 36px 22px 0;
  cursor: pointer;
  color: var(--green);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 760px;
  margin: -5px 0 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 68px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #0f211c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr 0.8fr;
  gap: 44px;
  margin-bottom: 42px;
}

.site-footer .brand {
  margin-bottom: 16px;
}

.site-footer .brand-logo {
  width: 142px;
}

.site-footer p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-footer h4 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  margin: 0;
  font-size: inherit;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25d366;
  color: #092016;
  box-shadow: 0 16px 38px rgba(6, 39, 25, 0.28);
}

.whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 1040px) {
  .area-hero-grid,
  .team-hero-grid,
  .section-head,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  h1 {
    font-size: clamp(2.3rem, 10.5vw, 2.85rem);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .menu-open .nav {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .menu-open .nav-links,
  .menu-open .nav-actions {
    grid-column: 1 / -1;
    display: grid;
    width: 100%;
  }

  .nav-drop-trigger {
    padding: 12px 8px;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .area-hero,
  .section {
    padding: 66px 0;
  }

  .hero-points,
  .metric-grid,
  .card-grid,
  .photo-grid,
  .team-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .founder-portrait img {
    aspect-ratio: 1 / 1.1;
  }

  .metric {
    border-bottom: 1px solid var(--line);
  }

  .whatsapp {
    right: 12px;
    bottom: 12px;
  }
}
