:root {
  --bg: #f7f3ee;
  --bg-soft: #f3eee7;
  --surface: #fbf8f4;
  --text: #3f2a20;
  --muted: #7b6a5f;
  --line: rgba(63, 42, 32, 0.12);
  --line-strong: rgba(63, 42, 32, 0.18);
  --accent: #b88a43;
  --accent-dark: #9f7739;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(63, 42, 32, 0.06);

  --container: 1200px;
  --radius-lg: 24px;
  --radius-md: 18px;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;
  --space-11: 96px;
  --space-12: 120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #faf7f3 0%, #f4efe8 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
}

img {
  max-width: 100%;
  display: block;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.section {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.section-tight {
  padding-top: 28px;
  padding-bottom: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.9rem;
  line-height: 0.9;
  color: var(--text);
  white-space: nowrap;
}

.brand img {
  max-height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  min-width: 0;
}

.main-nav a,
.footer-nav a {
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
}

.main-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  border-color: var(--line-strong);
  background: var(--white);
}

.btn-solid {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-solid:hover {
  background: var(--accent-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.2s ease, border-color 0.2s ease;
  line-height: 1.2;
}

.text-link::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
}

.text-link:hover {
  color: var(--text);
  border-color: var(--text);
}



.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index:0;
  background-image: url("../assets/images/hero-dirty-soda.png");
  background-size: cover;
  background-position: center right;

  max-width: 2500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(247,241,234,0.96) 0%,
      rgba(247,241,234,0.90) 22%,
      rgba(247,241,234,0.70) 40%,
      rgba(247,241,234,0.35) 60%,
      rgba(247,241,234,0.00) 80%
    ),
    radial-gradient(
      circle at 20% 40%,
      rgba(255,255,255,0.35) 0%,
      rgba(255,255,255,0.10) 35%,
      rgba(255,255,255,0.00) 70%
    );
}
.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 540px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-copy h1 span {
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}
.hero-sub {
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #6f5d4b;
}

.hero-meta {
  font-size: 1rem;
  color: #7b6a59;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: #b4854a;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.btn-link {
  color: #6f5d4b;
  text-decoration: none;
  border-bottom: 1px solid #b4854a;
  padding-bottom: 4px;
}

.hero-text {
  margin: 24px 0 32px;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.05vw, 1.03rem);
  line-height: 1.65;
}



.media-placeholder {
  background:
    linear-gradient(135deg, rgba(184, 138, 67, 0.08), rgba(255, 255, 255, 0.55)),
    linear-gradient(180deg, #f7f1ea, #efe6db);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
  box-shadow: var(--shadow);
}

.hero-media {
  width: 100%;
  height: 420px;
  max-width: 520px;
  margin-left: auto;
  border-radius: var(--radius-lg);
}

.event-types {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8f4ef;
}

.icon-row-header {
  text-align: center;
  margin-bottom: 34px;
}

.icon-row-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  
}

.bottom-line {
  max-width: 300px;
   color: var(--text);
    border-bottom: 1px solid var(--line-strong);
    margin: 5px auto;
}

.icon-row-subtext {
  margin: 0 auto;
  max-width: 620px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--muted);
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.icon-card {
  text-align: center;
  padding: 8px 18px;
}

.event-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  object-fit: contain;
  opacity: 0.9;
}

.icon-card h2 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.icon-card p {
  margin: 0 auto;
  max-width: 280px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 992px) {
  .icon-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .icon-row-header {
    margin-bottom: 28px;
  }

  .icon-card p {
    max-width: 360px;
  }
}

.editorial-section {
  border-top: 1px solid var(--line);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.section-aside {
  padding-top: 8px;
}

.section-label {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.section-body {
  margin: 0 0 20px;
  max-width: 260px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.section-content {
  min-width: 0;
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.drink-card h3 {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.drink-image {
  width: 100%;
  height: 240px;
  border-radius: 0;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-text {
  max-width: 520px;
}

.why-text h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: var(--text);
}

.why-text p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 18px;
}

.why-image {
  background-image: url("../assets/images/why_dirty_sodas.png");
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.dr1 {
  background-image: url("../assets/images/island_vanilla.png");
  background-size: cover;
  background-position: center center;
  width: 100%;
  
}
.dr2 {
  background-image: url("../assets/images/coco_cola.png");
  background-size: cover;
  background-position: center center;
  width: 100%;
  
}
.dr3 {
  background-image: url("../assets/images/golden_mango.png");
  background-size: cover;
  background-position: center center;
  width: 100%;
  
}
.dr4 {
  background-image: url("../assets/images/cherry_sunset.png");
  background-size: cover;
  background-position: center center;
  width: 100%;
  
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 42px 20px 0;
  font-size: 0.97rem;
  line-height: 1.45;
  color: var(--text);
  font-weight: 400;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 42px 20px 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-inset {


  margin-left: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand-footer {
  font-size: 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
  line-height: 1.3;
}

.footer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.footer-meta span::before {
  content: "|";
  color: var(--line-strong);
}

@supports (-moz-appearance: none) {
  body {
    line-height: 1.5;
  }

  .main-nav a,
  .footer-nav a {
    font-size: clamp(0.7rem, 0.86vw, 0.78rem);
    letter-spacing: 0.18em;
  }

  .btn {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .text-link {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.17em;
    line-height: 1.45;
  }

  .hero-copy h1 {
    font-size: clamp(2.85rem, 4.5vw, 4.25rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
  }

  .hero-text {
    font-size: clamp(0.93rem, 1vw, 1rem);
    line-height: 1.58;
  }

  .section-label {
    font-size: 1.78rem;
    line-height: 0.98;
    letter-spacing: 0.06em;
  }

  .section-body {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .icon-card h2 {
    font-size: 0.84rem;
    letter-spacing: 0.18em;
  }

  .drink-card h3 {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .why-text h2 {
    font-size: clamp(1.9rem, 2.7vw, 2.3rem);
    line-height: 1;
  }

  .why-text p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .faq-item summary {
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .faq-item p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .footer-meta {
    font-size: 0.84rem;
  }
}

@media (max-width: 1400px) {
  :root {
    --container: 1140px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 480px);
    gap: 48px;
  }

  .hero-media {
    height: 390px;
    max-width: 480px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  @supports (-moz-appearance: none) {
    .hero-copy h1 {
      font-size: clamp(2.8rem, 4.4vw, 4.1rem);
    }
  }
}

@media (max-width: 1200px) {
  :root {
    --container: 1040px;
  }

  .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }

  .main-nav {
    gap: 24px;
  }

  .main-nav a,
  .footer-nav a {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5vw, 4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 40px;
  }

  .hero-media {
    height: 360px;
    max-width: 420px;
  }

  .editorial-grid {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 36px;
  }

  .section-label {
    font-size: 1.85rem;
  }

  .drink-image {
    height: 210px;
  }

  .why-image {
    height: 380px;
  }

  @supports (-moz-appearance: none) {
    .hero-copy h1 {
      font-size: clamp(2.7rem, 4.2vw, 3.75rem);
    }

    .section-label {
      font-size: 1.72rem;
    }
  }
}

@media (max-width: 992px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-header {
    position: static;
  }

  .nav-wrap {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
    min-height: auto;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px 22px;
  }

  .btn-outline {
    justify-self: start;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-grid,
  .editorial-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5vw, 3.5rem);
    max-width: 700px;
  }

  .hero-media {
    max-width: 100%;
    height: 360px;
    margin-left: 0;
  }

  .icon-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-aside {
    padding-top: 0;
  }

  .section-body {
    max-width: 100%;
  }

  .drink-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drink-image {
    height: 240px;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-image {
    height: 320px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-meta {
    flex-wrap: wrap;
    white-space: normal;
  }

  .footer-meta span::before {
    display: none;
  }

  @supports (-moz-appearance: none) {
    .hero-copy h1 {
      font-size: clamp(2.6rem, 4.4vw, 3.3rem);
    }
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    font-size: 1.5rem;
  }

  .brand img {
    max-height: 44px;
  }

  .main-nav {
    gap: 14px 18px;
  }

  .main-nav a,
  .footer-nav a {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .btn {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .hero-copy h1 {
    font-size: 2.75rem;
    line-height: 0.94;
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .hero-text,
  .section-body,
  .faq-item summary,
  .faq-item p {
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-media {
    height: 280px;
    border-radius: 18px;
  }

  .icon-row {
    grid-template-columns: 1fr;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .icon-card h2 {
    font-size: 0.82rem;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-label {
    font-size: 1.6rem;
  }

  .drink-grid {
    grid-template-columns: 1fr;
  }

  .drink-image {
    height: 240px;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-image {
    height: 260px;
  }

  .site-footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer-wrap {
    gap: 16px;
  }

  @supports (-moz-appearance: none) {
    .hero-copy h1 {
      font-size: 2.5rem;
    }

    .section-label {
      font-size: 1.5rem;
    }
  }
}

.in-person-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.in-person-events-copy .section-body {
  max-width: 100%;
}

.in-person-events-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 28px 0 32px;
}

.in-person-events-block h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
}

.in-person-events-block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.in-person-events-block li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.in-person-events-media img {
  width: 100%;
  display: block;
  border-radius: 24px;
  border: 1px solid var(--line);
}

@media (max-width: 992px) {
  .in-person-events-grid,
  .in-person-events-columns {
    grid-template-columns: 1fr;
  }
}

/*DIY social kit style */


.kit-hero {
  position: relative;
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.kit-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/images/diy_soda_social_kit.png");
  background-size: cover;
  background-position: center center;
  max-width: 2500px;
  margin-left: auto;
  margin-right: auto;
}

.kit-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(247,241,234,0.96) 0%,
      rgba(247,241,234,0.92) 24%,
      rgba(247,241,234,0.78) 42%,
      rgba(247,241,234,0.35) 62%,
      rgba(247,241,234,0.04) 82%
    );
}

.kit-hero-inner {
  position: relative;
  z-index: 2;
}

.kit-hero-copy {
  max-width: 560px;
}

.kit-eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.kit-hero-copy h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.kit-subhead {
  margin: 0 0 30px;
  max-width: 540px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.kit-feature-grid,
.kit-bestfor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.kit-feature-card,
.kit-bestfor-card {
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--line);
  padding: 24px;
}

.kit-feature-card h3,
.kit-bestfor-card h3,
.kit-package-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
}

.kit-feature-card p,
.kit-bestfor-card p,
.kit-package-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.kit-includes-list {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.kit-includes-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.kit-includes-image {
  background-image: url("../assets/images/diy_soda_look.png");
  background-size: cover;
  background-position: center center;
}

.kit-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.kit-package-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.45);
  padding: 28px 24px;
}

.kit-package-card.featured {
  border-color: var(--accent);
  background: rgba(184,138,67,0.08);
}

.kit-package-name {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.kit-cta-section {
  background: rgba(255,255,255,0.25);
}

.kit-cta-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.kit-cta-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

@media (max-width: 992px) {
  .kit-feature-grid,
  .kit-bestfor-grid,
  .kit-package-grid,
  .kit-cta-wrap {
    grid-template-columns: 1fr;
  }

  .kit-cta-actions {
    flex-wrap: wrap;
  }

  .kit-hero {
    min-height: 460px;
  }

  .kit-hero-copy h1 {
    font-size: clamp(2.6rem, 6vw, 3.4rem);
  }
}

@media (max-width: 640px) {
  .kit-hero {
    min-height: 400px;
  }

  .kit-subhead,
  .kit-feature-card p,
  .kit-bestfor-card p,
  .kit-package-card p {
    font-size: 0.95rem;
  }
}

.menu-showcase-section {
  background: linear-gradient(180deg, #faf7f3 0%, #f5f0ea 100%);
}

.menu-showcase-header {
  text-align: center;
}

.menu-showcase-kicker {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
}

.menu-showcase-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.menu-tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 400;
  line-height: 1.4;
  color: #8d7b6e;
  cursor: pointer;
  transition: color 0.2s ease;
}

.menu-tab:hover,
.menu-tab.is-active {
  color: var(--text);
}

.menu-tab-divider {
  color: #d4c8bd;
  font-size: 1.4rem;
  line-height: 1;
}

.menu-showcase-rule {
  height: 1px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 44px;
  background: rgba(63, 42, 32, 0.12);
}

.menu-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(63, 42, 32, 0.08);
  border-bottom: 1px solid rgba(63, 42, 32, 0.08);
}

.menu-showcase-card {
  text-align: center;
  padding: 44px 28px 36px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.menu-showcase-card + .menu-showcase-card {
  border-left: 1px solid rgba(63, 42, 32, 0.08);
}

.menu-showcase-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-showcase-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
}

.menu-showcase-card h3 {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text);
}

.menu-showcase-card p {
  margin: 0;
  max-width: 230px;
  font-size: 1rem;
  line-height: 1.7;
  color: #8a786b;
}

.menu-showcase-cta {
  margin-top: 40px;
  padding: 30px 34px;
  background: rgba(184,138,67,0.08);
  border: 1px solid rgba(63, 42, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.menu-showcase-cta-copy {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.menu-showcase-cta-copy strong {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

.menu-showcase-cta-copy span {
  font-size: 1rem;
  line-height: 1.6;
  color: #8a786b;
}

.menu-showcase-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0 0 4px;
  font-size: 1rem;
  color: #8a786b;
  border-bottom: 1px solid rgba(63, 42, 32, 0.18);
  cursor: pointer;
  white-space: nowrap;
}

.menu-showcase-link:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

@media (max-width: 1100px) {
  .menu-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-showcase-card:nth-child(3),
  .menu-showcase-card:nth-child(4) {
    border-top: 1px solid rgba(63, 42, 32, 0.08);
  }

  .menu-showcase-card:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 768px) {
  .menu-showcase-section {
    padding: 72px 0 56px;
  }

  .menu-showcase-tabs {
    gap: 10px;
  }

  .menu-tab {
    font-size: 1rem;
  }

  .menu-showcase-grid {
    grid-template-columns: 1fr;
  }

  .menu-showcase-card {
    min-height: auto;
    padding: 34px 22px 30px;
  }

  .menu-showcase-card + .menu-showcase-card {
    border-left: 0;
    border-top: 1px solid rgba(63, 42, 32, 0.08);
  }

  .menu-showcase-cta {
    padding: 24px 22px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.menu-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.menu-open {
  max-height: 1200px;
}