@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --dark:       #141210;
  --dark2:      #1E1A14;
  --dark3:      #261F16;
  --wood:       #7A5120;
  --wood-med:   #A06830;
  --wood-light: #C4894A;
  --accent:     #D4A256;
  --accent2:    #E8BC70;
  --cream:      #F0E8DA;
  --sand:       #C8B89A;
  --white:      #FFFFFF;
  --radius:     12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

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

img { display: block; max-width: 100%; }

/* ── Utilities ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }
.text-sand   { color: var(--sand); }
.text-center { text-align: center; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(20,18,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,162,86,0.2);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--accent); font-weight: 700; }
.nav-back {
  font-size: 13px; color: var(--sand); display: flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.nav-back:hover { color: var(--accent); }

/* ── Gold divider ── */
.gold-line { width: 60px; height: 3px; background: var(--accent); border-radius: 2px; margin: 16px 0 24px; }
.gold-line.center { margin: 16px auto 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all .25s; text-align: center;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--wood), var(--wood-med));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(122,81,32,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(122,81,32,0.5); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(212,162,86,0.35);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,162,86,0.45); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--dark); }

.btn-lg { padding: 20px 48px; font-size: 17px; }
.btn-full { width: 100%; }

/* ── Section ── */
section { padding: 90px 0; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title { font-size: clamp(32px, 5vw, 52px); color: var(--white); margin-bottom: 8px; }
.section-sub { font-size: 17px; color: var(--sand); max-width: 560px; line-height: 1.7; }

/* ── Cards ── */
.card {
  background: var(--dark2);
  border: 1px solid rgba(212,162,86,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

/* ── Hero ── */
.hero {
  padding-top: 80px;
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #141210 0%, #1E1A14 50%, #261a0e 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(90deg, #fff 0px, #fff 1px, transparent 1px, transparent 18px);
}
.hero-content { position: relative; z-index: 2; }

/* ── Check list ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--cream); }
.check-list li::before {
  content: '✓'; color: var(--accent); font-weight: 700; font-size: 14px;
  background: rgba(212,162,86,0.15); border-radius: 50%;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}

/* ── Tag badge ── */
.badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  background: rgba(212,162,86,0.15); color: var(--accent); border: 1px solid rgba(212,162,86,0.3);
}

/* ── Form ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--sand); letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark3); border: 1px solid rgba(212,162,86,0.2);
  border-radius: 8px; padding: 14px 16px; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 15px;
  transition: border-color .2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Footer ── */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(212,162,86,0.15);
  padding: 40px 24px; text-align: center;
}
footer .footer-logo { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--accent); margin-bottom: 8px; }
footer p { font-size: 13px; color: var(--sand); }

/* ── Responsive ── */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .btn-lg { padding: 16px 32px; font-size: 15px; }
}
