:root {
  --rosewood: #6B2D3C;
  --rosewood-deep: #4A1F2A;
  --petal: #FDF8F9;
  --champagne: #B8956C;
  --eucalyptus: #5B8A7A;
  --charcoal: #2C2426;
  --muted: #6E5F63;
  --border: #E8D9DC;
  --white: #FFFFFF;
  --shadow: 0 12px 40px rgba(44, 36, 38, 0.08);
  --font-display: "Marcellus", Georgia, serif;
  --font-body: "Mulish", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(184, 149, 108, 0.16), transparent 55%),
    radial-gradient(800px 420px at 100% 0%, rgba(107, 45, 60, 0.07), transparent 50%),
    var(--petal);
  line-height: 1.6;
  font-size: 16px;
  padding-bottom: 0;
}
body.has-cookie-banner { padding-bottom: 110px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rosewood); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--rosewood-deep); }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 249, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  position: relative;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}
.logo:hover { color: inherit; }
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--rosewood);
  background:
    linear-gradient(var(--champagne), var(--champagne)) center/2px 18px no-repeat,
    linear-gradient(var(--champagne), var(--champagne)) center/18px 2px no-repeat,
    transparent;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rosewood);
  font-weight: 700;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
}
.logo img { height: 42px; width: auto; }
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.55rem 0.85rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
}
.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-list a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 600;
}
.nav-list a:hover { color: var(--rosewood); }
.nav-legal { position: relative; }
.nav-legal summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  list-style: none;
}
.nav-legal summary::-webkit-details-marker { display: none; }
.legal-drop {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0.75rem 1rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 160px;
  z-index: 120;
}
.nav-legal[open] .legal-drop { display: flex; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 2px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--rosewood);
  color: var(--white);
  border-color: var(--rosewood);
}
.btn-primary:hover { background: var(--rosewood-deep); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-champagne {
  background: var(--champagne);
  color: var(--charcoal);
  border-color: var(--champagne);
}
.cta-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.section-cta { margin-top: 1.75rem; }

/* Hero video full-bleed */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--charcoal);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(44, 36, 38, 0.72) 0%, rgba(74, 31, 42, 0.45) 48%, rgba(44, 36, 38, 0.35) 100%),
    linear-gradient(180deg, rgba(44, 36, 38, 0.2) 0%, rgba(74, 31, 42, 0.82) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 3.75rem;
  max-width: 720px;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 7vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 0.85rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.9s ease both;
}
.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 36ch;
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.94);
  animation: fadeUp 0.9s ease 0.12s both;
}
.hero .cta-group { animation: fadeUp 0.9s ease 0.22s both; }
.hero .btn-primary {
  background: #fff;
  color: var(--rosewood-deep);
  border-color: #fff;
}
.hero .btn-primary:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--charcoal);
}
.hero .btn-champagne {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}
.hero .btn-champagne:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { padding: 4.25rem 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 1.75rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.55rem);
  margin: 0 0 0.5rem;
  color: var(--rosewood-deep);
  font-weight: 400;
}
.section-head p { margin: 0; color: var(--muted); }
.section-alt {
  background:
    linear-gradient(180deg, rgba(184, 149, 108, 0.1), transparent 42%),
    #F7F0F2;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery — uniform product grid (one by one) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.gallery-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.gallery-card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F0E6E8;
}
.gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-card:hover .gallery-card-media img {
  transform: scale(1.04);
}
.gallery-card-body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.gallery-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  color: var(--rosewood-deep);
  letter-spacing: 0.01em;
}
.gallery-desc {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
  flex: 1;
}
.gallery-price {
  margin: 0.45rem 0 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--eucalyptus);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(28, 22, 24, 0.92);
}
.lightbox.is-open { display: flex; }
.lightbox-inner {
  max-width: min(920px, 100%);
  max-height: 90vh;
  text-align: center;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  margin: 0 auto 1rem;
}
.lightbox-caption {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}
.lightbox-price {
  color: #E8C9A8;
  font-weight: 800;
  margin: 0 0 1rem;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  width: 42px;
  height: 42px;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

/* Compact price list (home — no large images) */
.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 0.95rem;
}
.price-list li:nth-child(2n) { border-right: 0; }
.price-list span { color: var(--charcoal); }
.price-list strong {
  color: var(--eucalyptus);
  font-weight: 800;
  white-space: nowrap;
}

/* Catalog products — compact thumbs */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.product-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.product-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  max-height: 180px;
  margin-bottom: 0.7rem;
  filter: saturate(0.95);
}
.product-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.3rem;
  font-weight: 400;
}
.product-item .price {
  font-weight: 800;
  color: var(--eucalyptus);
  margin: 0.25rem 0;
  font-size: 0.95rem;
}
.product-item p { margin: 0; color: var(--muted); font-size: 0.86rem; }
.noscript-prices {
  display: grid;
  gap: 0.45rem;
  margin: 1.25rem 0;
  padding: 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.88rem;
}

/* About + verifier */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0 0 1rem;
  font-weight: 400;
  color: var(--rosewood-deep);
}
.about-copy p { margin: 0 0 0.95rem; }
.verifier-panel {
  border-top: 3px solid var(--champagne);
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.verifier-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, var(--rosewood), var(--champagne));
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
.verifier-panel h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-weight: 400;
}
.verifier-panel p { margin: 0 0 0.65rem; font-size: 0.94rem; }
.verifier-id {
  margin-top: 0.85rem !important;
  font-size: 0.84rem !important;
  color: var(--muted);
}
.badge-years {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.35rem 0.7rem;
  background: rgba(91, 138, 122, 0.15);
  color: var(--eucalyptus);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 1rem;
  font-weight: 400;
}
.contact-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.contact-list li { margin-bottom: 0.55rem; font-size: 0.95rem; }
.map-wrap {
  margin-top: 1.35rem;
  min-height: 280px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }
.form-stack { display: grid; gap: 0.85rem; }
.form-stack label { font-weight: 700; font-size: 0.85rem; display: block; margin-bottom: 0.3rem; }
.form-stack input,
.form-stack textarea,
.form-stack select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
}
.form-stack input:focus,
.form-stack textarea:focus {
  outline: 2px solid rgba(107, 45, 60, 0.25);
  border-color: var(--rosewood);
}
.form-stack button { justify-self: start; }
.form-note { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* Appeal / Google Ads documentation */
.appeal-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--rosewood);
  padding: 1.75rem 1.5rem 1.5rem;
  margin: 0 0 2.5rem;
  box-shadow: var(--shadow);
}
.appeal-block h2 {
  margin-top: 0;
}
.appeal-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--rosewood-deep);
  margin: 1.5rem 0 0.65rem;
}
.appeal-lead {
  font-size: 1.02rem;
  color: var(--charcoal);
}
.appeal-copy {
  background: #F7F0F2;
  border: 1px solid var(--border);
  padding: 1.15rem 1.2rem;
  margin: 0.75rem 0 1rem;
  font-size: 0.92rem;
  line-height: 1.65;
}
.appeal-copy p { margin: 0 0 0.75rem; }
.appeal-copy p:last-child { margin-bottom: 0; }
.appeal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 0.5rem;
}

/* Ads */
.ads-table { width: 100%; border-collapse: collapse; margin: 1rem 0 2rem; font-size: 0.9rem; }
.ads-table th, .ads-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.ads-table th { background: rgba(107, 45, 60, 0.06); }
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 2rem;
}
.keyword-cloud span {
  border: 1px solid var(--border);
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  background: var(--white);
  font-weight: 600;
}
.keyword-cloud .kw-hl {
  border-color: var(--champagne);
  background: rgba(184, 149, 108, 0.15);
  color: var(--rosewood-deep);
}
.campaign-id {
  font-family: ui-monospace, Consolas, monospace;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* Legal */
.ads-disclaimer {
  border-left: 4px solid var(--champagne);
  padding: 16px 20px;
  margin: 28px 0 8px;
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.75);
}
.legal-page { padding: 3rem 0 4rem; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 2rem 0 0.75rem;
  color: var(--rosewood-deep);
}
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.84rem; }
.legal-page th, .legal-page td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.legal-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 2rem;
  margin-top: 1.5rem;
}
.site-footer a { color: #E8C9A8; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h3 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--white);
}
.site-footer p { margin: 0 0 0.45rem; font-size: 0.92rem; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
}
.footer-legal a { text-decoration: none; }
.footer-copy { margin-top: 1.25rem; font-size: 0.82rem; opacity: 0.75; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-inner {
  width: min(100% - 1rem, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-inner p { margin: 0; flex: 1 1 280px; font-size: 0.88rem; }
.cookie-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.page-hero {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(184, 149, 108, 0.12), transparent);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.5rem;
  font-weight: 400;
}
.page-hero p { margin: 0; color: var(--muted); max-width: 60ch; }

@media (max-width: 900px) {
  .about-grid, .contact-grid, .footer-grid, .price-list { grid-template-columns: 1fr; }
  .price-list li { border-right: 0; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--petal);
    border-bottom: 1px solid var(--border);
    display: none;
    padding: 1rem 1.25rem 1.25rem;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .nav-legal[open] .legal-drop {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.25rem 0.75rem;
  }
  .hero { min-height: min(88vh, 640px); }
  .hero-content { padding: 3.5rem 0 2.75rem; }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-name { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media video { animation: none; }
  .gallery-card-media img { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
