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

:root {
  --bg: #FFFFFF;
  --bg-alt: #F7F5F0;
  --gold: #B8863E;
  --gold-dark: #8C6423;
  --text: #1C1A16;
  --text-dim: #6B6558;
  --border: rgba(0,0,0,0.10);
  --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 0.75rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-link { display: block; line-height: 0; }
.logo { height: 34px; width: auto; display: block; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.site-nav a:hover,
.site-nav a:visited:hover { color: var(--gold-dark); }
.site-nav a:visited { color: var(--text); }

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 28px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn, .btn:visited { color: inherit; }
.btn-primary,
.btn-primary:visited {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #FFFFFF;
}
.btn-primary:hover { transform: translateY(-1px); opacity: 0.92; }
.btn-small { padding: 8px 22px; font-size: 0.9rem; }
.btn-large { padding: 16px 40px; font-size: 1.05rem; }

/* Hero */
.hero { padding-top: 64px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--gold-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero-sub {
  color: var(--text-dim);
  font-size: 1.08rem;
  margin: 20px 0 28px;
  max-width: 46ch;
}
.hero-micro {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Specs */
.specs { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-sub { color: var(--text-dim); margin-bottom: 40px; max-width: 60ch; }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.spec-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
}
.spec-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--gold-dark);
  font-weight: 700;
}
.spec-label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.facts-image {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.specs-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.specs-extra img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  border: 1px solid var(--border);
}

/* Lifestyle */
.lifestyle-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.lifestyle-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  border: 1px solid var(--border);
}
.lifestyle-copy p { color: var(--text-dim); font-size: 1.05rem; }
.lifestyle-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.lifestyle-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  border: 1px solid var(--border);
}

/* How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.step {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.95rem; }

/* Buy */
.buy {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.buy-emblem {
  height: 140px;
  width: auto;
  margin: 0 auto 20px;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.buy-price { color: var(--text-dim); margin-bottom: 24px; }
.guarantee { color: var(--text-dim); font-size: 0.9rem; margin-top: 18px; }
.guarantee a, .guarantee a:visited { color: var(--gold-dark); }

/* Gallery */
.gallery { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  border: 1px solid var(--border);
}
.gallery-grid img:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 100%; }

/* FAQ */
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
details {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
}
details p { margin-top: 12px; color: var(--text-dim); }
details a, details a:visited { color: var(--gold-dark); }

/* Email capture */
.email-capture { background: var(--bg-alt); border-top: 1px solid var(--border); text-align: center; }
.email-inner { max-width: 520px; }
.email-inner p { color: var(--text-dim); margin: 12px 0 28px; }
.email-form { display: flex; gap: 10px; }
.email-form input[type="email"] {
  flex: 1;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.email-form input[type="email"]::placeholder { color: var(--text-dim); }
.email-form button { border: none; cursor: pointer; font-family: inherit; }
.email-form-note { margin-top: 14px; font-size: 0.9rem; color: var(--gold-dark); min-height: 1.2em; }
.hp-field { position: absolute; left: -9999px; }

/* Footer */
.site-footer { padding: 48px 0; border-top: 1px solid var(--border); text-align: center; }
.logo-footer { height: 26px; margin: 0 auto 18px; opacity: 0.85; }
.footer-contact { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 14px; }
.footer-contact a, .footer-contact a:visited { color: var(--gold-dark); }
.disclaimer {
  color: var(--text-dim);
  font-size: 0.75rem;
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.5;
  opacity: 0.85;
}
.copyright { color: var(--text-dim); font-size: 0.8rem; opacity: 0.7; }

/* Responsive */
@media (max-width: 820px) {
  .site-nav { display: none; }
  .hero-inner, .lifestyle-inner { grid-template-columns: 1fr; }
  .lifestyle-image { order: -1; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-extra { grid-template-columns: 1fr; }
  .lifestyle-secondary { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img:nth-child(1) { grid-column: span 2; grid-row: span 1; height: 220px; }
  .steps-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  section { padding: 52px 0; }
}
