:root {
  --bg: #f0efec;
  --bg-soft: #e8e2d8;
  --surface: rgba(255, 255, 252, 0.88);
  --surface-solid: #fffffc;
  --ink: #4f433a;
  --text: #5b4d43;
  --muted: #9a9188;
  --line: rgba(87, 74, 64, 0.18);
  --rose: #8d4b44;
  --rose-deep: #70423b;
  --teal: #8f7357;
  --teal-dark: #5a4638;
  --sky: #efeee9;
  --gold: #bd9966;
  --shadow: 0 24px 70px rgba(63, 52, 45, 0.12);
  --soft-shadow: 0 14px 36px rgba(63, 52, 45, 0.08);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(160px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 104px;
  padding: 16px clamp(22px, 4vw, 58px);
  color: var(--ink);
  background: rgba(255, 255, 252, 0.92);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 252, 0.94);
  box-shadow: 0 14px 34px rgba(54, 38, 28, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.header-link,
.top-nav a,
.btn,
.text-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-logo {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  display: grid;
  width: 230px;
  height: 122px;
  place-items: start center;
  gap: 0;
  padding-top: 2px;
  border-radius: 0 0 130px 130px;
  background: rgba(255, 255, 252, 0.98);
  box-shadow: 0 12px 28px rgba(63, 52, 45, 0.05);
  transform: translateX(-50%);
}

.brand-logo::before,
.brand-logo::after {
  content: none;
}

.logo-word {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 28px;
  color: var(--ink);
  line-height: 1;
  text-align: center;
}

.logo-word strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.logo-word small {
  margin-top: 4px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.top-nav {
  position: absolute;
  top: 32px;
  left: clamp(170px, 15vw, 330px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 6px;
  border: 0;
  background: transparent;
  font-size: 14px;
}

.top-nav a {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

.top-nav a:hover {
  background: rgba(189, 153, 102, 0.12);
  color: var(--ink);
}

.header-link {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(87, 74, 64, 0.18);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.4);
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-link:hover {
  transform: translateY(-1px);
  background: var(--surface-solid);
}

.hero {
  position: relative;
  min-height: calc(100vh - 20px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 138px clamp(18px, 5vw, 72px) 72px;
  background: #4f4037;
  color: #fffffc;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 252, 0.38);
  border-radius: 0;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 255, 252, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(69, 52, 43, 0.22) 0%, rgba(79, 57, 47, 0.18) 38%, rgba(63, 45, 38, 0.72) 100%),
    linear-gradient(90deg, rgba(55, 39, 34, 0.66) 0%, rgba(55, 39, 34, 0.28) 46%, rgba(55, 39, 34, 0.68) 100%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.82) contrast(0.96);
  transform: none;
}

.hero-shade {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(840px, 100%);
  min-width: 0;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fffffc;
  font-size: clamp(48px, 6.3vw, 86px);
  line-height: 0.98;
}

.title-line {
  display: block;
}

h2 {
  max-width: 920px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.07;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.22;
}

.lead {
  max-width: 720px;
  margin-bottom: 32px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 252, 0.9);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: #b88d52;
  color: #fffaf2;
  box-shadow: 0 16px 30px rgba(85, 61, 43, 0.26);
}

.btn.primary:hover {
  background: #8e673d;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 252, 0.62);
  background: rgba(255, 255, 252, 0.08);
  color: #fffffc;
}

.btn.secondary:hover {
  border-color: #fffffc;
  background: rgba(255, 255, 252, 0.18);
}

.btn.secondary.dark {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #fffdf8;
}

.btn.secondary.dark:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 42px 0 0;
  margin-right: auto;
  margin-left: auto;
}

.hero-facts div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 252, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 252, 0.11);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 252, 0.66);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: #fffffc;
  font-weight: 850;
}

.contest-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #e7e5df;
  color: var(--ink);
}

.contest-band p {
  max-width: 980px;
  margin: 0;
  color: var(--text);
}

.contest-band .label {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
}

.text-link {
  white-space: nowrap;
  color: var(--teal);
  font-weight: 850;
}

.text-link:hover {
  color: var(--teal-dark);
}

.section {
  padding: clamp(82px, 9vw, 132px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 86px;
}

.section-heading {
  display: block;
  max-width: 1050px;
  margin: 0 0 42px;
}

.section-heading .eyebrow {
  display: block;
  margin-bottom: 18px;
  line-height: 1.25;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading.narrow {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.narrow .eyebrow {
  max-width: none;
}

.intro {
  background: var(--bg);
}

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

.intro-grid article,
.application-grid article,
.product-strip article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.intro-grid article:hover,
.application-grid article:hover,
.product-strip article:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 111, 115, 0.2);
  box-shadow: var(--soft-shadow);
}

.intro-grid article,
.application-grid article {
  padding: clamp(24px, 3vw, 34px);
}

.card-number {
  display: block;
  margin-bottom: 30px;
  color: var(--rose-deep);
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.intro-grid p,
.application-grid p,
.product-strip p {
  color: var(--muted);
}

.split,
.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.split {
  background: linear-gradient(180deg, var(--surface-solid), #f7efe4);
}

.image-panel,
.story-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img,
.story-media img {
  width: 100%;
  height: min(56vw, 620px);
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-panel:hover img,
.story-media:hover img {
  transform: scale(1.035);
}

.copy-panel p,
.proof-copy p,
.story-text p,
.cta-panel p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
}

.products {
  background: #fffaf3;
}

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

.product-strip article {
  overflow: hidden;
  background: #fffdf8;
}

.product-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-strip h3,
.product-strip p {
  margin-right: 22px;
  margin-left: 22px;
}

.product-strip h3 {
  margin-top: 22px;
}

.product-strip p {
  margin-bottom: 24px;
}

.nominations {
  background: var(--bg-soft);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab {
  min-height: 44px;
  border: 1px solid rgba(31, 26, 24, 0.12);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.tab:hover {
  border-color: rgba(31, 107, 99, 0.3);
}

.tab.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: #fffdf8;
}

.tab-panels {
  border: 1px solid rgba(31, 107, 99, 0.12);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--soft-shadow);
}

.tab-panel {
  display: none;
  padding: clamp(28px, 4vw, 48px);
}

.tab-panel.is-active {
  display: block;
  animation: fadeSlide 0.32s ease both;
}

.tab-panel p {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
}

.proof {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(126, 103, 80, 0.96), rgba(86, 68, 55, 0.96)),
    #6f5948;
  color: #fffdf8;
}

.proof h2 {
  color: #fffdf8;
}

.proof .eyebrow {
  color: #f4d594;
}

.proof-copy p {
  color: rgba(255, 253, 248, 0.76);
}

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

.metrics div {
  min-height: 164px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 252, 0.08);
}

.metrics strong {
  display: block;
  margin-bottom: 12px;
  color: #f5d99d;
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.08;
}

.metrics span {
  color: rgba(255, 253, 248, 0.78);
}

.story {
  background: linear-gradient(180deg, #fffaf3, #f7efe4);
}

.story-media {
  order: 2;
}

.story-media img {
  height: auto;
  max-height: min(48vw, 620px);
  object-fit: contain;
  background: #f7f7f5;
}

blockquote {
  margin: 30px 0 0;
  padding: 22px 0 22px 24px;
  border-left: 3px solid var(--rose);
  color: var(--rose-deep);
  font-family: Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.28;
}

.application {
  background: var(--bg);
}

.application-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.application-grid article {
  min-height: 220px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(132, 109, 84, 0.96), rgba(111, 66, 58, 0.94)),
    #7d6350;
  color: #fffdf8;
  box-shadow: var(--shadow);
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -42% 52%;
  height: 78%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.cta-panel h2,
.cta-panel p,
.cta-panel .hero-actions {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 760px;
  color: #fffdf8;
  font-size: clamp(32px, 4vw, 52px);
}

.cta-panel p {
  color: rgba(255, 253, 248, 0.82);
}

.cta-panel .btn.primary {
  background: #fffaf2;
  color: #5a4638;
  box-shadow: none;
}

.cta-panel .btn.primary:hover {
  background: #d2ad78;
  color: #3f342d;
}

.cta-panel .btn.secondary.dark {
  border-color: rgba(255, 253, 248, 0.54);
  background: transparent;
  color: #fffdf8;
}

.cta-panel .btn.secondary.dark:hover {
  border-color: #fffdf8;
  background: rgba(255, 253, 248, 0.14);
  color: #fffdf8;
}

.site-footer {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fffdf8;
}

.site-footer div {
  display: grid;
}

.site-footer span,
.site-footer p {
  color: rgba(255, 253, 248, 0.62);
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(255, 250, 243, 0.98) 0%, rgba(255, 250, 243, 0.92) 60%, rgba(255, 250, 243, 0.42) 100%),
      linear-gradient(180deg, #fffbf6 0%, #f5ecdf 100%);
  }

  .hero-media img {
    width: 60vw;
    opacity: 0.52;
  }

  .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .split,
  .story,
  .proof,
  .contest-band {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .product-strip {
    grid-template-columns: 1fr 1fr;
  }

  .story-media {
    order: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr;
    padding: 12px 14px;
  }

  .header-link {
    display: none;
  }

  .brand-logo {
    width: 178px;
    height: 98px;
  }

  .logo-word strong {
    font-size: 24px;
  }

  .logo-word small {
    font-size: 11px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 42px;
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.94) 0%, rgba(255, 250, 243, 0.9) 58%, rgba(255, 250, 243, 0.98) 100%),
      linear-gradient(180deg, #fffaf3, #f3eadf);
  }

  .hero::after {
    right: -32vw;
    bottom: -26vw;
    width: 88vw;
    height: 88vw;
  }

  .hero-media {
    inset: 84px -80px auto 40px;
    height: 360px;
    opacity: 0.34;
  }

  .hero-media img {
    width: 400px;
    height: 360px;
    object-position: right top;
    transform: rotate(2deg);
  }

  .hero-content {
    width: 100%;
  }

  .eyebrow {
    max-width: 340px;
    font-size: 11px;
  }

  h1 {
    max-width: 350px;
    margin-bottom: 20px;
    font-size: 37px;
    line-height: 1.04;
  }

  h2 {
    font-size: 31px;
    line-height: 1.1;
  }

  h3 {
    font-size: 19px;
  }

  .lead {
    max-width: 350px;
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-facts,
  .intro-grid,
  .product-strip,
  .application-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    gap: 8px;
    margin-top: 28px;
  }

  .hero-facts div {
    padding: 14px;
  }

  .contest-band {
    padding: 26px 18px;
  }

  .text-link {
    white-space: normal;
  }

  .section {
    padding: 68px 18px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading.narrow {
    text-align: left;
  }

  .image-panel img,
  .story-media img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .story-media img {
    aspect-ratio: auto;
    object-fit: contain;
  }

  .tabs {
    display: grid;
  }

  .tab {
    width: 100%;
  }

  .tab-panel p {
    font-size: 17px;
  }

  .application-grid article {
    min-height: 0;
  }

  .site-footer {
    display: grid;
  }
}
