:root {
  --ink: #14212b;
  --muted: #64717c;
  --line: #dde4e9;
  --paper: #fffaf6;
  --surface: #ffffff;
  --teal: #00a7b5;
  --coral: #f05a72;
  --pink: #f05a92;
  --gold: #ffcf4a;
  --green: #1a9a6d;
  --shadow: 0 20px 55px rgba(20, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255, 250, 246, 0.94);
  border-bottom: 1px solid rgba(221, 228, 233, 0.8);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: min(248px, 58vw);
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  padding: 8px 0;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--pink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 86px);
  padding: clamp(34px, 6vw, 84px) clamp(18px, 5vw, 80px) 44px;
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.lead {
  max-width: 58ch;
  margin: 24px 0 0;
  color: #42505a;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.primary {
  color: #ffffff;
  background: var(--pink);
}

.secondary {
  color: var(--ink);
  background: var(--gold);
}

.text-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-media {
  position: relative;
  min-height: min(620px, 68vh);
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(0, 167, 181, 0.12), transparent 32%),
    linear-gradient(210deg, rgba(240, 90, 146, 0.15), transparent 42%),
    #ffffff;
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(20, 33, 43, 0.22);
}

.shelf {
  position: absolute;
  left: 9%;
  right: 9%;
  height: 14px;
  background: var(--ink);
}

.shelf-one {
  bottom: 32%;
}

.shelf-two {
  bottom: 15%;
}

.product {
  position: absolute;
  bottom: 32%;
  border: 2px solid var(--ink);
  box-shadow: 9px 9px 0 rgba(20, 33, 43, 0.14);
}

.product::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 18%;
  height: 8px;
  background: rgba(255, 255, 255, 0.75);
}

.tall {
  left: 15%;
  width: 18%;
  height: 48%;
}

.tube {
  left: 39%;
  width: 15%;
  height: 34%;
  transform: rotate(-7deg);
}

.box {
  right: 23%;
  width: 19%;
  height: 25%;
}

.bottle {
  right: 10%;
  width: 13%;
  height: 42%;
}

.jar {
  left: 28%;
  bottom: 15%;
  width: 19%;
  height: 16%;
  border-radius: 50% 50% 8px 8px;
}

.teal {
  background: var(--teal);
}

.coral {
  background: var(--coral);
}

.gold {
  background: var(--gold);
}

.pink {
  background: var(--pink);
}

.white {
  background: #ffffff;
}

.feature-band,
.page-shell {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 80px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.feature-card,
.contact-panel,
.policy {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(20, 33, 43, 0.08);
}

.feature-card {
  min-height: 238px;
  padding: 28px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  min-height: 38px;
  margin-bottom: 26px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card h2,
.promo h2,
.contact-panel h2,
.policy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.feature-card p,
.contact-panel p,
.policy p {
  margin: 0;
  color: var(--muted);
}

.promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 80px) clamp(48px, 7vw, 82px);
  padding: clamp(28px, 5vw, 48px);
  color: #ffffff;
  background: var(--ink);
}

.promo .eyebrow {
  color: var(--gold);
}

.promo h2 {
  max-width: 680px;
  color: #ffffff;
}

.page-shell {
  min-height: calc(100vh - 190px);
}

.page-hero,
.policy {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1,
.policy h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

.page-hero p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.12rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 900px;
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 38px);
}

.contact-panel a,
.policy a,
.site-footer a {
  color: var(--pink);
  font-weight: 800;
}

.policy {
  padding: clamp(26px, 5vw, 52px);
}

.policy h2 {
  margin-top: 30px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 64px);
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

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

  .nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    order: 2;
    min-height: 440px;
  }

  .feature-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 0;
  }

  .brand img {
    width: 220px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 360px;
  }
}
