:root {
  --page: #fffdf8;
  --surface: #f6f5f1;
  --surface-strong: #efebe3;
  --ink: #202225;
  --muted: #64676b;
  --line: #e6e2da;
  --accent: #c94d3f;
  --sage: #b9c7aa;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(230, 226, 218, 0.88);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(16px);
}

.brand-mark img {
  width: 132px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.main-nav a,
.brand-mark,
.herta-button,
.herta-arrow-link {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--ink);
}

.hero-section {
  position: relative;
  min-height: clamp(620px, calc(100vh - 72px), 760px);
  display: grid;
  grid-template-columns: minmax(380px, 40vw) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
}

.hero-image {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: clamp(620px, calc(100vh - 72px), 760px);
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: auto;
  padding: clamp(34px, 6vw, 72px) clamp(28px, 5vw, 72px);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 18px 0 18px;
  max-width: 480px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 5.8vw, 78px);
  font-weight: 400;
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 400;
  line-height: 1.03;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy p:not(.eyebrow) {
  max-width: 445px;
  font-size: 18px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  max-width: 100%;
}

.price-strip {
  display: inline-grid;
  gap: 2px;
  margin-top: 8px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(32, 34, 37, 0.08);
}

.price-strip strong,
.price-strip span {
  display: block;
}

.price-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.price-strip span {
  color: var(--muted);
  font-size: 13px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 36px);
  border-bottom: 1px solid var(--line);
}

.trust-row div {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.trust-row div:first-child {
  border-left: 1px solid var(--line);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  margin-bottom: 6px;
  font-size: 14px;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0;
}

.split-section,
.material-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.section-copy {
  max-width: 460px;
}

.wide-visual,
.showcase-frame,
.lifestyle-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.wide-visual img,
.showcase-frame img,
.lifestyle-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-visual {
  aspect-ratio: 16 / 9;
}

.chip-row {
  margin-top: 26px;
}

.product-showcase {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.showcase-frame {
  aspect-ratio: 16 / 7.5;
}

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

.product-meta-grid .herta-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
}

.product-meta-grid .herta-button {
  justify-self: start;
  margin-top: 4px;
}

.category-section {
  padding-top: 0;
}

.bonus-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.bonus-panel h3 {
  max-width: 660px;
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.04;
}

.bonus-panel p {
  max-width: 680px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  color: var(--muted);
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  content: "";
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.category-card div {
  padding: 22px;
}

.category-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lifestyle-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 5vw, 72px);
  background: var(--surface);
}

.lifestyle-visual {
  aspect-ratio: 16 / 9;
}

.lifestyle-copy {
  max-width: 520px;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.mini-metrics div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mini-metrics strong,
.mini-metrics span {
  display: block;
}

.mini-metrics strong {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.mini-metrics span {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.feature-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 16px;
  background: #ffffff;
}

.feature-list span {
  color: var(--accent);
  font-weight: 800;
}

.feature-list p {
  margin: 0;
}

.color-section {
  padding-top: 0;
}

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

.stock-card {
  display: grid;
  gap: 8px;
  min-height: 188px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.stock-card.is-hero {
  background:
    linear-gradient(180deg, rgba(185, 199, 170, 0.18), transparent 58%),
    #ffffff;
  box-shadow: 0 14px 34px rgba(32, 34, 37, 0.08);
}

.stock-card strong,
.stock-card p,
.stock-card small {
  display: block;
}

.stock-card strong {
  margin-top: 6px;
  font-size: 22px;
}

.stock-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.stock-card small {
  color: var(--muted);
  line-height: 1.45;
}

.swatch-panel {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.swatch-panel div {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 0;
}

.swatch-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-section {
  padding-top: 0;
}

.ugc-section {
  padding-top: 0;
}

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ugc-grid .herta-card {
  min-height: 230px;
}

.ugc-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(72px, 10vw, 118px) 20px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 720px;
}

.final-cta h2 {
  color: #ffffff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.final-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 780px;
  margin: 8px 0 4px;
}

.final-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 650;
}

.final-cta .herta-button--primary {
  background: #ffffff;
  color: var(--ink);
}

.final-cta .herta-button--primary:hover {
  background: var(--surface-strong);
}

.final-cta .herta-button--secondary-channel {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
}

.final-cta .herta-button--secondary-channel:hover {
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
}

.site-footer img {
  width: 116px;
  height: fit-content;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero-section {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-image {
    order: 2;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-position: center;
  }

  .hero-copy {
    order: 1;
    width: min(720px, 100%);
    padding: 42px 20px 34px;
  }

  .trust-row,
  .product-meta-grid,
  .category-grid,
  .faq-grid,
  .stock-grid,
  .ugc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .material-section,
  .lifestyle-section,
  .bonus-panel {
    grid-template-columns: 1fr;
  }

  .lifestyle-section {
    padding-inline: 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .swatch-panel {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand-mark img {
    width: 112px;
  }

  .header-action {
    display: none;
  }

  .hero-section {
    display: flex;
    flex-direction: column;
    min-height: auto;
    background: #fffdf9;
  }

  .hero-image {
    order: 2;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .hero-copy {
    position: relative;
    order: 1;
    align-self: flex-start;
    top: auto;
    left: auto;
    width: min(100%, 360px);
    max-width: 360px;
    padding: 28px 18px 24px;
    overflow: hidden;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1.02;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.08;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-copy .action-row,
  .final-cta .action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy .herta-button,
  .final-cta .herta-button {
    display: flex;
    width: 100%;
    min-width: 0;
    justify-content: center;
    white-space: normal !important;
    text-align: center;
  }

  .price-strip {
    width: 100%;
  }

  .trust-row,
  .product-meta-grid,
  .category-grid,
  .faq-grid,
  .stock-grid,
  .ugc-grid,
  .swatch-panel,
  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .trust-row div,
  .trust-row div:first-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    width: min(calc(100% - 32px), 360px);
    margin-left: 16px;
    margin-right: 0;
    padding: 64px 0;
  }

  .showcase-frame,
  .wide-visual,
  .lifestyle-visual {
    aspect-ratio: 4 / 3;
  }

  .feature-list div {
    grid-template-columns: 38px 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
