:root {
  --cream: #f4eee3;
  --cream-2: #f7f1e6;
  --paper: #faf6ee;
  --ivory: #fffdf8;
  --line: #e7dcc8;
  --ink: #3d2c20;
  --muted: #6b5646;
  --brown: #3a2416;
  --brown-deep: #2a1810;
  --gold: #c9a227;
  --gold-soft: #e8c547;
  --gold-num: #e6c35a;
  --header-h: 4.85rem;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
  --wrap: 70rem;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(58, 36, 22, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brown);
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--brown-deep);
  margin: 0 0 0.6rem;
}

p {
  margin: 0 0 1rem;
  overflow-wrap: break-word;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10000;
  background: var(--brown);
  color: var(--cream);
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2.2rem));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.kicker::before {
  content: "";
  width: 1.15rem;
  height: 2px;
  background: var(--gold);
}

.mark {
  background-image: linear-gradient(transparent 64%, var(--gold-soft) 64% 92%, transparent 92%);
}

.muted {
  color: var(--muted);
}

.mt-sm { margin-top: 0.8rem; }
.mt-md { margin-top: 1.6rem; }
.mt-lg { margin-top: 2rem; }
.pt-0 { padding-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 241, 230, 0.96);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 20px rgba(58, 36, 22, 0.06);
}

.header-inner {
  width: min(76rem, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--brown-deep);
}

.logo:hover {
  color: var(--brown-deep);
}

.logo-seal {
  width: 2.85rem;
  height: 2.85rem;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  font-style: italic;
}

.logo-mark {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.28rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brown-deep);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--gold);
}

.nav-cta {
  margin-left: 0.3rem;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--brown);
  background: var(--ivory);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 5px auto;
  background: var(--brown);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.7rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn-dark {
  background: var(--brown);
  color: #fff8ea;
}

.btn-dark:hover {
  background: var(--brown-deep);
  color: #fff8ea;
}

.btn-light {
  background: rgba(255, 253, 248, 0.86);
  border-color: rgba(58, 36, 22, 0.22);
  color: var(--brown-deep);
}

.btn-light:hover {
  background: #fff;
  color: var(--brown-deep);
}

.btn-gold {
  background: var(--gold-soft);
  color: var(--brown-deep);
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--brown-deep);
}

.hero-actions,
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 1.35rem;
}

.hero {
  position: relative;
  min-height: 34rem;
  height: min(44rem, calc(100svh - var(--header-h)));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 238, 227, 0.92) 0%, rgba(244, 238, 227, 0.55) 38%, rgba(244, 238, 227, 0.08) 72%),
    linear-gradient(180deg, rgba(244, 238, 227, 0.12), rgba(244, 238, 227, 0.2));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  padding: 3rem 0;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.08rem;
  color: var(--ink);
  max-width: 32rem;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.55rem;
  background: rgba(255, 253, 248, 0.72);
  border-radius: 999px;
}

.hero-dots button {
  width: 1.35rem;
  height: 0.42rem;
  border: 0;
  border-radius: 999px;
  background: rgba(58, 36, 22, 0.22);
  cursor: pointer;
  padding: 0;
}

.hero-dots button.is-active {
  background: var(--brown);
}

.scallop {
  height: 18px;
  background-color: var(--brown);
  background-image: radial-gradient(circle at 50% 0, var(--paper) 11px, var(--brown) 12px);
  background-size: 22px 18px;
  background-repeat: repeat-x;
  margin-top: -1px;
}

.scallop-cream {
  height: 16px;
  background-color: var(--cream);
  background-image: radial-gradient(circle at 50% 0, var(--paper) 10px, var(--cream) 11px);
  background-size: 20px 16px;
  background-repeat: repeat-x;
}

.stats {
  background: var(--brown);
  color: var(--cream);
  padding: 1.8rem 0 1.6rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--gold-num);
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: #f0d9a6;
}

.ticker {
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 0.75rem 0;
}

.ticker-track {
  display: flex;
  gap: 1.8rem;
  width: max-content;
  animation: ticker 32s linear infinite;
  font-weight: 700;
  color: var(--brown);
  white-space: nowrap;
}

.ticker-track span::before {
  content: "✦";
  color: var(--gold);
  margin-right: 1.8rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 4.6rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.2rem;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.frame {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: var(--line);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.frame-focus-left img {
  object-position: 22% center;
}

.product-row,
.product-grid {
  display: grid;
  gap: 1.1rem;
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-row {
  grid-auto-flow: column;
  grid-auto-columns: minmax(16.5rem, 1fr);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.4rem;
}

.product-card {
  background: var(--ivory);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(58, 36, 22, 0.07);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(58, 36, 22, 0.06);
  scroll-snap-align: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}

.product-card .thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e9dfcc;
}

.product-card .thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 16px;
  background: radial-gradient(circle at 50% 100%, var(--ivory) 10px, transparent 11px);
  background-size: 20px 16px;
  background-repeat: repeat-x;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .body {
  padding: 1rem 1.1rem 1.2rem;
}

.product-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
}

.product-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

.more-link {
  display: inline-flex;
  margin-top: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown);
  text-decoration: none;
}

.band {
  background: var(--cream);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.value {
  background: var(--ivory);
  border-radius: 20px;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(58, 36, 22, 0.06);
}

.step-num {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--brown-deep);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.value h3 {
  margin: 0.1rem 0 0.45rem;
  font-size: 1.4rem;
}

.regions {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: center;
}

.region-list {
  display: grid;
  gap: 0.2rem;
}

.region {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.region svg {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

.region h3 {
  margin: 0 0 0.2rem;
  font-size: 1.3rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.brand-card {
  background: var(--ivory);
  border: 1px solid rgba(58, 36, 22, 0.06);
  border-radius: 20px;
  padding: 1.4rem 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(58, 36, 22, 0.05);
}

.brand-card img {
  height: 7.5rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.brand-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.ready {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  padding: 3.4rem 0;
  text-align: center;
}

.ready h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.ready p {
  color: var(--muted);
  margin: 0.4rem auto 1.2rem;
  max-width: 34rem;
}

.page-hero {
  padding: 3rem 0 1.2rem;
}

.page-hero h1 {
  margin: 0 0 0.8rem;
}

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

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.2rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.timeline strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
}

.quote {
  margin: 0;
  padding: 2rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--brown-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: start;
}

.panel {
  background: var(--ivory);
  border: 1px solid rgba(58, 36, 22, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(58, 36, 22, 0.05);
}

.panel h2 {
  margin-top: 0;
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
}

textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.8rem;
}

.checks label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}

.checks input {
  width: auto;
}

.form-legend {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.form-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.form-note {
  font-size: 0.88rem;
}

.form-status {
  margin-top: 0.9rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
}

.form-status.is-success {
  background: #e8f1e4;
  color: #24401c;
}

.form-status.is-error {
  background: #f8e4dc;
  color: #6a2714;
}

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.detail-list a {
  color: var(--brown);
}

.map-frame {
  margin-top: 1.1rem;
  border: 0;
  width: 100%;
  min-height: 16rem;
  border-radius: 12px;
}

.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: 3rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}

.site-footer a {
  color: var(--gold-num);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer h2,
.site-footer h3 {
  color: var(--cream);
}

.site-footer h2 {
  font-size: 2rem;
  font-style: italic;
  margin: 0 0 0.4rem;
}

.site-footer h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-num);
  margin: 0 0 0.8rem;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-brands {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1rem;
}

.footer-brands img {
  height: 2.6rem;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 0.2rem;
}

.legal {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(230, 195, 90, 0.18);
  font-size: 0.86rem;
  color: #e8d7b0;
}

.narrow {
  max-width: 42rem;
}

.thanks {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0;
}

.thanks .btn-row {
  justify-content: center;
}

@media (max-width: 980px) {
  .stats-grid,
  .product-grid,
  .values,
  .split,
  .regions,
  .contact-grid,
  .footer-grid,
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    background: var(--paper);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1.5rem 1.4rem 2rem;
    gap: 0.35rem;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    font-size: 1.15rem;
    width: 100%;
    padding: 0.75rem 0;
    box-shadow: none;
  }

  .site-nav .nav-cta {
    width: fit-content;
    margin-top: 0.8rem;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - var(--header-h));
    max-height: none;
    display: flex;
    align-items: flex-end;
  }

  .hero-copy {
    margin: 0 0 3.2rem;
    padding: 1.2rem 0 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-grid,
  .values,
  .split,
  .regions,
  .contact-grid,
  .footer-grid,
  .form-row,
  .timeline li,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.2rem 0;
  }
}

@media (max-width: 620px) {
  .product-grid,
  .checks {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }
}

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

  .ticker-track {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
