
:root {
  --bg: #fffaf2;
  --card: #ffffff;
  --card-soft: #fff6e6;
  --text: #181512;
  --muted: #6f655c;
  --line: #ead9b7;
  --gold: #d7a120;
  --gold-dark: #9c6a06;
  --pink: #f4d5e3;
  --dark: #221d17;
  --shadow: 0 18px 50px rgba(41, 28, 7, .10);
  --radius: 24px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: #fff; padding: 12px; z-index: 999; }
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.nav { min-height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand-badge {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800;
  background: linear-gradient(135deg, #f1c03b, #cc8d07);
  color: #fff;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: .75rem; }
.menu { display: flex; gap: 22px; }
.menu a { text-decoration: none; font-weight: 700; font-size: .95rem; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .12em;
  font-size: .75rem; font-weight: 900; color: var(--gold-dark); margin-bottom: 12px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  border-radius: 999px; border: 1px solid var(--gold);
  background: var(--gold); color: #1e1708; font-weight: 800;
  text-decoration: none; padding: 14px 22px; transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(156, 106, 6, .22); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-light { background: #fff; border-color: #fff; }
.btn-nav { padding: 10px 16px; }
.btn-large { padding: 18px 28px; font-size: 1.05rem; }
.hero {
  background: radial-gradient(circle at top right, rgba(245, 205, 93, .25), transparent 30%),
              linear-gradient(135deg, #241b12 0%, #52391d 100%);
  color: #fff; padding: 70px 0 60px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem); line-height: .95; letter-spacing: -.05em;
  margin: 0 0 18px; max-width: 850px;
}
.hero p { font-size: 1.1rem; color: #f0e4cf; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 9px; color: #eee0c8; }
.hero-visual img {
  border-radius: 28px; width: 100%; object-fit: cover; box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.highlights { background: var(--bg); border-bottom: 1px solid var(--line); }
.cards4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; padding: 28px 0; }
.mini-card, .card {
  background: var(--card); border: 1px solid rgba(215, 161, 32, .18);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.mini-card { padding: 24px 20px; }
.mini-card span { font-size: 1.5rem; }
.mini-card h3 { margin: 10px 0 6px; font-size: 1.1rem; }
.mini-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.section { padding: 96px 0; }
.section.alt { background: var(--bg); }
.section-heading { max-width: 820px; margin-bottom: 38px; }
.section-heading.compact { max-width: 720px; }
.section-heading h2, .dark h2, .final-cta h2 {
  margin: 0 0 14px; font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: 1; letter-spacing: -.04em;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.feature-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; align-items: stretch; }
.feature-main img, .side-card img, .gallery-item img, .info-card img { width: 100%; object-fit: cover; }
.feature-main img { aspect-ratio: 5/3.5; border-radius: 24px 24px 0 0; }
.side-card img { aspect-ratio: 4/3; border-radius: 24px 24px 0 0; }
.feature-side { display: grid; gap: 20px; }
.feature-body { padding: 20px; }
.feature-body h3 { margin: 0 0 8px; font-size: 1.35rem; }
.feature-body p { margin: 0; color: var(--muted); }
.chip {
  display: inline-block; padding: 7px 12px; border-radius: 999px; background: var(--card-soft);
  color: var(--gold-dark); font-weight: 800; font-size: .78rem; margin-bottom: 10px;
}
.gallery-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.gallery-item { margin: 0; overflow: hidden; }
.gallery-item img { aspect-ratio: 4/5; }
.gallery-item figcaption { padding: 12px 14px; font-weight: 800; font-size: .92rem; }
.cta-box {
  margin-top: 28px; padding: 28px; border-radius: var(--radius);
  background: linear-gradient(135deg, #241c13, #5a4121); color: #fff;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.cta-box h3 { margin: 0 0 8px; font-size: 1.9rem; }
.cta-box p { margin: 0; color: #e7dcc8; }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.stack-cards { display: grid; gap: 16px; }
.info-card img { aspect-ratio: 5/3; border-radius: 24px 24px 0 0; }
.evidence-panel { padding: 24px; }
.evidence-panel h3 { margin: 0 0 14px; font-size: 1.5rem; }
.check-list { margin: 0 0 18px; padding-left: 18px; color: var(--muted); }
.check-list li { margin-bottom: 8px; }
.evidence-shot { border-radius: 18px; border: 1px solid var(--line); }
.reviews-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.review { padding: 22px; }
.review p { margin: 10px 0 8px; font-size: 1rem; }
.review small { color: var(--muted); }
.stars { color: #f0ad00; letter-spacing: .08em; font-size: 1.05rem; }
.dark { background: var(--dark); color: #fff; }
.dark .eyebrow { color: #f5d67a; }
.dark-text { color: #e2d7c9; }
.contact-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: center; }
.contact-list p { margin: 0; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-list strong { color: #f4d57d; }
.map-wrapper { overflow: hidden; min-height: 460px; }
.map-wrapper iframe { width: 100%; height: 460px; border: 0; }
.final-cta {
  padding: 96px 0; text-align: center; background: linear-gradient(135deg, #d9a72b, #b97d08); color: #fff;
}
.final-cta .eyebrow { color: #fff4c4; }
.final-cta p { max-width: 730px; margin: 0 auto 24px; font-size: 1.07rem; }
.center { text-align: center; }
.footer { background: #111; color: #eee; padding: 30px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.footer-note { color: #bcbcbc; font-size: .84rem; text-align: right; }
.floating-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; text-decoration: none;
  display: grid; place-items: center; font-size: 1.55rem; color: #fff;
  background: #25D366; box-shadow: 0 16px 32px rgba(0,0,0,.25);
}
@media (max-width: 980px) {
  .menu { display: none; }
  .hero-grid, .feature-layout, .two-col, .contact-layout { grid-template-columns: 1fr; }
  .cards4 { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-note { text-align: left; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 20px), var(--max)); }
  .header { position: static; }
  .btn-nav { display: none; }
  .hero { padding-top: 40px; }
  .hero h1 { font-size: 3rem; }
  .cards4, .gallery-grid, .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .map-wrapper, .map-wrapper iframe { min-height: 340px; height: 340px; }
}
