:root {
  --bg: #f6f0ea;
  --bg-deep: #efe4da;
  --surface: rgba(255, 252, 248, 0.88);
  --ink: #2c1f1a;
  --ink-soft: #6a5348;
  --berry: #9b3d4a;
  --berry-deep: #7e2f3a;
  --gold: #b8895a;
  --line: rgba(44, 31, 26, 0.12);
  --shadow: 0 18px 50px rgba(44, 31, 26, 0.1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", sans-serif;
  --max: 1140px;
  --header-h: 4.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(155, 61, 74, 0.08), transparent 55%),
    radial-gradient(800px 500px at 100% 10%, rgba(184, 137, 90, 0.12), transparent 50%),
    linear-gradient(180deg, #faf5f0 0%, var(--bg) 45%, var(--bg-deep) 100%);
  line-height: 1.65;
  font-weight: 400;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--berry);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--berry-deep);
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: rgba(246, 240, 234, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 245, 240, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(44, 31, 26, 0.06);
}

.nav {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.2rem 0.85rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: #fffaf6;
  padding: 0.65rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fffaf6;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #2c1f1a center / cover no-repeat;
}

.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
}

.hero-media img {
  z-index: 0;
}

.hero-media video {
  z-index: 1;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(22, 14, 11, 0.86) 0%, rgba(22, 14, 11, 0.55) 42%, rgba(22, 14, 11, 0.2) 72%, rgba(22, 14, 11, 0.35) 100%),
    linear-gradient(180deg, rgba(22, 14, 11, 0.25) 0%, rgba(22, 14, 11, 0.15) 40%, rgba(22, 14, 11, 0.55) 100%);
}

.hero-content .brand-mark,
.hero-content h1,
.hero-content .hero-lead {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--header-h) + 1rem) 0 5rem;
  max-width: 38rem;
  animation: rise 0.9s ease both;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 12% -8% 8% -10%;
  background: linear-gradient(90deg, rgba(18, 11, 8, 0.72), rgba(18, 11, 8, 0.35) 70%, transparent);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}

.brand-mark {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.5vw, 4.6rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero h1 {
  margin: 1.1rem 0 0;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 250, 246, 0.92);
  max-width: 24rem;
}

.hero-lead {
  margin: 0.85rem 0 0;
  color: rgba(255, 250, 246, 0.78);
  max-width: 30rem;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--berry);
  color: #fffaf6;
  border-color: var(--berry);
}

.btn-primary:hover {
  background: var(--berry-deep);
  border-color: var(--berry-deep);
  color: #fffaf6;
}

.btn-ghost {
  background: rgba(255, 250, 246, 0.08);
  border-color: rgba(255, 250, 246, 0.55);
  color: #fffaf6;
}

.btn-ghost:hover {
  background: rgba(255, 250, 246, 0.16);
  border-color: #fffaf6;
  color: #fffaf6;
}

.section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.eyebrow {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--berry);
  font-weight: 700;
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.3rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

.section-lead {
  margin: 0.9rem 0 0;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.explore-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0.9rem;
}

.explore-shot {
  margin: 0;
  overflow: hidden;
  min-height: 20rem;
  height: clamp(20rem, 38vw, 28rem);
  background: #ddd2c7;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s ease forwards;
}

.explore-shot:nth-child(1) { animation-delay: 0.05s; }
.explore-shot:nth-child(2) { animation-delay: 0.14s; }
.explore-shot:nth-child(3) { animation-delay: 0.23s; }

.explore-shot img {
  transition: transform 0.7s ease;
}

.explore-shot:hover img {
  transform: scale(1.04);
}

.product-list {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

.product {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product img {
  min-height: 15rem;
  height: 100%;
  background: #e8ddd2;
}

.product > div {
  padding: 1.6rem 1.7rem;
  display: grid;
  align-content: center;
  gap: 0.35rem;
}

.product h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 36rem;
}

.ads-meta,
.ads-columns {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ads-meta > div,
.verifier-panel,
.contact-card,
.contact-form,
.legal-panel,
.keywords {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.4rem;
}

.ads h3,
.contact-card h3,
.legal-panel h3,
.keywords h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.meta-list li {
  display: grid;
  gap: 0.15rem;
  color: var(--ink);
}

.meta-list span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}

.verifier-name {
  margin-top: 1rem;
}

.verifier-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.ad-copy {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.7rem;
}

.ad-copy li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  color: var(--ink-soft);
}

.ad-copy code {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: transparent;
}

.ad-copy span {
  font-size: 0.75rem;
  color: rgba(44, 31, 26, 0.4);
  flex-shrink: 0;
}

.keywords {
  margin-top: 1rem;
}

.keywords p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.keyword-cloud {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.keyword-cloud li {
  border: 1px solid var(--line);
  background: #fffaf6;
  padding: 0.4rem 0.7rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.about {
  background:
    linear-gradient(180deg, transparent, rgba(255, 250, 246, 0.65), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.about-copy p {
  color: var(--ink-soft);
}

.about-points {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.about-points li {
  padding: 0.75rem 0.9rem;
  background: var(--surface);
  border-left: 3px solid var(--berry);
  border: 1px solid var(--line);
  border-left-width: 3px;
  border-left-color: var(--berry);
  color: var(--ink);
}

.about-media {
  margin: 0;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-media img {
  min-height: 22rem;
  height: 26rem;
  background: #e8ddd2;
}

.about-media figcaption {
  padding: 1rem 1.15rem 1.2rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.about-media strong {
  color: var(--ink);
}

.contact-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 1rem;
}

.contact-card p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}

.contact-card h3 + h3 {
  margin-top: 1.1rem;
}

.text-link {
  color: var(--berry);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffaf6;
  color: var(--ink);
  padding: 0.8rem 0.9rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(155, 61, 74, 0.25);
  border-color: var(--berry);
}

.form-note {
  margin: 0;
  color: #2f6b45;
  font-size: 0.9rem;
}

.legal-tabs {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.legal-tab {
  border: 1px solid var(--line);
  background: #fffaf6;
  color: var(--ink-soft);
  padding: 0.6rem 0.95rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.legal-tab.is-active {
  color: #fffaf6;
  border-color: var(--berry);
  background: var(--berry);
}

.legal-panel {
  margin-top: 1rem;
}

.legal-panel p {
  color: var(--ink-soft);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 1.4rem;
  background: #2c1f1a;
  color: rgba(255, 250, 246, 0.72);
}

.site-footer a {
  color: rgba(255, 250, 246, 0.82);
}

.site-footer a:hover {
  color: #fffaf6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.25rem;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: #fffaf6;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
  justify-items: start;
}

.footer-links a {
  text-decoration: none;
}

.copyright {
  width: min(var(--max), calc(100% - 2rem));
  margin: 1.6rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 250, 246, 0.12);
  color: rgba(255, 250, 246, 0.45);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  background: #2c1f1a;
  border-top: 1px solid rgba(255, 250, 246, 0.18);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.22);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 250, 246, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
}

.cookie-banner a {
  color: #f0c3b0;
}

.cookie-banner .cookie-accept {
  flex: 0 0 auto;
  min-width: 8.5rem;
  background: var(--berry);
  color: #fffaf6;
  border-color: var(--berry);
  font-weight: 700;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .explore-grid,
  .ads-meta,
  .ads-columns,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    background: rgba(250, 245, 240, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.35rem 1rem 1rem;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .product {
    grid-template-columns: 1fr;
  }

  .product > div {
    padding: 1.25rem 1.2rem 1.4rem;
  }

  .explore-shot {
    height: 16rem;
    min-height: 16rem;
  }

  .product img {
    min-height: 14rem;
    max-height: 18rem;
  }

  .hero-content {
    padding-bottom: 3.2rem;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.9rem 1rem 1.1rem;
  }

  .cookie-banner .cookie-accept {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
