:root {
  --espresso: #2a1a12;
  --cocoa: #4a2f22;
  --honey: #c48a3a;
  --honey-light: #e2b56a;
  --flour: #f7f1e8;
  --cream: #fffaf3;
  --ink: #1c1410;
  --muted: #6b574a;
  --line: rgba(42, 26, 18, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(42, 26, 18, 0.12);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(226, 181, 106, 0.18), transparent 32%),
    linear-gradient(180deg, #fff8ef 0%, var(--flour) 40%, #f3e7d7 100%);
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 243, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--honey-light), var(--honey) 45%, var(--cocoa));
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.85rem;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.82;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--cocoa);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--white) !important;
  opacity: 1 !important;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 20, 16, 0.25) 0%, rgba(28, 20, 16, 0.72) 70%, rgba(28, 20, 16, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
  max-width: 720px;
  animation: rise 0.9s ease both;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--honey-light);
}

.hero h1,
.page-hero h1,
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}

.hero p,
.lead {
  font-size: 1.08rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.9);
}

.lead {
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--honey);
  color: var(--espresso);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-dark {
  background: var(--espresso);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--espresso);
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--espresso);
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--espresso);
}

.grid-3,
.grid-2,
.product-grid,
.ads-grid {
  display: grid;
  gap: 1.25rem;
}

.grid-3,
.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2,
.ads-grid {
  grid-template-columns: repeat(2, 1fr);
}

.media-card,
.info-panel,
.product-card,
.ad-card,
.verify-card,
.legal-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card img,
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img,
.media-card:hover img {
  transform: scale(1.04);
}

.media-card .body,
.product-card .body,
.info-panel,
.ad-card,
.verify-card,
.legal-card {
  padding: 1.25rem 1.35rem 1.45rem;
}

.product-card h3,
.media-card h3,
.ad-card h3,
.info-panel h3 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  color: var(--espresso);
}

.muted {
  color: var(--muted);
}

.price {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 800;
  color: var(--cocoa);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.trust-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  animation: fade-up 0.8s ease both;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--espresso);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.split img,
.split video {
  width: 100%;
  border-radius: calc(var(--radius) + 4px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--honey);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: rgba(42, 26, 18, 0.05);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(196, 138, 58, 0.16);
  color: var(--cocoa);
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0.2rem 0.25rem 0.2rem 0;
}

.verify-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.verify-visual {
  background:
    linear-gradient(160deg, var(--cocoa), var(--espresso));
  color: var(--white);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.verify-seal {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.15;
}

.verify-meta {
  padding: 1.4rem 1.5rem;
}

.verify-meta dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0.55rem 1rem;
  margin: 1rem 0 0;
}

.verify-meta dt {
  font-weight: 700;
  color: var(--espresso);
}

.verify-meta dd {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: 3rem;
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.86);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h4 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  opacity: 0.85;
}

.site-footer a:hover {
  opacity: 1;
  color: var(--honey-light);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.9rem;
}

.legal-content {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  font-family: var(--font-display);
  color: var(--espresso);
  margin-top: 1.8rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.notice {
  border-left: 4px solid var(--honey);
  background: rgba(196, 138, 58, 0.1);
  padding: 1rem 1.1rem;
  border-radius: 0 12px 12px 0;
  margin: 1rem 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .grid-3,
  .product-grid,
  .trust-strip,
  .footer-grid,
  .split,
  .contact-grid,
  .verify-card {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .ads-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(255, 250, 243, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .verify-meta dl {
    grid-template-columns: 1fr;
  }
}
