:root {
  --green: #173b32;
  --green-2: #244d41;
  --gold: #c7a15a;
  --cream: #f6f1e9;
  --paper: #fffdf9;
  --charcoal: #272827;
  --muted: #6f706d;
  --line: rgba(199, 161, 90, .55);
  --shadow: 0 24px 60px rgba(20, 48, 40, .10);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  background: var(--green);
  color: white;
  padding: 10px 14px;
  border-radius: 4px;
}
.skip-link:focus { top: 12px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, .94);
  border-bottom: 1px solid rgba(23, 59, 50, .12);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: block;
  width: 156px;
  height: 72px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .78rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: left .2s ease, right .2s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  left: 0;
  right: 0;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--green);
}

.hero {
  background:
    radial-gradient(circle at 12% 12%, rgba(199,161,90,.10), transparent 35%),
    var(--cream);
  border-bottom: 1px solid rgba(199,161,90,.28);
}

.hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(500px, 1.25fr);
  align-items: stretch;
}

.hero-copy {
  padding: clamp(72px, 8vw, 118px) clamp(30px, 5vw, 78px) clamp(60px, 7vw, 92px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green);
  line-height: 1.12;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(2.55rem, 4.7vw, 5rem);
  font-weight: 500;
  letter-spacing: -.035em;
}

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

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 500;
}

h3 {
  margin: 0 0 5px;
  font-size: 1.25rem;
  font-weight: 500;
}

.gold-rule {
  display: flex;
  align-items: center;
  width: min(310px, 80%);
  margin: 24px 0 20px;
}
.gold-rule::before,
.gold-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--gold);
}
.gold-rule span {
  width: 9px;
  height: 9px;
  margin: 0 11px;
  background: var(--gold);
  transform: rotate(45deg);
}

.lede {
  max-width: 600px;
  margin: 0;
  color: #454744;
  font-size: clamp(1rem, 1.3vw, 1.17rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  padding: 13px 25px;
  border: 1px solid var(--green);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
  font-size: .76rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(23,59,50,.14);
}
.button-primary {
  color: white;
  background: var(--green);
}
.button-secondary {
  color: var(--green);
  background: transparent;
  border-color: var(--gold);
}

.hero-image {
  min-height: 590px;
  background:
    linear-gradient(90deg, var(--cream) 0%, transparent 18%),
    url("assets/hero-organizer.jpg") center / cover no-repeat;
}

.section {
  padding: clamp(70px, 8vw, 110px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 50px;
}
.section-heading span {
  height: 1px;
  background: var(--line);
}
.section-heading h2 {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font: 700 .88rem/1 Arial, Helvetica, sans-serif;
}

.coming-soon {
  background: #fcfaf6;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.product-image-card {
  min-width: 0;
}

.product-image-card img {
  width: 100%;
  filter: drop-shadow(0 20px 25px rgba(45,35,20,.12));
}

.concept-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .78rem;
  font-style: italic;
}

.feature-list {
  display: grid;
  gap: 25px;
}

.feature {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(23,59,50,.12);
}

.feature:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.feature p {
  margin: 0;
  color: #555753;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--green);
  font: 500 1.45rem/1 Georgia, serif;
}
.feature-icon.bamboo {
  font-size: 1.2rem;
  letter-spacing: -.12em;
}

.story {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(420px, 1.25fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.story-mark {
  min-height: 350px;
  padding: 34px;
  display: grid;
  place-items: center;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.story-mark img {
  width: min(100%, 480px);
  mix-blend-mode: multiply;
}

.story-copy p:not(.eyebrow) {
  max-width: 700px;
  color: #4e504d;
  font-size: 1.05rem;
}

.launch-list {
  color: white;
  background: var(--green);
}

.launch-list h2,
.launch-list .eyebrow {
  color: white;
}
.launch-list .eyebrow {
  color: var(--gold);
}
.launch-list p {
  color: rgba(255,255,255,.78);
}

.launch-grid {
  display: grid;
  grid-template-columns: 1fr minmax(420px, .8fr);
  gap: 70px;
  align-items: center;
}

.interest-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.interest-form input {
  min-height: 50px;
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 3px;
  background: white;
  color: var(--charcoal);
  font: inherit;
}

.interest-form .button {
  border-color: var(--gold);
}

.form-message {
  grid-column: 1 / -1;
  min-height: 1.5em;
  margin: 3px 0 0;
  font-size: .85rem;
}

.site-footer {
  padding: 24px 0;
  color: rgba(255,255,255,.86);
  background: #102b24;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 45px;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
}

.footer-grid a {
  text-decoration: none;
}
.footer-grid a:hover { color: var(--gold); }

:focus-visible {
  outline: 3px solid rgba(199,161,90,.6);
  outline-offset: 4px;
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border: 1px solid rgba(23,59,50,.14);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 8px; }
  .site-nav a::after { display: none; }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-right: 0;
  }
  .hero-image {
    min-height: min(70vw, 520px);
    margin-inline: calc((100vw - 100%) / -2);
    background-image: url("assets/hero-organizer.jpg");
  }

  .product-feature-grid,
  .story-grid,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .story-mark {
    min-height: auto;
    max-width: 600px;
  }

  .launch-grid {
    gap: 35px;
  }
}

@media (max-width: 620px) {
  :root { --shell: min(100% - 28px, 1180px); }

  .nav-wrap { min-height: 76px; }
  .brand { width: 125px; height: 62px; }
  .site-nav { top: 72px; left: 14px; right: 14px; }

  .hero-copy {
    padding-top: 62px;
    padding-bottom: 54px;
  }
  h1 { font-size: clamp(2.3rem, 12vw, 3.45rem); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }

  .section { padding: 68px 0; }
  .section-heading { gap: 12px; }

  .feature {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }
  .feature-icon {
    width: 46px;
    height: 46px;
  }

  .story-mark { padding: 16px; }

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

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
