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

:root {
  --navy: #0e1b2d;
  --navy-2: #16263d;
  --gold: #c9a463;
  --gold-light: #e4c98a;
  --cream: #f7f4ed;
  --cream-2: #efe9dc;
  --text: #23282f;
  --muted: #5c6570;
  --line: #ddd6c4;
  --whatsapp: #25d366;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3, .monogram { font-family: 'Playfair Display', serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* Utility top bar */
.topbar {
  background: var(--navy);
  color: #cfd6e2;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 9px 0;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,237,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; max-width: 1180px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-seal {
  width: 52px; height: auto; flex-shrink: 0;
}
.brand-text { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.08rem; line-height: 1.2; }
.brand-tag { font-size: 0.62rem; letter-spacing: 0.12em; color: var(--gold); font-weight: 600; margin-top: 2px; }
nav.main-nav { display: flex; gap: 30px; }
nav.main-nav a { font-size: 0.92rem; color: var(--muted); font-weight: 500; transition: color .15s; }
nav.main-nav a:hover { color: var(--navy); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; font-weight: 600; font-size: 0.9rem; transition: all .15s; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.4); color: #f2f0ea; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  background: var(--whatsapp); color: #fff; padding: 13px 20px;
  border-radius: 30px; font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Hero */
.hero {
  background: var(--navy); color: #f2f0ea;
  padding: 64px 0 0; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; }
.hero-copy { padding-bottom: 64px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 22px; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); line-height: 1.14; margin: 0 0 22px; font-weight: 600; }
.hero p.lead { color: #c7cede; font-size: 1.04rem; max-width: 520px; margin: 0 0 30px; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.checklist { display: flex; gap: 26px; flex-wrap: wrap; color: #bfc8da; font-size: 0.88rem; }
.checklist span { display: flex; align-items: center; gap: 7px; }
.checklist .check { color: var(--gold); }

.hero-photo-wrap { position: relative; }
.hero-photo {
  border: 1px solid rgba(201,164,99,0.35);
  padding: 10px;
  position: relative;
}
.hero-photo img { width: 100%; height: 440px; object-fit: cover; object-position: top center; }
.hero-monogram {
  position: absolute; left: -60px; bottom: 60px;
  font-size: 4.2rem; color: var(--gold); opacity: 0.85;
  font-weight: 500; z-index: 2; display: none;
}
.hero-caption {
  background: var(--navy-2); border: 1px solid rgba(201,164,99,0.3); border-top: none;
  padding: 16px 20px;
}
.hero-caption strong { display: block; font-family: 'Playfair Display', serif; font-size: 1rem; }
.hero-caption span { color: var(--gold-light); font-size: 0.8rem; }
.hero-index { position: absolute; top: -36px; right: 0; color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; }

/* Sections */
section { padding: 88px 0; }
.section-tag { color: var(--gold); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; margin: 0 0 20px; max-width: 640px; }
.section-lead { color: var(--muted); max-width: 560px; font-size: 1rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; border-top: 1px solid var(--line); padding-top: 44px; }
.about-grid .lead-block h2 { border-left: 2px solid var(--gold); padding-left: 22px; }
.about-grid .body-block p { color: var(--text); margin-bottom: 18px; }
.signature { border-top: 1px solid var(--line); padding-top: 18px; margin-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.signature strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.signature span { color: var(--muted); font-size: 0.88rem; }
.signature .link { color: var(--navy); font-weight: 600; font-size: 0.9rem; }

/* Areas */
section.areas { background: var(--cream-2); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 8px; }
.area-card { background: var(--cream-2); padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; transition: background .15s; }
.area-card:hover { background: #fff; }
.area-card.dark { background: var(--navy-2); color: #f2f0ea; }
.area-card.dark p { color: #bfc8da; }
.area-card.dark .link { color: var(--gold-light); }
.area-card .top-row { display: flex; justify-content: space-between; align-items: center; }
.area-card .num { color: var(--gold); font-weight: 700; font-size: 0.82rem; font-family: 'Playfair Display', serif; }
.area-card h3 { font-size: 1.02rem; margin: 0; }
.area-card p { color: var(--muted); font-size: 0.88rem; margin: 0; flex-grow: 1; }
.area-card .link { color: var(--navy); font-size: 0.85rem; font-weight: 600; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .icon { width: 38px; height: 38px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; font-size: 0.95rem; }
.contact-info-item .label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-info-item strong { font-size: 0.98rem; }

.form-box { background: #fff; border: 1px solid var(--line); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid var(--line); background: var(--cream);
  padding: 12px 14px; font-family: 'Inter'; font-size: 0.92rem; color: var(--text);
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; }

/* Address box */
.address-box { border: 1px solid var(--line); background: #fff; padding: 26px; display: flex; gap: 16px; align-items: flex-start; margin-top: 48px; flex-wrap: wrap; }
.address-box .icon { width: 40px; height: 40px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.address-box .content { flex: 1; min-width: 220px; }
.address-box .label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.address-box .hours { color: var(--muted); font-size: 0.88rem; margin-top: 8px; }
.address-box .actions { display: flex; gap: 12px; align-items: center; margin-top: 12px; flex-wrap: wrap; }
.address-box .maps-link { color: var(--navy); font-weight: 600; font-size: 0.88rem; }

/* Map */
section.map-section { padding-top: 0; }
.map-embed { width: 100%; height: 420px; border: 1px solid var(--line); filter: grayscale(15%); }

/* Footer */
.disclaimer-bar { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; font-size: 0.85rem; color: var(--muted); }
.disclaimer-bar a { color: var(--navy); font-weight: 600; text-decoration: underline; }
footer.site { background: var(--navy); color: #cfd6e2; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #f2f0ea; margin-bottom: 8px; }
.footer-brand span { color: var(--gold); }
.footer-grid p { color: #8f9aad; font-size: 0.88rem; }
.footer-col h4 { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 16px; }
.footer-col a, .footer-col div.line { display: block; color: #cfd6e2; font-size: 0.9rem; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: #8f9aad; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { font-size: 1.02rem; margin: 0 0 8px; font-family: 'Inter'; font-weight: 600; }
.faq-item p { color: var(--muted); margin: 0; font-size: 0.94rem; }

/* Area detail page */
.area-hero { background: var(--navy); color: #f2f0ea; padding: 64px 0 72px; }
.breadcrumb { color: #9aa5bb; font-size: 0.85rem; margin-bottom: 18px; }
.breadcrumb a { color: var(--gold-light); }
.area-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0 0 18px; max-width: 700px; }
.area-hero p { color: #c7cede; max-width: 600px; font-size: 1.02rem; margin: 0 0 28px; }
.area-body { max-width: 720px; }
.area-body h2 { font-size: 1.3rem; margin: 40px 0 14px; }
.area-body p { margin: 0 0 16px; }
.area-body ul { padding-left: 20px; }
.area-body li { margin-bottom: 8px; }
.note-box { background: var(--cream-2); border-left: 3px solid var(--gold); padding: 18px 22px; font-size: 0.92rem; color: var(--muted); margin: 32px 0; }

@media (max-width: 940px) {
  nav.main-nav { display: none; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .areas-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}
