/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #f6f1e6;
  --bg-soft: #efe7d6;
  --ink: #17201a;
  --ink-soft: #4a4a42;
  --green-deep: #10231a;
  --green: #16342a;
  --green-light: #1f4a3a;
  --gold: #c8a355;
  --gold-light: #e6cd8f;
  --gold-dark: #9a7a35;
  --radius: 14px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Jost', Arial, sans-serif;

  --art-1: linear-gradient(160deg, #2b3f2c 0%, #16211a 55%, #c8a355 130%);
  --art-2: linear-gradient(160deg, #3a2a1f 0%, #17120d 55%, #d8b878 130%);
  --art-3: linear-gradient(160deg, #23303d 0%, #10161c 55%, #b99a5c 130%);
  --art-4: linear-gradient(160deg, #33241f 0%, #180f0c 55%, #caa25a 130%);
  --art-5: linear-gradient(160deg, #26302a 0%, #121913 55%, #e0c281 130%);
  --art-6: linear-gradient(160deg, #2f2620 0%, #15100c 55%, #c9a659 130%);
  --art-7: linear-gradient(160deg, #212b3a 0%, #0f131c 55%, #d3b371 130%);
  --art-8: linear-gradient(160deg, #362a19 0%, #191108 55%, #e2c583 130%);
}

html { scroll-behavior: auto; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--green-deep); }

em { font-style: italic; color: var(--gold-dark); }

a { text-decoration: none; color: inherit; }

.eyebrow {
  font-family: var(--sans);
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 10px; }
.section-title.center { text-align: center; }
.section-sub { color: var(--ink-soft); margin-bottom: 40px; }
.section-sub.center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: #1a1408;
  box-shadow: 0 10px 24px rgba(160, 122, 40, 0.35);
}
.btn-small { padding: 10px 20px; font-size: 14px; }
.btn-large { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 230, 0.85);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(23, 32, 26, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-deep);
}
.logo span { color: var(--gold-dark); }
.nav-cta { white-space: nowrap; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 72px 0 40px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% -10%, rgba(200,163,85,0.18), transparent 55%), var(--bg);
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
  font-size: 17px;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.hero-price, .offer-price, .mobile-sticky-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.was { text-decoration: line-through; color: var(--ink-soft); font-size: 15px; }
.now { font-family: var(--serif); font-weight: 700; font-size: 22px; color: var(--green-deep); }
.hero-microcopy { font-size: 13px; color: var(--ink-soft); margin-bottom: 48px; }

.hero-frames {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
}
.frame {
  position: relative;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(16, 35, 26, 0.28);
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.frame-phone { width: 130px; height: 260px; }
.frame-desktop { width: 300px; height: 190px; margin-bottom: 20px; }
.frame-phone-2 { display: none; }
.frame-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.35);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
}

/* ===== Ticker ===== */
.ticker {
  background: var(--green-deep);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  gap: 14px;
  white-space: nowrap;
  width: max-content;
  animation: scroll-left 26s linear infinite;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Included ===== */
.included { padding: 56px 0; background: var(--bg-soft); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.included-num { display: block; font-family: var(--serif); font-size: 32px; color: var(--gold-dark); font-weight: 700; }
.included-label { display: block; margin-top: 6px; font-size: 14px; color: var(--ink-soft); }
.included-label small { font-size: 11px; opacity: 0.85; }

/* ===== Gallery ===== */
.gallery { padding: 90px 0 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-card {
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(16,35,26,0.18);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 45%);
  pointer-events: none;
}
.gallery-card-label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-family: var(--serif);
  font-size: 13px;
  color: #f6f1e6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 1;
}
.gallery-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ===== Why ===== */
.why { padding: 60px 0 90px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-item { text-align: center; padding: 0 12px; }
.why-icon { font-size: 30px; display: block; margin-bottom: 14px; }
.why-item h3 { font-size: 19px; margin-bottom: 8px; }
.why-item p { color: var(--ink-soft); font-size: 14px; }

/* ===== Offer ===== */
.offer { padding: 30px 0 90px; }
.offer-card {
  background: linear-gradient(160deg, var(--green-deep), var(--green) 70%);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  color: #f6f1e6;
  box-shadow: 0 30px 70px rgba(16,35,26,0.35);
}
.offer-card .eyebrow { color: var(--gold-light); }
.offer-title { color: #f6f1e6; margin-bottom: 8px; }
.offer-sub { color: rgba(246,241,230,0.75); margin-bottom: 28px; font-size: 15px; }
.offer-list {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 0 auto 30px;
  font-size: 14.5px;
  color: rgba(246,241,230,0.9);
}
.offer-price { justify-content: center; margin-bottom: 22px; }
.offer-price .was { color: rgba(246,241,230,0.55); }
.offer-price .now { color: var(--gold-light); font-size: 30px; }
.offer-microcopy { margin-top: 14px; font-size: 12.5px; color: rgba(246,241,230,0.6); }

/* ===== FAQ ===== */
.faq { padding: 30px 0 100px; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(23,32,26,0.12);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  padding: 20px 4px;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
}
.faq-question span { color: var(--gold-dark); font-size: 20px; transition: transform .2s ease; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.faq-answer p { padding: 0 4px 20px; }

/* ===== Final CTA ===== */
.final-cta {
  background: var(--green-deep);
  padding: 80px 0;
  text-align: center;
}
.final-cta h2 { color: #f6f1e6; font-size: clamp(26px, 4vw, 38px); margin-bottom: 26px; }

/* ===== Footer ===== */
.site-footer { padding: 40px 0 100px; background: var(--bg-soft); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-links { display: flex; gap: 20px; font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; justify-content: center; }
.footer-copy { font-size: 12px; color: var(--ink-soft); opacity: 0.7; }

/* ===== Mobile sticky CTA ===== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(246,241,230,0.95);
  backdrop-filter: none;
  border-top: 1px solid rgba(23,32,26,0.1);
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(16,35,26,0.12);
}
.mobile-sticky-price .now { font-size: 18px; }
.mobile-sticky-price .was { font-size: 12px; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .offer-card { padding: 40px 24px; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 78px; }
  .frame-desktop { width: 46vw; height: auto; aspect-ratio: 16/9; }
  .frame-phone { width: 24vw; height: auto; aspect-ratio: 9/16; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 52px; }
}
