@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1c1814;
  --muted: #6f675e;
  --line: #e8e0d4;
  --paper: #f4eee4;
  --cream: #faf6f0;
  --white: #fffcf8;
  --gold: #b0894d;
  --gold-deep: #8c6a35;
  --espresso: #231e19;
  --sage: #3d6b52;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Outfit, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.wrap { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 246, 240, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 137, 77, .18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 78px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 30px; width: auto; }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a {
  text-decoration: none; font-size: 14px; color: var(--muted);
  font-weight: 500; letter-spacing: .02em;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--espresso); color: var(--white) !important;
  text-decoration: none; border: 0; cursor: pointer;
  padding: 13px 22px; border-radius: 999px; font-weight: 600; font-size: 13px;
  letter-spacing: .04em; transition: transform .2s ease, background .2s ease;
}
.btn:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink) !important;
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--white); color: var(--gold-deep) !important; }
.btn-light { background: var(--white); color: var(--espresso) !important; }
.btn-light:hover { background: var(--paper); color: var(--espresso) !important; }
.menu-toggle {
  display: none; background: none; border: 0; font-size: 22px; cursor: pointer; color: var(--ink);
}

.hero-band {
  background:
    radial-gradient(900px 420px at 88% 10%, rgba(176, 137, 77, .22), transparent 55%),
    linear-gradient(165deg, #1a1612 0%, #2c241c 52%, #3a2e22 100%);
  color: var(--white);
  padding: 28px 0 64px;
  margin-bottom: 8px;
}
.hero {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px;
  align-items: center; padding: 56px 0 12px;
}
.kicker {
  letter-spacing: .22em; text-transform: uppercase;
  font-size: 11px; font-weight: 600; color: var(--gold); margin: 0 0 16px;
}
h1, h2, .serif { font-family: "Cormorant Garamond", Georgia, serif; }
h1 {
  font-size: clamp(42px, 6vw, 72px); line-height: 1.05;
  letter-spacing: -.02em; margin: 0 0 18px; font-weight: 600;
}
h2 {
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -.02em;
  margin: 0 0 12px; font-weight: 600;
}
.lead { font-size: 17px; color: rgba(255,252,248,.78); max-width: 520px; margin: 0 0 28px; font-weight: 300; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.price-note { margin-top: 22px; color: rgba(255,252,248,.62); font-size: 14px; }
.price-note strong { color: var(--white); font-size: 26px; font-family: "Cormorant Garamond", serif; font-weight: 600; }
.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px; padding: 18px;
  box-shadow: 0 40px 80px rgba(0,0,0,.28);
}
.hero-card img {
  margin: 0 auto; border-radius: 18px; max-height: 480px; width: 100%;
  object-fit: cover; background: #111;
}
.badge {
  display: inline-block; margin-top: 14px; background: rgba(61, 107, 82, .2);
  color: #cde8d6; border: 1px solid rgba(205, 232, 214, .25);
  font-size: 12px; font-weight: 600; padding: 8px 14px; border-radius: 999px;
}

.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: -36px; position: relative; z-index: 2; }
.trust article {
  background: var(--white); border-radius: 18px; padding: 22px 20px;
  box-shadow: 0 16px 40px rgba(28,24,20,.06);
  border: 1px solid rgba(232, 224, 212, .8);
}
.trust .icon {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: var(--paper); color: var(--gold-deep); margin-bottom: 12px; font-size: 16px;
}
.trust h3 { margin: 0 0 6px; font-size: 16px; font-family: Outfit, sans-serif; }
.trust p { margin: 0; color: var(--muted); font-size: 13.5px; }

.section { padding: 80px 0; }
.section-head { margin-bottom: 36px; }
.sub { color: var(--muted); margin: 0; max-width: 560px; font-weight: 300; font-size: 17px; }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  text-decoration: none; background: var(--white);
  box-shadow: 0 10px 30px rgba(28,24,20,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(28,24,20,.12); }
.card .thumb {
  background: linear-gradient(180deg, #efe8dc, #f7f1e7);
  min-height: 240px; display: flex; align-items: center; padding: 18px;
}
.card .thumb img { margin: 0 auto; max-height: 210px; object-fit: contain; }
.card .body { padding: 18px 18px 20px; }
.card .meta {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}
.card h3 { margin: 8px 0 10px; font-size: 22px; line-height: 1.25; font-weight: 600; }
.card .price { font-weight: 600; color: var(--ink); }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.features article {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 28px 24px;
}
.features .num {
  font-family: "Cormorant Garamond", serif; font-size: 28px; color: var(--gold);
  display: block; margin-bottom: 10px;
}
.features h3 { margin: 0 0 8px; font-size: 22px; }
.features p { margin: 0; color: var(--muted); font-weight: 300; }

.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  background: var(--espresso); color: var(--white);
  border-radius: 28px; padding: 52px;
  box-shadow: 0 30px 70px rgba(28,24,20,.18);
}
.split h2 { color: var(--white); }
.split p { color: rgba(255,252,248,.78); font-weight: 300; }
.quote {
  background: rgba(255,252,248,.06); border: 1px solid rgba(255,252,248,.1);
  border-radius: 20px; padding: 32px;
}
.quote p {
  color: var(--white); margin: 0 0 16px; font-size: 22px; line-height: 1.45;
  font-family: "Cormorant Garamond", serif; font-style: italic;
}
.quote span { color: rgba(255,252,248,.62); font-size: 13px; letter-spacing: .04em; }

.cta {
  text-align: center;
  background: linear-gradient(180deg, #f4eee4, #efe6d6);
  border-radius: 28px; padding: 64px 24px;
  border: 1px solid var(--line);
}

.page-hero { padding: 56px 0 8px; }
.page-hero p { color: var(--muted); font-weight: 300; }
.page-hero .kicker { color: var(--gold-deep); }

.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start; padding: 20px 0 72px;
}
.gallery {
  background: linear-gradient(180deg, #efe8dc, #f7f1e7);
  border-radius: 28px; padding: 22px;
}
.gallery .main {
  border-radius: 18px; width: 100%; max-height: 520px;
  object-fit: contain; background: transparent;
}
.thumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.thumbs button {
  border: 1px solid var(--line); background: var(--white); padding: 0;
  border-radius: 10px; cursor: pointer; width: 70px; height: 70px; overflow: hidden;
}
.thumbs button.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(176,137,77,.25); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product h1 { font-size: clamp(32px, 4vw, 48px); }
.product .price {
  font-size: 34px; font-weight: 600; margin: 8px 0 16px;
  font-family: "Cormorant Garamond", serif; color: var(--gold-deep);
}
.product .short { color: var(--muted); margin: 0 0 22px; font-weight: 300; }
.specs { margin: 28px 0 0; padding: 0; list-style: none; }
.specs li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
.specs span { color: var(--muted); }
.product ul { color: var(--muted); font-weight: 300; padding-left: 18px; }
.product ul strong { color: var(--ink); font-weight: 600; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 22px; padding: 28px;
}
.contact-card h3 { margin-top: 0; font-size: 28px; }

.site-footer {
  background: var(--espresso); color: #d8cfc3; padding: 56px 0 24px; margin-top: 20px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 9px 0; }
.site-footer h4 {
  color: var(--gold); margin: 0 0 14px; letter-spacing: .16em; font-size: 12px; font-weight: 600;
}
.copy { border-top: 1px solid rgba(255,255,255,.08); margin-top: 32px; padding-top: 16px; font-size: 13px; color: #9a8f82; }

@media (max-width: 980px) {
  .hero, .grid, .features, .split, .trust, .product, .contact-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 78px;
    background: var(--cream); padding: 16px 20px 20px; border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: block; }
  .header-inner .btn { display: none; }
  .hero, .grid, .features, .split, .trust, .product, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero, .section { padding-top: 32px; }
  .split { padding: 28px; }
  .hero-band { padding-bottom: 72px; }
}
