:root {
  --bg-cream: #f7ecdf;
  --bg-soft: #fff7ef;
  --sand: #e8cfb3;
  --sand-deep: #ceb08d;
  --ink: #1f1712;
  --muted: #5e5046;
  --paprika: #b5482d;
  --paprika-deep: #7d2818;
  --olive: #5b5d37;
  --line: rgba(31, 23, 18, 0.1);
  --shadow: 0 28px 80px rgba(60, 28, 10, 0.16);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --site-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(181, 72, 45, 0.14), transparent 24%),
    radial-gradient(circle at left 80%, rgba(91, 93, 55, 0.12), transparent 22%),
    linear-gradient(180deg, #f9efe4 0%, #f2e2cf 48%, #ebd6bf 100%);
}

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

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

button,
input {
  font: inherit;
}

.topbar {
  padding: 12px 16px;
  background: var(--ink);
  color: #fff4ec;
  text-align: center;
  font-size: 0.94rem;
  letter-spacing: 0.03em;
}

.topbar p {
  margin: 0;
}

.site-header,
.hero,
.section,
.site-footer,
.trust-strip {
  width: min(calc(100% - 32px), var(--site-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.45);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: #fff8f1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  padding: 34px 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--paprika-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.gallery-heading h2,
.story-copy h2,
.spotlight-copy h2,
.waitlist-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.94;
  letter-spacing: 0.03em;
}

.hero h1 {
  max-width: 8.2ch;
  font-size: clamp(4rem, 8vw, 8rem);
}

.hero-text,
.section-heading p,
.story-copy > p,
.spotlight-copy p,
.waitlist-copy p,
.trust-item p,
.product-body p,
.serve-card p,
.story-points p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 56ch;
  margin: 24px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  background: linear-gradient(135deg, var(--paprika-deep), var(--paprika));
  color: #fff8f1;
  box-shadow: 0 18px 40px rgba(125, 40, 24, 0.24);
}

.button-secondary {
  border: 1px solid rgba(31, 23, 18, 0.12);
  background: rgba(255, 247, 239, 0.78);
}

.hero-notes,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-notes li,
.tag-list li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 23, 18, 0.08);
  background: rgba(255, 248, 241, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  min-height: 740px;
}

.hero-poster,
.story-image,
.gallery-card,
.spotlight-image,
.product-card,
.serve-card,
.waitlist-form,
.trust-strip,
.story-copy {
  box-shadow: var(--shadow);
}

.hero-poster {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-xl);
}

.hero-poster img,
.story-image img,
.gallery-card img,
.spotlight-image img {
  height: 100%;
  object-fit: cover;
}

.hero-poster-main {
  inset: 72px 0 0 86px;
}

.hero-poster-top {
  top: 0;
  left: 0;
  width: 46%;
  height: 290px;
  transform: rotate(-6deg);
}

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(31, 23, 18, 0.92);
  color: #fff7ef;
}

.hero-badge span {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 248, 241, 0.74);
}

.trust-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.4);
}

.trust-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paprika-deep);
}

.trust-item p,
.footer-brand,
.site-footer p {
  margin: 0;
}

.section {
  padding: 88px 0;
}

.section-heading,
.gallery-heading {
  max-width: 760px;
}

.section-heading h2,
.gallery-heading h2,
.story-copy h2,
.spotlight-copy h2,
.waitlist-copy h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  margin-bottom: 16px;
}

.product-grid,
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 241, 0.82);
}

.product-art {
  min-height: 360px;
  padding: 24px;
}

.product-art img {
  height: 100%;
  object-fit: contain;
}

.product-red {
  background: linear-gradient(180deg, #c85637 0%, #7f2415 100%);
}

.product-orange {
  background: linear-gradient(180deg, #efc56e 0%, #c96f2a 100%);
}

.product-olive {
  background: linear-gradient(180deg, #cbab74 0%, #5c5e37 100%);
}

.product-body {
  padding: 24px 24px 28px;
}

.product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.product-meta h3,
.serve-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

.product-meta h3 {
  font-size: 2rem;
}

.product-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31, 23, 18, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-split,
.spotlight,
.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.story-image,
.spotlight-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 620px;
}

.story-copy,
.waitlist-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 241, 0.82);
}

.story-copy {
  padding: 36px;
}

.story-points {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.story-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.serve-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 248, 241, 0.78);
}

.serve-card h3 {
  font-size: 1.95rem;
  line-height: 1;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.9fr;
  gap: 18px;
  margin-top: 34px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 26px;
  min-height: 280px;
}

.gallery-card.wide {
  grid-column: span 2;
  min-height: 340px;
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 640px;
}

.logo-card {
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 248, 241, 0.82);
  border: 1px solid var(--line);
}

.logo-card img {
  width: 78%;
  height: auto;
  object-fit: contain;
}

.spotlight {
  align-items: center;
}

.spotlight-image {
  min-height: 540px;
}

.waitlist-copy {
  padding-right: 24px;
}

.waitlist-form {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
}

.waitlist-form input {
  width: 100%;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid rgba(31, 23, 18, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.waitlist-form button {
  min-height: 62px;
  border: 0;
  border-radius: 18px;
  background: var(--ink);
  color: #fff7ef;
  font-weight: 800;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-note.success {
  color: #225f35;
  font-weight: 800;
}

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

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-link {
  font-weight: 700;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 1120px) {
  .hero,
  .story-split,
  .spotlight,
  .waitlist,
  .product-grid,
  .serve-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .gallery-layout {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-stage {
    min-height: 640px;
  }

  .waitlist-copy {
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3.2rem, 16vw, 5.6rem);
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-poster-main {
    inset: 60px 0 0 42px;
  }

  .hero-poster-top {
    width: 48%;
    height: 190px;
  }

  .hero-badge {
    left: 10px;
    bottom: 8px;
    padding: 16px 18px;
  }

  .section {
    padding: 60px 0;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.wide,
  .gallery-card.tall,
  .story-image,
  .spotlight-image {
    min-height: 280px;
  }

  .product-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
