:root {
  --background: #fffdf8;
  --foreground: #3b352c;
  --muted: #756c60;
  --soft: #f8f1e6;
  --soft-2: #fbf7ef;
  --card: #ffffff;
  --border: #eadfce;
  --gold: #c69a46;
  --gold-soft: #efe0bd;
  --charcoal: #383126;
  --shadow: 0 24px 80px rgba(58, 49, 38, .10);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.narrow { max-width: 880px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(234, 223, 206, .7);
}

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

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: .95rem;
}

.desktop-nav a:hover,
.footer a:hover { color: var(--charcoal); }

.language-switcher {
  position: relative;
  color: var(--charcoal);
}

.language-switcher summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 48px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-size: .85rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker { display: none; }

.language-switcher summary::after {
  content: "▾";
  font-size: .7rem;
  transition: transform .2s ease;
}

.language-switcher[open] summary::after { transform: rotate(180deg); }

.language-switcher summary:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 2px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 70;
  min-width: 178px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.language-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
}

.language-menu a:hover { background: var(--soft); }

.language-menu a[aria-current="page"] {
  color: #8b6725;
  background: #fff5d9;
}

.mobile-language { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 14px 30px rgba(56, 49, 38, .18);
}

.btn-secondary {
  background: #fff;
  color: var(--charcoal);
  border-color: var(--border);
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

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

.mobile-nav {
  border-top: 1px solid var(--border);
  padding: 18px 20px 24px;
  background: var(--background);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
}

.section {
  padding: 110px 0;
}

.section-light {
  background:
    radial-gradient(circle at top left, rgba(198,154,70,.12), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #fbf5eb 100%);
}

.section-warm { background: var(--soft-2); }

.eyebrow {
  display: inline-flex;
  color: #8b6725;
  background: #fff5d9;
  border: 1px solid #edd99e;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

h1, h2, h3 {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.05;
  letter-spacing: -.045em;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 { font-size: clamp(3rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 4rem); }
h3 { font-size: 1.28rem; letter-spacing: -.025em; }
h4 { margin: 10px 0 0; color: #8b6725; }

p {
  margin: 16px 0 20px;
  color: var(--muted);
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  max-width: 680px;
}

.hero {
  padding: 86px 0 105px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 54px;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.included-mini {
  margin-top: 30px;
  padding: 22px;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.included-mini p { margin: 0 0 8px; font-weight: 800; color: var(--charcoal); }
.included-mini ul { margin: 0; padding-left: 20px; color: var(--muted); }

.trust-badges, .equipment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-badges span,
.equipment-badges span,
.pill {
  display: inline-flex;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  font-size: .82rem;
  color: var(--charcoal);
  margin-bottom: 15px;
}

.hero-media { position: relative; }

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, #f3e8d5, #fffaf0);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 260px;
}

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

.hero-image {
  aspect-ratio: 4 / 5;
  min-height: 560px;
}

.image-card span,
.placeholder-label {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: inline-flex;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--charcoal);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.image-card.is-placeholder img { display: none; }
.image-card.is-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed #d5bd89;
  border-radius: 22px;
}

.floating-stats {
  position: absolute;
  left: -28px;
  bottom: 34px;
  display: grid;
  gap: 12px;
}

.floating-stats div,
.stats-row div,
.metric-card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 18px 20px;
}

.floating-stats strong,
.stats-row strong,
.metric-card strong {
  display: block;
  color: var(--charcoal);
  font-size: 1.55rem;
  line-height: 1;
}

.floating-stats span,
.stats-row span {
  display: block;
  font-size: .86rem;
  margin-top: 6px;
  font-weight: 600;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-heading p {
  font-size: 1.08rem;
}

#equipment .cta-panel + .section-heading {
  margin-top: 72px;
}

.feature-grid,
.two-columns,
.opportunity-grid,
.remember-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}

.feature-photo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.feature-photo .image-card { aspect-ratio: 8 / 8; }

.cards-grid {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.cards-grid.four { grid-template-columns: repeat(2, 1fr); }
.cards-grid.five { grid-template-columns: repeat(5, 1fr); }
.cards-grid.six { grid-template-columns: repeat(3, 1fr); }
.cards-grid.buyers { grid-template-columns: repeat(5, 1fr); }

.card,
.list-card,
.quote-card,
.contact-form,
.cta-panel,
.faq-list details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 15px 50px rgba(58, 49, 38, .06);
}

.card.featured {
  border-color: #d9b765;
  background: linear-gradient(180deg, #fff 0%, #fff8e8 100%);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff5d9;
  color: #8b6725;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.card small {
  display: block;
  color: #8b6725;
  font-weight: 800;
  margin-top: 18px;
}

.quote-card {
  background: var(--charcoal);
  color: #fff;
}

.quote-card blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.25;
}

.quote-card span {
  display: block;
  margin-top: 20px;
  color: #e8d4a4;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.stats-row.compact {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 13px 0;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8b6725;
  font-weight: 900;
}

.buyers .card ul {
  padding-left: 20px;
  color: var(--muted);
}

.metric-card strong {
  font-size: 2rem;
  color: #8b6725;
}

.equipment-layout .wide {
  aspect-ratio: 21 / 9;
  min-height: 350px;
}

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

.list-card ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.list-card li {
  padding: 14px 25px;
  border-bottom: 1px solid var(--border);
}

.list-card li:last-child { border-bottom: 0; }

.list-card li span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
  margin-top: 3px;
}

.cta-panel {
  margin-top: 34px;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}

.steps article {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}

.steps article span {
  display: block;
  color: #d0aa58;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 22px;
}

.faq-list {
  display: grid;
  gap: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 800;
  color: var(--charcoal);
}

.faq-list p {
  margin: 0;
  padding: 0 26px 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--foreground);
}

textarea { resize: vertical; }

.contact-form button {
  margin-top: 22px;
  width: 100%;
}

.form-note {
  text-align: center;
  font-size: .92rem;
}

.form-submit-error {
  margin-bottom: 0;
  color: #9f2d20;
  font-weight: 700;
  text-align: center;
}

.form-privacy {
  margin: -12px 0 0;
  font-size: .9rem;
  text-align: center;
}

.form-privacy a {
  color: #8b6725;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page { padding: 64px 0; }

.legal-document {
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.legal-document h1 { margin-bottom: 16px; }
.legal-document h2 { margin-top: 42px; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.legal-document li { margin: 10px 0; color: var(--muted); }

.legal-notice {
  margin: 28px 0;
  padding: 18px 20px;
  border: 1px solid #d9b765;
  border-radius: 14px;
  background: #fff8e8;
}

.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer nav {
  display: flex;
  gap: 24px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.image-valli {
  max-height: fit-content;
}

@media (max-width: 1080px) {
  .cards-grid.five,
  .cards-grid.buyers { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.six,
  .three-columns { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 420px; aspect-ratio: 16 / 11; }
  .floating-stats { position: static; grid-template-columns: repeat(2, 1fr); margin-top: 16px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .desktop-nav, .desktop-cta, .desktop-language { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-language { display: block; margin: 8px 0 14px; }
  .mobile-language summary { width: 100%; justify-content: space-between; }
  .mobile-language .language-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
  }
  .section { padding: 76px 0; }
  .hero { padding-top: 52px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .feature-grid,
  .two-columns,
  .opportunity-grid,
  .remember-grid,
  .cards-grid.five,
  .cards-grid.buyers,
  .cards-grid.six,
  .three-columns,
  .stats-row,
  .stats-row.compact,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid .portrait,
  .gallery-grid .video {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 16 / 11;
  }
  .hero-image,
  .equipment-layout .wide {
    min-height: 280px;
    aspect-ratio: 16 / 11;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}


@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    text-align: left;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
    margin-left: auto;
    margin-right: auto;
  }

  .hero-grid,
  .hero-copy,
  .hero-media {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy h1,
  .hero-copy .lead,
  .hero-copy .eyebrow,
  .included-mini,
  .included-mini li {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section-heading,
  .cta-panel,
  .form-note {
    text-align: center;
  }

  #equipment .cta-panel + .section-heading {
    margin-top: 52px;
  }

  .hero-copy,
  .remember-grid > *,
  .opportunity-grid > *,
  .feature-photo,
  .card,
  .metric-card,
  .list-card,
  .quote-card,
  .contact-form {
    width: 100%;
    max-width: 100%;
  }

  .hero-grid,
  .feature-grid,
  .two-columns,
  .opportunity-grid,
  .remember-grid,
  .cards-grid,
  .cards-grid.five,
  .cards-grid.six,
  .cards-grid.buyers,
  .three-columns,
  .stats-row,
  .stats-row.compact,
  .steps,
  .form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: stretch;
    align-items: stretch;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .gallery-grid .square,
  .gallery-grid .portrait,
  .gallery-grid .video {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 16 / 11;
  }

  .hero-actions,
  .trust-badges,
  .equipment-badges {
    justify-content: center;
  }

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

  .image-card,
  .hero-image,
  .equipment-layout .wide {
    width: 100%;
    max-width: 100%;
  }

  .image-card span,
  .placeholder-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    text-align: center;
  }

  .floating-stats {
    position: static !important;
    display: grid;
    grid-template-columns: 1fr !important;
    width: 100%;
    margin-top: 16px;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .lead {
    font-size: 1.05rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 22px);
  }

  .card,
  .metric-card,
  .list-card,
  .quote-card,
  .contact-form,
  .cta-panel {
    padding: 22px 18px;
  }

  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .trust-badges span,
  .equipment-badges span,
  .pill {
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.video-wrapper {
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  display: block;
}

.video-card h3 {
  margin-top: 18px;
}

.video-card p {
  margin-top: 10px;
}

@media (max-width: 760px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}


.bottom-20 {
  margin-bottom: 20px;
}

.spec-label {
  font-weight: 600;
  color: #8b6725;
}

.transparency {
  opacity: 0.8;
}


.gallery-grid .image-card {
    height: 320px;
}

.gallery-grid .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.old-price {
    text-decoration: line-through;
    color: #8c857c;
    margin-right: 10px;
}

.new-price {
    color: #2f241b;
    font-weight: 700;
    font-size: 1.4rem;
}

/* Product carousel */
.product-carousel {
  position: relative;
  width: 100%;
}

.product-carousel .gallery-grid {
  display: flex;
  grid-template-columns: none;
  grid-auto-flow: initial;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.product-carousel .gallery-grid::-webkit-scrollbar { display: none; }

.product-carousel .gallery-grid .image-card {
  flex: 0 0 calc((100% - 18px) / 2);
  width: auto;
  min-width: 0;
  height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  aspect-ratio: 1 / 1 !important;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--charcoal);
  background: #fff;
  box-shadow: 0 10px 28px rgba(58, 49, 38, .09);
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.carousel-button:hover:not(:disabled) {
  background: var(--soft);
  transform: translateY(-1px);
}

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

.carousel-button:disabled {
  opacity: .35;
  cursor: default;
}

.carousel-status {
  min-width: 64px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 760px) {
  .product-carousel .gallery-grid {
    display: flex;
    grid-template-columns: none !important;
    width: 100%;
  }

  .product-carousel .gallery-grid .image-card {
    flex-basis: 88%;
    height: clamp(260px, 76vw, 340px);
    aspect-ratio: auto !important;
  }

  .carousel-controls { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .product-carousel .gallery-grid { scroll-behavior: auto; }
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 0;
}

.thank-you-page .cta-panel { margin-top: 0; }
.thank-you-page h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
