:root {
  --ink: #201815;
  --muted: #6d625b;
  --sand: #fbf3e7;
  --paper: #fffaf2;
  --line: #e8d5bf;
  --terracotta: #8e3f2f;
  --terracotta-dark: #5e281f;
  --olive: #596840;
  --gold: #d49a4a;
  --blue: #123548;
  --ok: #3f7b4a;
  --shadow: 0 24px 60px rgba(71, 38, 22, .16);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(212, 154, 74, .22), transparent 32rem),
    linear-gradient(180deg, var(--sand), #fff 42rem);
  line-height: 1.6;
  overflow-x: hidden;
}

body, input, textarea, button {
  font-family: "Avenir Next", "Trebuchet MS", Verdana, sans-serif;
}

h1, h2 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  margin-top: 0;
  letter-spacing: -.02em;
}

h3 {
  margin-top: 0;
  letter-spacing: -.01em;
}

p { margin-top: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container {
  width: min(1180px, calc(100% - 38px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 242, .9);
  border-bottom: 1px solid rgba(142, 63, 47, .18);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 270px;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: conic-gradient(from 180deg, var(--terracotta), var(--gold), var(--olive), var(--terracotta));
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(142, 63, 47, .24);
}

.brand strong { display: block; font-size: 19px; line-height: 1.05; white-space: nowrap; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #352a25;
  font-size: 14px;
}

.main-nav a,
.nav-dropdown summary {
  padding: 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.main-nav a:hover,
.nav-dropdown summary:hover {
  color: var(--terracotta);
  background: rgba(142, 63, 47, .08);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 210px;
  display: grid;
  gap: 6px;
  padding: 10px;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown[open] .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 11px 12px;
  background: var(--sand);
  border-radius: 12px;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(142, 63, 47, .22);
}

.btn.secondary {
  background: transparent;
  color: var(--terracotta);
}

.btn.light {
  border-color: rgba(255,255,255,.76);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  flex: 0 0 44px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(18, 53, 72, .94), rgba(94, 40, 31, .75) 52%, rgba(89, 104, 64, .36)),
    radial-gradient(circle at 78% 25%, rgba(212, 154, 74, .32), transparent 20rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  z-index: 2;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 54px;
  align-items: end;
  padding: 128px 0 92px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  margin-bottom: 15px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1 {
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1;
  margin-bottom: 20px;
}

.hero p {
  max-width: 710px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
}

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

.hero-panel {
  align-self: end;
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 250, 242, .13);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 30px 30px 6px 30px;
  backdrop-filter: blur(16px);
}

.hero-panel strong {
  font: 900 34px/1.04 ui-serif, Georgia, serif;
}

.hero-panel span {
  color: rgba(255,255,255,.8);
  margin-top: 10px;
}

.section { padding: 66px 0; }

.section-head {
  display: block;
  max-width: 860px;
  margin-bottom: 30px;
}

.section-head.narrow {
  max-width: 820px;
}

.section-head h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.12;
  margin: 0;
}

.section-head p {
  max-width: 760px;
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 17px;
}

.route-section {
  background: var(--paper);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.route-card {
  min-height: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 1px 0 rgba(142, 63, 47, .08);
}

.route-card span {
  color: var(--terracotta);
  font-weight: 900;
}

.route-card h3 {
  font-size: 22px;
  line-height: 1.18;
  margin: 24px 0 10px;
}

.route-card p { color: var(--muted); }

.route-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--terracotta);
  font-weight: 900;
}

.product-section {
  background:
    linear-gradient(90deg, rgba(18, 53, 72, .06), transparent 48%),
    #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.sticky-head {
  display: block;
  position: sticky;
  top: 116px;
  margin: 0;
}

.product-stack {
  display: grid;
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px 28px 28px 8px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px 20px 20px 6px;
}

.product-card h3 {
  font-size: 22px;
  line-height: 1.18;
  margin-bottom: 9px;
}

.product-card p { color: var(--muted); margin-bottom: 0; }

.notes-section {
  background: var(--blue);
  color: #fff;
}

.notes-section .section-head p { color: rgba(255,255,255,.7); }

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

.note-grid article {
  padding: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
}

.note-grid h3 { font-size: 21px; line-height: 1.18; }
.note-grid p { color: rgba(255,255,255,.76); margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 50px;
  align-items: center;
}

.split h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
}

.split p,
.content-section p,
.content-aside p {
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .5em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: inset 0 0 0 3px #fff;
}

.factory-mosaic {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
}

.factory-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow);
}

.factory-mosaic img:first-child {
  grid-row: span 2;
  border-radius: 8px 36px 8px 36px;
}

.faq-section {
  background: var(--sand);
}

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

.faq details {
  margin: 0;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.35;
}

.faq p {
  color: var(--muted);
  margin: 12px 0 0;
}

.contact-band {
  background:
    radial-gradient(circle at 80% 0, rgba(212, 154, 74, .24), transparent 24rem),
    var(--terracotta-dark);
  color: #fff;
}

.contact-band p { color: rgba(255,255,255,.78); }
.contact-band a { text-decoration: underline; text-underline-offset: 3px; }

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
}

.form {
  padding: 30px;
  background: #fff;
  color: var(--ink);
  border-radius: 30px 30px 6px 30px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 900; font-size: 13px; margin-bottom: 6px; }

.field input,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 13px;
  font: inherit;
  background: var(--paper);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.privacy-first-layer {
  padding: 13px 15px;
  border: 1px solid rgba(142, 63, 47, .24);
  border-radius: 16px;
  background: #fffaf2;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 4px 0 2px;
}

.privacy-first-layer summary {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.privacy-first-layer summary::-webkit-details-marker {
  display: none;
}

.privacy-first-layer summary::after {
  content: "+";
  margin-left: auto;
  color: var(--terracotta);
  font-size: 20px;
  line-height: 1;
}

.privacy-first-layer[open] summary::after {
  content: "−";
}

.privacy-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  flex: 0 0 auto;
}

.privacy-first-layer p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}

.privacy-first-layer strong {
  color: var(--ink);
}

.privacy-first-layer a {
  color: var(--terracotta);
  font-weight: 800;
  text-decoration-color: currentColor;
}

.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--terracotta);
  font-weight: 900;
}

.content-hero {
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(18, 53, 72, .95), rgba(142, 63, 47, .86)),
    var(--blue);
  color: #fff;
}

.content-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
}

.content-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.8);
  font-size: 19px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 50px;
  align-items: start;
}

.content-main {
  display: grid;
  gap: 28px;
}

.content-section {
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.content-section:last-child { border-bottom: 0; }

.content-section h2,
.content-aside h2 {
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 14px 0 4px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  background: var(--sand);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.content-aside {
  position: sticky;
  top: 116px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.site-footer {
  padding: 54px 0 28px;
  background: #18120f;
  color: rgba(255,255,255,.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid h3 {
  color: #fff;
  font-size: 18px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-grid a:hover,
.footer-link-button:hover,
.footer-social-icons a:hover {
  color: #fff;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.inline-cookie-button {
  color: var(--terracotta);
  font-weight: 800;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-social > span {
  color: rgba(255,255,255,.88);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-icons a {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.72);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  padding-top: 25px;
  margin-top: 0;
  font-size: 13px;
}

.footer-legal span {
  margin-left: auto;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 16, 14, .62);
}

.modal.open { display: flex; }

.modal-card {
  width: min(460px, 100%);
  padding: 30px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.cookie-notice {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.cookie-notice.open { display: flex; }
.cookie-notice p { margin: 0; color: var(--muted); font-size: 14px; }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-notice .btn {
  min-height: 38px;
  padding: 0 14px;
}

.cookie-notice [data-cookie-reject],
.cookie-notice [data-cookie-accept-all] {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

.cookie-preferences {
  display: none;
  margin-top: 12px;
  gap: 8px;
}

.cookie-preferences label {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  background: var(--sand);
  border-radius: 14px;
  color: var(--ink);
  font-weight: 800;
}

.cookie-preferences span {
  display: block;
  padding-left: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.cookie-notice.show-preferences .cookie-preferences { display: grid; }
.cookie-notice [data-cookie-save] { display: none; }
.cookie-notice.show-preferences [data-cookie-save] { display: inline-flex; }
.cookie-notice.show-preferences [data-cookie-manage] { display: none; }

@media (max-width: 1020px) {
  .header-inner {
    position: relative;
    min-height: 72px;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 10px 58px 10px 0;
    gap: 10px 12px;
  }
  .header-inner::after {
    content: "";
    flex: 0 0 100%;
    order: 2;
    height: 0;
  }
  .brand {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }
  .brand strong,
  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .menu-toggle {
    order: 1;
    display: grid !important;
    place-content: center;
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 80;
    transform: none;
    border-color: rgba(142, 63, 47, .35);
    box-shadow: 0 10px 24px rgba(73, 45, 35, .14);
  }
  .main-nav {
    order: 3;
    flex: 0 1 min(360px, calc(100% - 28px));
    width: min(360px, calc(100% - 28px));
    max-width: 360px;
    margin-left: auto;
    margin-right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: grid; }
  .main-nav a,
  .nav-dropdown summary {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 13px 14px;
    background: var(--sand);
    font-weight: 800;
    text-align: left;
  }
  .nav-dropdown summary {
    justify-content: space-between;
  }
  .nav-dropdown {
    position: static;
  }
  .nav-dropdown-menu {
    position: static;
    width: auto;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.72);
  }
  .nav-dropdown:not([open]) .nav-dropdown-menu {
    display: none;
  }
  .header-cta { display: none; }
  .hero { min-height: 680px; }
  .hero-grid,
  .product-layout,
  .split,
  .contact-grid,
  .content-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { align-items: end; padding: 96px 0 70px; }
  .hero-panel { max-width: 360px; }
  .sticky-head,
  .content-aside { position: static; }
  .route-grid,
  .note-grid,
  .faq {
    grid-template-columns: 1fr;
  }
  .product-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }
  .footer-legal span { margin-left: 0; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  h1 { font-size: clamp(40px, 13vw, 62px); }
  .hero-panel { display: none; }
  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
  }
  .section { padding: 64px 0; }
  .product-card,
  .form-row,
  .factory-mosaic {
    grid-template-columns: 1fr;
  }
  .factory-mosaic img:first-child { grid-row: auto; }
  .faq { grid-template-columns: 1fr; }
  .cookie-notice {
    align-items: flex-start;
    flex-direction: column;
  }
}
