:root {
  --cream: #fff8ea;
  --milk: #fffdfa;
  --espresso: #2c1711;
  --cocoa: #653727;
  --rose: #c96d75;
  --raspberry: #e12d51;
  --pistachio: #168a52;
  --mint: #e8f7ed;
  --gold: #d79a24;
  --ink: #241512;
  --muted: #7a6258;
  --line: rgba(44, 23, 17, 0.13);
  --panel: rgba(255, 255, 255, 0.72);
  --shadow: 0 30px 90px rgba(80, 38, 22, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--milk);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(120deg, #fffdfa 0%, #fff3dd 42%, #f3fff5 100%);
  content: "";
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 34vw;
  height: 34vw;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.3;
  pointer-events: none;
}

.ambient-rose {
  top: 7vh;
  right: -9vw;
  background: var(--raspberry);
}

.ambient-green {
  bottom: 10vh;
  left: -10vw;
  background: var(--pistachio);
}

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

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 28px));
  min-height: 70px;
  margin: 14px auto 0;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(70, 34, 22, 0.1);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 92px;
  margin-left: 8px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  background: var(--espresso);
  color: #fffaf1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  width: min(1280px, calc(100% - 36px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 84px) 0 clamp(28px, 5vw, 66px);
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.9rem, 13vw, 10.8rem);
  font-weight: 500;
  line-height: 0.8;
}

h2 {
  margin: 0;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
}

h3 {
  margin: 0;
  color: var(--espresso);
  font-size: 1rem;
  line-height: 1.2;
}

.lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--cocoa);
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  font-weight: 650;
  line-height: 1.32;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-points span {
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 23, 17, 0.1);
  border-radius: 999px;
  color: var(--espresso);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(70, 34, 22, 0.08);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid var(--espresso);
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(59, 36, 26, 0.16);
}

.button.primary {
  background: var(--espresso);
  color: #fffaf1;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.64);
  color: var(--espresso);
}

.hero-image {
  position: relative;
  justify-self: end;
  width: min(100%, 720px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(44, 23, 17, 0.32));
  content: "";
}

.hero-image img {
  width: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.01);
}

.hero-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  width: min(310px, calc(100% - 44px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  color: var(--espresso);
  box-shadow: 0 18px 44px rgba(38, 21, 15, 0.16);
  backdrop-filter: blur(18px);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 1.05rem;
}

.hero-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(28px, 5vw, 64px);
}

.intro-band div {
  min-height: 136px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(44, 23, 17, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(70, 34, 22, 0.08);
}

.intro-band span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-band strong {
  display: block;
  margin-top: 8px;
  color: var(--espresso);
  font-size: clamp(1.26rem, 2vw, 1.68rem);
  line-height: 1.12;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 110px) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 86px);
}

.body-copy > p,
.production-panel p,
.distribution p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.flavor-grid article {
  min-height: 202px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(44, 23, 17, 0.1);
  border-radius: 22px;
  box-shadow: 0 16px 46px rgba(70, 34, 22, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.flavor-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(70, 34, 22, 0.12);
}

.flavor-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.swatch {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(44, 23, 17, 0.14);
}

.swatch.chocolate {
  background: linear-gradient(145deg, #33170e, #8a3e22);
}

.swatch.vanilla {
  background: linear-gradient(145deg, #fff6ce, #dba348);
}

.swatch.strawberry {
  background: linear-gradient(145deg, #ff91a0, #d9304f);
}

.swatch.pistachio {
  background: linear-gradient(145deg, #b8c86d, #198f50);
}

.production {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  width: min(1240px, calc(100% - 36px));
  margin: clamp(20px, 4vw, 48px) auto;
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(135deg, #2c1711 0%, #643221 72%, #8d3e2f 100%);
  border-radius: 34px;
  color: #fffaf1;
  box-shadow: 0 34px 90px rgba(44, 23, 17, 0.22);
}

.production .eyebrow,
.production h2 {
  color: #fffaf1;
}

.production-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 470px;
  padding: clamp(26px, 4vw, 52px);
  background:
    linear-gradient(rgba(44, 23, 17, 0.12), rgba(44, 23, 17, 0.76)),
    url("assets/vera-ice-logo.png") center / min(70%, 500px) no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
}

.production-panel p {
  max-width: 740px;
  color: rgba(255, 250, 241, 0.82);
}

.quality-list {
  display: grid;
  gap: 12px;
}

.quality-list div {
  display: grid;
  align-content: center;
  min-height: 146px;
  padding: 24px;
  background: rgba(255, 250, 241, 0.1);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 22px;
}

.quality-list strong {
  display: block;
  color: #fffaf1;
  font-size: 1.12rem;
}

.quality-list span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 241, 0.76);
}

.distribution {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.distribution p {
  margin-top: 24px;
}

.partner-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partner-types span {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(25, 143, 80, 0.2);
  border-radius: 18px;
  color: var(--espresso);
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(22, 138, 82, 0.08);
}

.partner-types span::before {
  width: 10px;
  height: 10px;
  margin-right: 12px;
  background: var(--pistachio);
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(24px, 4vw, 48px);
  padding: clamp(42px, 6vw, 74px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 23, 17, 0.1);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(70, 34, 22, 0.1);
}

.contact-section p {
  max-width: 640px;
  margin-top: 22px;
}

address {
  display: grid;
  gap: 12px;
  margin: 0;
  font-style: normal;
}

address a,
address span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 18px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--espresso);
  font-weight: 900;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 64px);
  background: #20120e;
  color: rgba(255, 250, 241, 0.78);
}

footer img {
  width: 84px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  .site-header nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
  }

  .site-header nav a {
    padding: 9px 10px;
  }

  .hero,
  .two-column,
  .production,
  .distribution,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    justify-self: stretch;
  }

  .hero-image img {
    min-height: 500px;
    object-position: 62% center;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .production-panel {
    min-height: 390px;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: min(100% - 20px, 1180px);
  }

  .brand-mark {
    width: 86px;
  }

  .site-header nav {
    font-size: 0.68rem;
  }

  .site-header nav a {
    padding: 8px 9px;
  }

  h1 {
    font-size: clamp(4.3rem, 23vw, 6.8rem);
  }

  .hero-actions,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-image {
    border-radius: 22px;
  }

  .hero-image img {
    min-height: 420px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -78px 14px 14px;
  }

  .flavor-grid,
  .partner-types {
    grid-template-columns: 1fr;
  }

  .flavor-grid article {
    min-height: 170px;
  }

  .contact-section,
  .production {
    border-radius: 24px;
  }
}
