:root {
  --green: #075f33;
  --green-dark: #043d24;
  --lime: #9bc83e;
  --yellow: #f8b81b;
  --cream: #fffaf0;
  --ink: #183128;
  --muted: #66726a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; }

.site-header {
  width: min(1240px, calc(100% - 48px));
  height: 94px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--yellow);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-nav > a {
  font-weight: 700;
  text-decoration: none;
}

.header-nav > a:first-child { color: var(--muted); }
.header-nav > a:first-child:hover { color: var(--green); }

.link-arrow {
  width: 14px;
  height: 14px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

a:hover .link-arrow { transform: translate(2px, -2px); }

.hero {
  min-height: calc(100vh - 94px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 0 90px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: center;
}

.hero-copy, .hero-visual { min-width: 0; }

.eyebrow, .kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 28px; height: 2px; background: var(--yellow); }

h1, h2 {
  font-family: "Fraunces", serif;
  color: var(--green-dark);
  letter-spacing: -0.055em;
  margin: 20px 0;
  line-height: .98;
}

h1 { font-size: clamp(58px, 6.2vw, 92px); }
h1 em { color: var(--green); font-weight: inherit; }
h2 { font-size: clamp(46px, 5vw, 70px); }

.intro {
  max-width: 560px;
  margin: 30px 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}

.launch-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border: 1px solid rgba(7,95,51,.15);
  border-radius: 100px;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 17px;
  box-shadow: 0 14px 38px rgba(248,184,27,.28);
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(155,200,62,.6);
  animation: pulse 2s infinite;
}

@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(155,200,62,0); } }

.hero-visual { position: relative; min-height: 600px; }

.sun-shape {
  position: absolute;
  inset: 3% 2% 8% 8%;
  border-radius: 48% 52% 38% 62% / 54% 39% 61% 46%;
  background: linear-gradient(145deg, #ffe57b, var(--yellow));
  transform: rotate(-3deg);
}

.sun-shape::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: inherit;
}

.hero-video {
  position: absolute;
  left: 2%;
  top: 50%;
  width: 96%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 8px solid rgba(255,255,255,.85);
  border-radius: 32px;
  background: #000;
  box-shadow: 0 28px 70px rgba(4,61,36,.25);
  transform: translateY(-50%);
}

.floating-card {
  position: absolute;
  right: -5px;
  bottom: 5%;
  width: 148px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 20px 50px rgba(4,61,36,.25);
}

.floating-card span { font-size: 12px; text-transform: uppercase; letter-spacing: .15em; }
.floating-card strong { font-family: "Fraunces"; font-size: 22px; }

.products {
  max-width: 1240px;
  margin: auto;
  padding: 120px 0 140px;
}

.products-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.products-heading h2 { margin-bottom: 0; }

.products-heading > p {
  max-width: 460px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 310px);
  gap: 18px;
}

.product-tile {
  position: relative;
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #eee4d5;
}

.product-tile-feature {
  grid-column: span 6;
  grid-row: span 1;
}

.product-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s ease;
}

.product-tile-feature img { object-position: 50% 62%; }
.product-tile:hover img { transform: scale(1.035); }

.product-tile figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 100px;
  color: var(--green-dark);
  background: rgba(255,250,240,.9);
  box-shadow: 0 8px 24px rgba(4,61,36,.12);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.contact {
  min-height: calc(100vh - 130px);
  max-width: 1240px;
  margin: auto;
  padding: 130px 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.contact-copy h2 { margin-top: 18px; }
.contact-copy > p:last-child { color: var(--muted); font-size: 17px; line-height: 1.7; max-width: 380px; }
.contact-grid { border-top: 1px solid rgba(24,49,40,.16); }

.contact-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(24,49,40,.16);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
}

.contact-item a { display: inline-flex; align-items: center; gap: 5px; text-decoration: none; font-weight: 600; width: fit-content; }
.contact-item a:hover { color: var(--green); }
.contact-item p { margin: 0; line-height: 1.8; }
.address a { grid-column: 2; color: var(--green); }
.contact-label { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; padding-top: 4px; }

footer {
  background: var(--yellow);
  min-height: 130px;
  padding: 30px max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  font-size: 14px;
}

footer p:nth-child(2) { text-align: center; font-weight: 600; }
footer p:last-child { text-align: right; }
.footer-brand { color: var(--green-dark); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }

@media (max-width: 1288px) {
  .hero, .products, .contact { margin-left: 24px; margin-right: 24px; }
}

@media (max-width: 860px) {
  .site-header { width: calc(100% - 36px); height: 78px; }
  .brand img { width: 44px; height: 44px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 50px 0 80px; gap: 30px; }
  .hero-visual { min-height: 520px; }
  .products { padding: 90px 0 100px; }
  .products-heading { grid-template-columns: 1fr; gap: 22px; }
  .product-gallery { grid-template-rows: repeat(2, 280px); }
  .product-tile { grid-column: span 6; }
  .product-tile-feature { grid-row: span 1; }
  .contact { grid-template-columns: 1fr; gap: 40px; padding: 90px 0; }
}

@media (max-width: 560px) {
  .header-link { font-size: 13px; }
  .header-nav > a:first-child { display: none; }
  .brand span { display: none; }
  .hero { margin-left: 18px; margin-right: 18px; padding-top: 28px; }
  h1 { font-size: 44px; }
  .intro { font-size: 16px; margin: 24px 0; }
  .launch-pill { font-size: 13px; padding: 13px 16px; }
  .hero-visual { min-height: 380px; }
  .floating-card { width: 110px; }
  .floating-card strong { font-size: 18px; }
  .products { margin: 0 18px; padding: 72px 0; }
  .products-heading { margin-bottom: 34px; }
  .products-heading > p { font-size: 16px; }
  .product-gallery { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .product-tile, .product-tile-feature { min-width: 84vw; height: 430px; scroll-snap-align: center; }
  .hero-video { border-width: 5px; border-radius: 20px; }
  .contact h2 { font-size: 43px; }
  .contact { margin: 0 18px; padding: 72px 0; }
  .contact-item { grid-template-columns: 1fr; }
  .address a { grid-column: 1; }
  footer { grid-template-columns: 1fr; gap: 12px; text-align: center; padding: 30px 18px; }
  footer p:nth-child(2), footer p:last-child { text-align: center; margin: 0; }
  .footer-brand { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
