/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px; line-height: 1.7; color: #2a2a2a;
  background: #faf7f2; -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: #c9a961; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600; line-height: 1.25; color: #1a1a1a;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1.1rem; color: #444; }
.eyebrow {
  display: inline-block; font-family: 'Inter', sans-serif;
  font-size: .75rem; letter-spacing: 3px; text-transform: uppercase;
  color: #c9a961; font-weight: 600; margin-bottom: 0.75rem;
}
.center { text-align: center; }

/* ========== LAYOUT ========== */
.container { width: min(1180px, 92%); margin: 0 auto; }
section { padding: clamp(3rem, 7vw, 6rem) 0; }
section.dark { background: #1a1a1a; color: #f1ede6; }
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: #f1ede6; }
section.dark p { color: #d4cfc5; }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26,26,26,0.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,169,97,0.15);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; gap: 1.5rem;
}
.logo {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: #f1ede6; display: flex; flex-direction: column; line-height: 1.1;
}
.logo small { font-family: 'Inter', sans-serif; font-size: .65rem; letter-spacing: 2px; color: #c9a961; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap; }
.nav-links a { color: #e8e3d8; font-size: .92rem; font-weight: 500; }
.nav-links a:hover { color: #c9a961; }
.nav-cta {
  background: #c9a961; color: #1a1a1a !important;
  padding: .6rem 1.2rem; border-radius: 30px; font-weight: 600; font-size: .88rem;
}
.nav-cta:hover { background: #d4b572; color: #1a1a1a !important; }
.menu-toggle { display: none; color: #f1ede6; font-size: 1.5rem; }
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: #1a1a1a;
    padding: 1.5rem; gap: 1rem; display: none;
    border-bottom: 1px solid rgba(201,169,97,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: .5rem 0; }
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(180deg, rgba(26,26,26,.85) 0%, rgba(26,26,26,.7) 100%),
    url('https://images.unsplash.com/photo-1544161515-4ab664b598c4?w=1600&q=80') center/cover;
  color: #f1ede6; padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
}
.hero h1 { color: #fff; max-width: 780px; margin-bottom: 1.25rem; }
.hero p { color: #d8d2c5; font-size: 1.15rem; max-width: 640px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 1.8rem; border-radius: 50px; font-weight: 600;
  font-size: .95rem; letter-spacing: .5px; transition: all .25s ease;
}
.btn-primary { background: #c9a961; color: #1a1a1a; }
.btn-primary:hover { background: #d4b572; color: #1a1a1a; transform: translateY(-2px); }
.btn-outline { border: 1.5px solid #c9a961; color: #c9a961; }
.btn-outline:hover { background: #c9a961; color: #1a1a1a; transform: translateY(-2px); }
.btn-dark { background: #1a1a1a; color: #f1ede6; }
.btn-dark:hover { background: #2a2a2a; color: #c9a961; }

/* ========== CARDS ========== */
.card {
  background: #fff; padding: 2rem 1.75rem; border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  border: 1px solid rgba(201,169,97,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.1); }
.card-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: #f1ede6; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.3rem; color: #c9a961;
}
.dark .card { background: #222; border-color: rgba(201,169,97,.15); }

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(180deg, rgba(26,26,26,.85), rgba(26,26,26,.75)),
    url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?w=1600&q=80') center/cover;
  color: #fff; padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero .eyebrow { color: #c9a961; }

/* ========== BREADCRUMB ========== */
.breadcrumb { padding: .9rem 0; font-size: .85rem; color: #777; border-bottom: 1px solid #eee; }
.breadcrumb a { color: #c9a961; }
.breadcrumb span { margin: 0 .5rem; }

/* ========== SECTIONS ========== */
.why-grid .card { text-align: center; }
.why-grid .card-icon { margin: 0 auto 1rem; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.step {
  padding: 1.75rem; background: rgba(201,169,97,.08); border-radius: 12px;
  border-left: 3px solid #c9a961;
}
.step-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: #c9a961; font-weight: 700; line-height: 1; margin-bottom: .5rem; }
.info-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
@media (max-width: 768px) { .info-block { grid-template-columns: 1fr; } }
.info-block h3 { color: #c9a961; }
.info-block .detail { padding: .75rem 0; border-bottom: 1px solid #e9e4d8; display: flex; gap: 1rem; }
.info-block .detail strong { min-width: 110px; color: #1a1a1a; font-weight: 600; }

/* ========== FAQ ========== */
.faq-item {
  background: #fff; border: 1px solid #e9e4d8; border-radius: 10px;
  margin-bottom: .75rem; overflow: hidden;
}
.faq-q {
  width: 100%; padding: 1.25rem 1.5rem; text-align: left;
  font-weight: 600; color: #1a1a1a; display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.5rem; color: #c9a961; font-weight: 300; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all .3s ease; color: #555; }
.faq-item.open .faq-a { padding: 0 1.5rem 1.25rem; max-height: 500px; }

/* ========== MAP ========== */
.map-embed { width: 100%; height: 400px; border-radius: 12px; overflow: hidden; border: 0; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .88rem; margin-bottom: .4rem; font-weight: 500; color: #333; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid #ddd; border-radius: 8px;
  font-family: inherit; font-size: .95rem; background: #fff; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: #c9a961;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ========== FOOTER ========== */
.site-footer {
  background: #121212; color: #b9b4a8; padding: 3.5rem 0 1.5rem; font-size: .92rem;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; margin-bottom: 2rem;
}
.footer-col h4 { color: #f1ede6; font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.footer-col a { display: block; padding: .3rem 0; color: #b9b4a8; }
.footer-col a:hover { color: #c9a961; }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(201,169,97,.15);
  text-align: center; font-size: .85rem; color: #777;
}

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: #c9a961; color: #1a1a1a; padding: 1rem; text-align: center;
  font-weight: 600; box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.sticky-cta a { color: #1a1a1a; display: block; }
@media (max-width: 600px) { .sticky-cta { display: block; } body { padding-bottom: 60px; } }

/* ========== LEGAL ========== */
.legal-content h2 { margin-top: 2rem; font-size: 1.5rem; }
.legal-content h3 { margin-top: 1.25rem; font-size: 1.1rem; color: #1a1a1a; }
.legal-content ul { margin: 1rem 0 1rem 1.5rem; list-style: disc; color: #444; }
.legal-content ul li { margin-bottom: .5rem; }

/* ========== ACCESSIBILITY ========== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
a:focus-visible, button:focus-visible { outline: 2px solid #c9a961; outline-offset: 2px; }
