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

:root {
  --gold: #c8956c;
  --gold-light: #d4a67e;
  --bg: #121010;
  --bg2: #1a1714;
  --card: #1e1a17;
  --border: #2a2520;
  --text: #e8e0d8;
  --dim: #ccc;
  --muted: #999;
  --heading: #f5efe8;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.7; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { text-decoration: underline; color: var(--gold-light); }
::selection { background: var(--gold); color: #000; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 22px; }
li { margin-bottom: 10px; font-size: 15px; color: var(--dim); line-height: 1.75; }
strong { color: var(--heading); }

/* ── NAV ─────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(18,16,16,.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--gold); text-decoration: none; }
.nav-logo:hover { text-decoration: none; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; color: #bbb; text-decoration: none; transition: color .2s; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); text-decoration: none; }
.burger { display: none; background: none; border: none; color: #ddd; font-size: 24px; cursor: pointer; line-height: 1; }
.mobile-menu { display: none; flex-direction: column; padding: 8px 24px 18px; gap: 2px; border-top: 1px solid var(--border); }
.mobile-menu a { font-size: 14px; color: #ccc; padding: 8px 0; display: block; text-decoration: none; }
.mobile-menu a:hover { color: var(--gold); text-decoration: none; }

@media(max-width:860px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .mobile-menu.open { display: flex; }
}

/* ── LAYOUT ──────────────────────────────── */
.section { padding: 64px 24px; }
.section-sm { padding: 48px 24px; }
.dark { background: var(--bg2); }
.wrap { max-width: 1140px; margin: 0 auto; }
.narrow { max-width: 740px; }
.center { text-align: center; }

/* ── TYPOGRAPHY ──────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--heading); line-height: 1.25; }
h1 { font-size: clamp(32px, 5vw, 50px); font-weight: 600; }
h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 600; margin-bottom: 16px; }
h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
p { font-size: 15px; line-height: 1.78; color: var(--dim); margin-bottom: 16px; }
.lead { font-size: 17px; line-height: 1.8; color: #bbb; }
.muted { font-size: 13px; color: var(--muted); line-height: 1.6; }
.label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }

/* ── HERO ────────────────────────────────── */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, #1a1410, #2a1f18 40%, #1a1714); overflow: hidden; }
.hero-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(200,149,108,.14), transparent 70%); pointer-events: none; }
.hero-content { position: relative; max-width: 720px; padding: 80px 24px; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 580px; margin: 0 auto 32px; }

/* ── PAGE HEADER ─────────────────────────── */
.page-header { padding: 80px 24px 44px; text-align: center; background: linear-gradient(135deg, #1a1410, #1e1a17); }
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: #bbb; max-width: 580px; margin: 0 auto; font-size: 16px; }

/* ── BUTTONS ─────────────────────────────── */
.btn { display: inline-block; padding: 13px 32px; background: var(--gold); color: #1a1410; font-weight: 600; font-size: 14px; border-radius: 6px; border: none; cursor: pointer; font-family: var(--sans); text-decoration: none; transition: opacity .2s; }
.btn:hover { text-decoration: none; opacity: .9; }
.btn-o { display: inline-block; padding: 12px 28px; background: transparent; color: var(--gold); font-weight: 500; font-size: 14px; border-radius: 6px; border: 1.5px solid var(--gold); cursor: pointer; font-family: var(--sans); text-decoration: none; transition: background .2s; }
.btn-o:hover { text-decoration: none; background: rgba(200,149,108,.08); }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-lg { padding: 15px 40px; font-size: 15px; }

/* ── GRIDS ────────────────────────────────── */
.g2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 44px; align-items: start; }
.g3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

/* ── CARD ─────────────────────────────────── */
.card { background: var(--card); border-radius: 14px; padding: 32px; border: 1px solid var(--border); }
.card-alt { background: #2a2520; }
.card-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: #f0e8e0; margin-bottom: 10px; }
.card p { font-size: 14px; line-height: 1.75; color: #bbb; }
.step-num { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--gold); display: block; margin-bottom: 4px; }

/* ── IMAGE PLACEHOLDER ───────────────────── */
.img-placeholder { background: var(--card); border: 2px dashed var(--border); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-direction: column; color: var(--muted); font-size: 14px; min-height: 260px; gap: 8px; }
.img-placeholder span { font-size: 32px; opacity: .5; }
.img-placeholder-sm { min-height: 180px; }
.img-placeholder-lg { min-height: 340px; }

/* ── CTA ──────────────────────────────────── */
.cta-section { padding: 72px 24px; text-align: center; background: linear-gradient(135deg, #1e1814, #2a2018); }
.cta-section h2 { margin-bottom: 12px; }
.cta-section > p { color: #c8c0b8; max-width: 560px; margin: 0 auto 28px; font-size: 16px; }
.cta-box { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 36px; max-width: 600px; margin: 0 auto; }

/* ── TRUST ────────────────────────────────── */
.trust-val { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--gold); }
.trust-label { font-size: 14px; color: #bbb; margin-top: 6px; }

/* ── GALLERY ──────────────────────────────── */
.gallery-item { border-radius: 14px; height: 240px; display: flex; align-items: flex-end; padding: 24px; position: relative; overflow: hidden; }
.gallery-item span { font-size: 15px; font-weight: 600; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.7); position: relative; z-index: 1; }

/* ── DIVIDER ──────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 40px 0; }

/* ── FAQ STYLE ────────────────────────────── */
.legal-block { margin-bottom: 36px; }
.legal-block h3 { margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }

/* ── CONTACT ──────────────────────────────── */
.contact-label { font-size: 12px; color: var(--muted); display: block; margin-bottom: 3px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-val { color: var(--gold); font-size: 16px; }

/* ── FOOTER ───────────────────────────────── */
footer { background: #0e0c0b; border-top: 1px solid var(--border); padding: 48px 24px 0; }
.footer-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 32px; padding-bottom: 32px; }
.footer-logo { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--gold); margin-bottom: 10px; }
.footer-head { font-weight: 600; font-size: 13px; color: #f0e8e0; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.footer-link { display: block; color: var(--muted); font-size: 13px; padding: 3px 0; text-decoration: none; }
.footer-link:hover { color: var(--gold); text-decoration: none; }
.footer-bottom { border-top: 1px solid #1e1a17; padding: 16px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: #666; margin: 0; }

/* ── RESPONSIVE ──────────────────────────── */
@media(max-width:600px) {
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .section { padding: 44px 18px; }
  .hero { min-height: 460px; }
  .hero-content { padding: 60px 18px; }
  .page-header { padding: 60px 18px 32px; }
  .card { padding: 24px; }
}
