:root {
  color-scheme: light;
  --bg: #f4eee4;
  --bg-deep: #ead9c0;
  --surface: rgba(253, 247, 238, 0.76);
  --surface-strong: rgba(255, 251, 245, 0.92);
  --surface-dark: #24140f;
  --ink: #1f140f;
  --ink-muted: #6a5245;
  --line: rgba(62, 35, 23, 0.12);
  --accent: #8f2d1c;
  --accent-2: #d59a3f;
  --shadow: 0 28px 70px rgba(44, 18, 10, 0.14);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213, 154, 63, 0.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(143, 45, 28, 0.16), transparent 22%),
    linear-gradient(180deg, #f9f4eb 0%, var(--bg) 48%, #ebdecb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 84%);
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  line-height: 1.65;
  color: var(--ink-muted);
}

h1,
h2,
h3,
h4,
strong {
  color: var(--ink);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1;
  font-weight: 400;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 56px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(79, 40, 18, 0.08);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 206px;
  height: 72px;
}

.brand-logo {
  display: block;
  width: 206px;
  height: 72px;
  object-fit: contain;
}

.brand-mark,
.brand-copy {
  display: none;
}

.brand:not(:has(.brand-logo))::before {
  width: 206px;
  height: 72px;
  background: url("./assets/horizontal-logo.png") center / contain no-repeat;
  content: "";
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #42130b);
  color: #f9f1e4;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span:last-child {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.brand-mark,
.brand-copy {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

main {
  display: grid;
  gap: 28px;
  margin-top: 22px;
}

section {
  position: relative;
  overflow: clip;
}

.section-panel {
  display: grid;
  justify-items: center;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: clamp(80px, 12vw, 168px) max(20px, calc((100vw - var(--max-width)) / 2)) clamp(64px, 8vw, 112px);
  text-align: center;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
  max-width: 16ch;
  font-size: clamp(3.4rem, 6.4vw, 7rem);
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: clamp(26px, 4vw, 52px);
  border-radius: 999px;
  background: rgba(143, 45, 28, 0.08);
  color: var(--accent);
  border: 0;
  background: transparent;
  box-shadow: none;
  text-transform: uppercase;
}

    width: 100%;
    padding: 88px 20px 64px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 28px;
  min-height: min(860px, 84svh);
    max-width: 12ch;
  padding: clamp(28px, 5vw, 60px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 9vw, 6.8rem);
}

.hero-text {
  max-width: 34rem;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #4a120a);
  color: #fff7f0;
  box-shadow: 0 12px 28px rgba(111, 33, 18, 0.24);
}

.button-secondary {
  border: 1px solid rgba(81, 46, 29, 0.18);
  background: rgba(255, 249, 242, 0.68);
}

.hero-stage {
  position: relative;
  min-height: 560px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 12% 10% 8%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(213, 154, 63, 0.32) 0%, rgba(213, 154, 63, 0) 68%);
}

.hero-bottle {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 247, 238, 0.84), rgba(246, 232, 213, 0.72));
  box-shadow: 0 30px 60px rgba(37, 14, 8, 0.2);
}

.hero-bottle img,
.bottle-tile img,
.diaspora-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bottle-left {
  inset: 22% 48% 8% 0;
  transform: rotate(-8deg);
}

.hero-bottle-center {
  inset: 4% 20% 18% 28%;
}

.hero-bottle-right {
  inset: 28% 0 10% 58%;
  transform: rotate(9deg);
}

.story-panel,
.closing-panel,
.contact-section,
.collection-showcase {
  padding: clamp(24px, 4vw, 44px);
}

.story-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: end;
}

.story-panel h2,
.section-heading h2,
.closing-panel h2,
.contact-section h2,
.collection-copy h3 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.story-notes {
  display: grid;
  gap: 14px;
}

.story-notes p {
  padding: 16px 18px;
  border: 1px solid rgba(67, 30, 17, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 245, 0.7);
}

.founders-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 8vw, 136px);
  padding: clamp(72px, 10vw, 136px) max(20px, calc((100vw - var(--max-width)) / 2));
  background: #d9c4a6;
}

.founders-intro h2 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(2.8rem, 4.4vw, 5rem);
  line-height: 1;
}

.founders-intro > p:last-child {
  max-width: 36rem;
  margin-top: 24px;
  color: var(--ink);
}

.founder-profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-self: end;
}

.founder-profile {
  padding-top: 22px;
  border-top: 1px solid rgba(57, 30, 19, 0.22);
}

.founder-role {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-profile h3 {
  margin-top: 13px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.founder-profile p:last-child {
  margin-top: 16px;
  color: var(--ink);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-heading p:last-child {
  max-width: 40rem;
}

.carousel-controls {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(60, 34, 22, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.84);
}

.carousel-tab {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.carousel-tab:hover,
.carousel-tab:focus-visible {
  color: var(--ink);
}

.carousel-tab.is-active {
  background: linear-gradient(135deg, rgba(143, 45, 28, 0.12), rgba(213, 154, 63, 0.22));
  color: var(--ink);
}

.carousel-shell {
  margin-top: 22px;
}

.carousel-track {
  position: relative;
}

.collection-slide {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(64, 34, 20, 0.12);
  border-radius: calc(var(--radius-lg) - 6px);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(242, 231, 215, 0.84)),
    linear-gradient(135deg, rgba(143, 45, 28, 0.03), rgba(213, 154, 63, 0.08));
}

.collection-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.collection-kicker {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collection-tags li {
  padding: 10px 14px;
  border: 1px solid rgba(67, 30, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.84);
  color: var(--ink);
  font-size: 0.92rem;
}

.collection-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bottle-tile,
.diaspora-feature,
.diaspora-notes article {
  overflow: hidden;
  border: 1px solid rgba(67, 30, 17, 0.1);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: 0 18px 38px rgba(48, 20, 10, 0.08);
}

.bottle-tile {
  display: grid;
  min-height: 250px;
}

.bottle-tile-large {
  grid-row: span 2;
}

.bottle-tile img {
  aspect-ratio: 4 / 5;
}

.bottle-tile div,
.diaspora-feature div,
.diaspora-notes article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.spirit-meta {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bottle-tile h4,
.diaspora-feature h4,
.diaspora-notes h4 {
  font-size: 1.3rem;
}

.collection-stage-diaspora {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
  gap: 18px;
}

.diaspora-feature {
  display: grid;
  min-height: 100%;
}

.diaspora-feature img {
  aspect-ratio: 4 / 5;
}

.diaspora-notes {
  display: grid;
  gap: 18px;
}

.diaspora-notes article {
  position: relative;
  min-height: 150px;
  background: linear-gradient(135deg, rgba(255, 248, 240, 0.95), rgba(241, 225, 204, 0.9));
}

.diaspora-notes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(143, 45, 28, 0.1);
  color: var(--accent);
  font-family: "Fraunces", serif;
}

.closing-panel {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding-block: clamp(42px, 8vw, 82px);
  text-align: center;
}

.closing-panel h2 {
  max-width: 12ch;
}

.closing-panel p:last-child {
  max-width: 34rem;
}

.contact-section {
  display: grid;
  gap: 18px;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(67, 30, 17, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.78);
}

.contact-panel a {
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 4vw, 2.2rem);
}

.reveal-target {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .story-panel,
  .founders-panel,
  .collection-slide,
  .collection-stage-diaspora {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  .founders-panel,
  }

  .hero h1,
  .story-panel h2,

  .founder-profiles {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .section-heading h2,
  .closing-panel h2,
  .contact-section h2,
  .collection-copy h3 {
    max-width: none;
  }

  .hero-stage {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 251, 245, 0.7);
    color: inherit;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .hero {
    padding: 24px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .hero-stage {
    min-height: 420px;
  }

  .hero-bottle-left {
    inset: 20% 52% 8% 0;
  }

  .hero-bottle-center {
    inset: 2% 16% 16% 24%;
  }

  .hero-bottle-right {
    inset: 28% 0 10% 60%;
  }

  .carousel-controls {
    display: grid;
  }

  .collection-stage-grid {
    grid-template-columns: 1fr;
  }

  .bottle-tile-large {
    grid-row: span 1;
  }

  .contact-panel {
    align-items: flex-start;
  }
}

/* Full-width product release experience */
.page-shell {
  width: 100%;
  max-width: none;
}

.site-header {
  width: min(calc(100% - 32px), var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.hero,
.story-panel,
.closing-panel,
.contact-section {
  width: min(calc(100% - 32px), var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.collections {
  display: grid;
  gap: 28px;
}

.collection-intro {
  display: grid;
  gap: 12px;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 20px auto 0;
}

.collection-intro h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
}

.product-carousel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 68px) 0 0;
  color: #fff9f0;
}

.carousel-india {
  background:
    radial-gradient(circle at 73% 48%, rgba(222, 160, 61, 0.28), transparent 26%),
    linear-gradient(135deg, #321812 0%, #7e281b 48%, #bc7130 100%);
}

.carousel-diaspora {
  background:
    radial-gradient(circle at 76% 45%, rgba(213, 147, 55, 0.34), transparent 22%),
    linear-gradient(135deg, #141d30 0%, #314c70 54%, #b27536 140%);
}

.carousel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 64px), var(--max-width));
  margin: 0 auto 28px;
}

.carousel-heading h3 {
  color: #fff9f0;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.carousel-heading > p,
.product-copy p,
.carousel-heading .collection-kicker {
  color: rgba(255, 249, 240, 0.8);
}

.carousel-heading > p {
  max-width: 18rem;
  text-align: right;
}

.carousel-heading .collection-kicker,
.product-copy .spirit-meta {
  color: #f5cb8a;
}

.carousel-viewport {
  position: relative;
  width: 100%;
  min-height: 620px;
  margin: 0 auto;
}

.product-slide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  min-height: 620px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 249, 240, 0.2);
  border-bottom: 1px solid rgba(255, 249, 240, 0.2);
  background: rgba(255, 250, 244, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.product-slide[hidden] {
  display: none;
}

.product-slide.is-leaving {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  animation: carousel-slide-out 480ms ease-in forwards;
}

.product-slide.is-entering {
  animation: carousel-slide-in 480ms ease-out both;
}

@keyframes carousel-slide-in {
  from {
    opacity: 0;
    transform: translateX(3%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes carousel-slide-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-3%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-slide.is-leaving,
  .product-slide.is-entering {
    animation: none;
  }
}

.product-slide::after {
  position: absolute;
  right: 6%;
  bottom: 4%;
  color: rgba(255, 249, 240, 0.05);
  font-family: "Fraunces", serif;
  font-size: clamp(10rem, 25vw, 21rem);
  line-height: 0.7;
  content: "D";
  pointer-events: none;
}

.product-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 31rem;
  padding: clamp(28px, 5vw, 72px);
}

.product-copy h4 {
  color: #fff9f0;
  font-size: clamp(2.5rem, 3.8vw, 4.8rem);
  line-height: 1.04;
}

.product-brand,
.product-spirit {
  display: block;
}

.product-spirit {
  margin-top: 0.16em;
  font-size: 0.72em;
}

.product-copy > p:not(.spirit-meta) {
  max-width: 20rem;
  font-size: 1.06rem;
}

.product-story-link {
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: #f5cb8a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-page {
  min-height: 100vh;
  background: #f5efe7;
}

.founder-page .site-header {
  position: relative;
}

.founder-story {
  color: #fff9f0;
  background: var(--story-background, #301914);
}

.founder-story-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: clamp(40px, 8vw, 120px);
  width: min(calc(100% - 64px), var(--max-width));
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 140px) 0;
}

.founder-copy {
  align-self: center;
}

.founder-kicker,
.founder-copy p,
.founder-facts dt {
  color: rgba(255, 249, 240, 0.7);
}

.founder-kicker {
  margin-bottom: 22px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.founder-copy h1 {
  max-width: 11ch;
  color: #fff9f0;
  font-size: clamp(3.3rem, 6vw, 6.4rem);
}

.founder-copy h1 span {
  display: block;
  margin-top: 0.18em;
  color: #f5cb8a;
  font-size: 0.45em;
}

.founder-copy > p:last-child {
  max-width: 41rem;
  margin-top: 28px;
  color: rgba(255, 249, 240, 0.82);
  font-size: 1.08rem;
}

.founder-bottle {
  display: grid;
  align-self: center;
  justify-items: center;
  min-height: 430px;
}

.founder-bottle img {
  width: min(100%, 360px);
  height: min(64svh, 560px);
  object-fit: contain;
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.34));
}

.founder-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr);
  gap: 18px;
  width: min(calc(100% - 64px), var(--max-width));
  margin: clamp(52px, 9vw, 112px) auto 0;
}

.founder-visual {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: #2b1a13;
}

.founder-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.founder-visual:hover img {
  transform: scale(1.03);
}

.founder-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 20px 18px;
  background: linear-gradient(transparent, rgba(17, 9, 5, 0.78));
  color: #fff9f0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
  gap: clamp(36px, 8vw, 140px);
  width: min(calc(100% - 64px), var(--max-width));
  margin: 0 auto;
  padding: clamp(60px, 10vw, 132px) 0;
}

.founder-details h2 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 4.4vw, 4.8rem);
}

.founder-details p {
  max-width: 48rem;
  margin-top: 22px;
  color: var(--ink);
  font-size: 1.05rem;
}

.founder-facts {
  display: grid;
  align-content: start;
  gap: 18px;
  margin: 0;
  padding-top: 10px;
}

.founder-facts div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(57, 30, 19, 0.16);
}

.founder-facts dt {
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-facts dd {
  margin: 7px 0 0;
  line-height: 1.45;
}

.founder-facts a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .founder-story-inner,
  .founder-details,
  .founder-visuals {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }

  .founder-story-inner {
    gap: 34px;
  }

  .founder-bottle {
    min-height: 320px;
  }

  .founder-bottle img {
    height: 360px;
  }

  .founder-visual,
  .founder-visual img {
    min-height: 260px;
  }
}

.product-slide > img,
.concept-bottle {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  height: min(72vh, 560px);
  justify-self: center;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 36px 80px rgba(15, 7, 4, 0.32);
}

.product-slide > img {
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 26px 24px rgba(15, 7, 4, 0.3));
}

.concept-bottle {
  display: grid;
  place-items: center;
  width: 260px;
  border: 10px solid rgba(255, 250, 244, 0.18);
  border-radius: 100px 100px 34px 34px;
}

.concept-bottle::before {
  position: absolute;
  top: -58px;
  width: 112px;
  height: 66px;
  border-radius: 22px 22px 8px 8px;
  background: inherit;
  content: "";
}

.concept-bottle span {
  color: rgba(255, 249, 240, 0.92);
  font-family: "Fraunces", serif;
  font-size: 5rem;
}

.concept-mango {
  background: linear-gradient(160deg, #f4a120, #cc531f 82%);
}

.concept-chai {
  background: linear-gradient(160deg, #3a1711, #a55a2a 82%);
}

.carousel-navigation {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.carousel-arrow,
.carousel-dot {
  border: 0;
  cursor: pointer;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 249, 240, 0.3);
  border-radius: 50%;
  background: rgba(255, 249, 240, 0.1);
  color: #fff9f0;
  font-size: 1.35rem;
  transition: background 180ms ease, transform 180ms ease;
  pointer-events: auto;
}

.carousel-arrow:first-child {
  left: clamp(16px, 3vw, 48px);
}

.carousel-arrow:last-child {
  right: clamp(16px, 3vw, 48px);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: rgba(255, 249, 240, 0.22);
  transform: scale(1.06);
}

.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
  pointer-events: auto;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 249, 240, 0.36);
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
  width: 32px;
  background: #fff9f0;
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .story-panel,
  .closing-panel,
  .contact-section,
  .collection-intro {
    width: calc(100% - 20px);
  }

  .product-carousel {
    padding-right: 0;
    padding-left: 0;
  }

  .carousel-heading {
    display: grid;
    gap: 10px;
    width: calc(100% - 40px);
    padding: 0;
  }

  .carousel-heading > p {
    text-align: left;
  }

  .carousel-viewport {
    min-height: 660px;
  }

  .product-slide {
    grid-template-columns: 1fr;
    align-content: space-between;
    min-height: 660px;
  }

  .product-copy {
    padding: 34px 26px 0;
  }

  .product-copy h4 {
    font-size: clamp(2.4rem, 9vw, 3rem);
  }

  .product-slide > img,
  .concept-bottle {
    width: min(82%, 360px);
    height: 360px;
    margin-bottom: 24px;
  }

  .concept-bottle {
    height: 340px;
  }

}

/* Full-bleed editorial framing for the product releases */
body {
  background: #f5efe7;
}

body::before {
  display: none;
}

.page-shell {
  padding-bottom: 0;
}

.site-header {
  width: 100%;
  margin: 0;
  padding: 16px max(20px, calc((100vw - var(--max-width)) / 2));
  border: 0;
  border-bottom: 1px solid rgba(58, 27, 16, 0.1);
  border-radius: 0;
  background: rgba(250, 245, 237, 0.88);
  box-shadow: none;
}

main {
  gap: 0;
  margin-top: 0;
}

.hero,
.story-panel,
.closing-panel,
.contact-section {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: calc(100svh - 79px);
  gap: clamp(28px, 5vw, 88px);
  padding: clamp(52px, 7vw, 100px) max(20px, calc((100vw - var(--max-width)) / 2));
  background:
    radial-gradient(circle at 82% 35%, rgba(213, 154, 63, 0.28), transparent 22%),
    linear-gradient(135deg, #2a1510 0%, #5e2118 55%, #a25428 140%);
}

.hero::before {
  position: absolute;
  top: 10%;
  left: max(20px, calc((100vw - var(--max-width)) / 2));
  width: 116px;
  height: 1px;
  background: rgba(255, 249, 240, 0.45);
  content: "";
}

.hero h1 {
  max-width: 10ch;
  color: #fff9f0;
  font-size: clamp(3.5rem, 5.8vw, 6.6rem);
}

.hero-copy {
  align-items: flex-start;
}

.hero-text {
  color: rgba(255, 249, 240, 0.76);
}

.hero .eyebrow {
  margin-top: 18px;
  background: rgba(255, 249, 240, 0.1);
  color: #f7ce90;
}

.hero .button-primary {
  background: #fff9f0;
  color: #4a180f;
  box-shadow: none;
}

.hero .button-secondary {
  border-color: rgba(255, 249, 240, 0.3);
  background: transparent;
  color: #fff9f0;
}

.hero-stage::before {
  inset: 8% 2% 2%;
  background: radial-gradient(circle, rgba(239, 182, 85, 0.24) 0%, rgba(239, 182, 85, 0) 66%);
}

.hero-stage {
  grid-column: 2;
  width: 100%;
  min-width: 0;
  min-height: 560px;
}

.hero-bottle-left {
  inset: 18% 48% 6% 0;
}

.hero-bottle-center {
  inset: 3% 18% 12% 24%;
}

.hero-bottle-right {
  inset: 24% 0 8% 59%;
}

.story-panel {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(36px, 9vw, 160px);
  padding: clamp(56px, 10vw, 138px) max(20px, calc((100vw - var(--max-width)) / 2));
  background: #f5efe7;
}

.story-panel h2 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.story-notes {
  align-content: center;
  gap: 0;
  border-top: 1px solid rgba(68, 35, 21, 0.16);
}

.story-notes p {
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(68, 35, 21, 0.16);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
}

.collection-intro {
  width: min(calc(100% - 64px), var(--max-width));
  margin: 0 auto;
  padding: clamp(60px, 10vw, 128px) 0 clamp(36px, 5vw, 68px);
}

.collection-intro h2 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
}

.closing-panel {
  min-height: 72svh;
  align-content: center;
  justify-items: start;
  padding: clamp(62px, 11vw, 156px) max(20px, calc((100vw - var(--max-width)) / 2));
  text-align: left;
  background:
    radial-gradient(circle at 78% 48%, rgba(204, 133, 48, 0.25), transparent 25%),
    #21130e;
}

.closing-panel .eyebrow {
  background: rgba(255, 249, 240, 0.1);
  color: #f7ce90;
}

.closing-panel h2 {
  max-width: 11ch;
  color: #fff9f0;
  font-size: clamp(3.5rem, 7vw, 7.2rem);
}

.closing-panel p:last-child {
  color: rgba(255, 249, 240, 0.72);
  font-size: 1.08rem;
}

.contact-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  align-items: end;
  gap: 40px;
  padding: clamp(56px, 9vw, 124px) max(20px, calc((100vw - var(--max-width)) / 2));
  background: #e8d8c1;
}

.contact-section h2 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(67, 30, 17, 0.2);
  border-radius: 0;
  background: transparent;
}

.contact-panel a {
  padding-top: 18px;
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
}

.contact-panel span {
  max-width: 28rem;
  color: var(--ink-muted);
}

@media (max-width: 760px) {
  .site-header {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero,
  .story-panel,
  .closing-panel,
  .contact-section {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 20px 30px;
  }

  .hero::before {
    left: 20px;
  }

  .hero-stage {
    grid-column: 1;
    min-height: 440px;
  }

  .story-panel,
  .contact-section {
    grid-template-columns: 1fr;
    padding: 72px 20px;
  }

  .collection-intro {
    width: calc(100% - 40px);
    padding: 76px 0 44px;
  }

  .closing-panel {
    padding: 92px 20px;
  }
}

/* Seamless collection transition */
.collection-intro {
  display: grid;
  justify-items: center;
  width: 100%;
  margin: 0;
  padding: clamp(80px, 12vw, 168px) max(20px, calc((100vw - var(--max-width)) / 2)) clamp(64px, 8vw, 112px);
  text-align: center;
}

.collection-intro h2 {
  max-width: 16ch;
  font-size: clamp(3.4rem, 6.4vw, 7rem);
}

.carousel-heading {
  margin: 0 auto;
  padding-bottom: 18px;
}

.product-slide {
  border: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 760px) {
  .collection-intro {
    width: 100%;
    padding: 88px 20px 64px;
  }

  .collection-intro h2 {
    max-width: 12ch;
  }
}

/* Refined display scale and hero action spacing */
.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 4.5vw, 5.25rem);
  line-height: 0.98;
}

.hero-copy {
  gap: 20px;
}

.hero-actions {
  width: fit-content;
  margin-top: 8px;
  gap: 14px;
}

.story-panel h2 {
  font-size: clamp(2.7rem, 4.35vw, 4.9rem);
  line-height: 1;
}

.collection-intro h2 {
  font-size: clamp(2.9rem, 4.7vw, 5.35rem);
  line-height: 1;
}

.carousel-heading h3 {
  font-size: clamp(2.7rem, 4.4vw, 5rem);
  line-height: 1;
}

.carousel-label {
  color: #f5cb8a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.closing-panel h2 {
  font-size: clamp(3rem, 4.8vw, 5.5rem);
  line-height: 1;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    grid-column: 1;
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.3rem);
  }

  .hero-actions {
    width: 100%;
    margin-top: 4px;
  }
}

/* Tighter vertical rhythm across the full-bleed page */
.hero {
  min-height: auto;
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(48px, 5vw, 72px);
}

.hero-stage {
  min-height: 480px;
}

.story-panel {
  gap: clamp(36px, 6vw, 76px);
  padding-top: clamp(64px, 7vw, 88px);
  padding-bottom: clamp(64px, 7vw, 88px);
}

.collections {
  gap: 0;
}

.collection-intro {
  padding-top: clamp(68px, 7vw, 88px);
  padding-bottom: clamp(44px, 5vw, 64px);
}

.product-carousel {
  padding-top: clamp(30px, 3.5vw, 42px);
}

.closing-panel {
  min-height: auto;
  padding-top: clamp(76px, 8vw, 100px);
  padding-bottom: clamp(76px, 8vw, 100px);
}

.contact-section {
  padding-top: clamp(64px, 7vw, 88px);
  padding-bottom: clamp(64px, 7vw, 88px);
}

@media (max-width: 900px) {
  .hero-stage {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .hero-stage {
    min-height: 390px;
  }

  .story-panel,
  .contact-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .collection-intro {
    padding-top: 64px;
    padding-bottom: 40px;
  }

  .closing-panel {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

/* Shared alignment system */
:root {
  --page-gutter: max(32px, calc((100vw - 1120px) / 2));
  --carousel-copy-inset: max(64px, calc((100vw - 1120px) / 2));
}

.hero,
.story-panel,
.closing-panel,
.contact-section {
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

.hero-copy,
.hero-stage {
  align-self: center;
}

.story-panel {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
}

.story-panel > div:first-child {
  justify-self: start;
}

.carousel-heading {
  width: auto;
  margin-right: var(--carousel-copy-inset);
  margin-left: var(--carousel-copy-inset);
}

.product-copy {
  max-width: 34rem;
  padding-right: 36px;
  padding-left: var(--carousel-copy-inset);
}

.product-slide {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
}

.product-slide > img {
  width: min(100%, 560px);
  height: min(76vh, 590px);
}

.closing-panel,
.contact-section {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.closing-panel > * {
  grid-column: 1;
}

.contact-section > div:first-child,
.contact-panel {
  align-self: end;
}

.contact-section > div:first-child {
  justify-self: start;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    grid-column: 1;
  }

  .story-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .story-notes {
    width: min(100%, 42rem);
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 20px;
    --carousel-copy-inset: 28px;
  }

  .product-slide {
    grid-template-columns: 1fr;
  }

  .product-copy {
    padding-right: 28px;
  }

  .product-slide > img {
    width: min(82%, 360px);
    height: 360px;
  }
}