:root {
  --ink: #1b1916;
  --charcoal: #171614;
  --charcoal-soft: #23201c;
  --ivory: #f5f0e6;
  --paper: #fbf8f2;
  --gold: #b79a63;
  --gold-soft: #d8c39a;
  --line: rgba(183, 154, 99, 0.34);
  --muted: #6f685d;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(27, 25, 22, 0.13);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 2000;
  background: var(--white);
  color: var(--ink);
  padding: .7rem 1rem;
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background: rgba(23, 22, 20, .94);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
}

.brand-mark {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .08em;
  font-size: .82rem;
}

.brand-copy { display: grid; line-height: 1.18; }
.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.brand-copy span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold-soft);
  margin-top: .18rem;
}

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  position: relative;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .92rem;
  letter-spacing: .04em;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.5rem;
  width: 100%;
  height: 1px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span { width: 19px; height: 1px; background: var(--white); transition: .25s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.section-shell { position: relative; overflow: hidden; }
.hero {
  min-height: 790px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 10% 15%, rgba(183,154,99,.16), transparent 26%),
    linear-gradient(135deg, #171614 0%, #1d1b18 52%, #24201b 100%);
  color: var(--white);
  padding: 140px 0 90px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .23em;
}
.eyebrow.dark { color: #8b7043; }

.hero h1 {
  margin: 0;
  max-width: 740px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8.2vw, 7.6rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
}
.hero h1 span { display: block; color: var(--gold-soft); font-style: italic; }
.hero-lead {
  max-width: 560px;
  margin: 2rem 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.03rem, 1.8vw, 1.25rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-soft); color: #1a1713; box-shadow: 0 12px 30px rgba(216,195,154,.14); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(216,195,154,.22); }
.btn-secondary { border: 1px solid rgba(255,255,255,.2); color: var(--white); background: rgba(255,255,255,.04); }
.btn-secondary:hover { background: rgba(255,255,255,.08); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.26); color: var(--white); }

.hero-card {
  position: relative;
  padding: 2.4rem;
  border: 1px solid rgba(216,195,154,.3);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.hero-card-line { width: 48px; height: 2px; background: var(--gold-soft); margin-bottom: 1.7rem; }
.hero-card-kicker { margin: 0; color: rgba(255,255,255,.6); text-transform: uppercase; font-size: .68rem; letter-spacing: .2em; }
.hero-card h2 { margin: .45rem 0 1.8rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
.address-block { display: grid; gap: .45rem; }
.address-label { color: var(--gold-soft); font-size: .72rem; text-transform: uppercase; letter-spacing: .17em; }
address { font-style: normal; }
.hero-card address { color: rgba(255,255,255,.9); font-size: 1.05rem; }
.mini-divider { height: 1px; background: rgba(255,255,255,.12); margin: 1.6rem 0; }
.coverage-note { margin: 0; color: rgba(255,255,255,.68); }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; border: 1px solid rgba(216,195,154,.14); right: -120px; top: 120px; }
.hero-orb-two { width: 260px; height: 260px; border: 1px solid rgba(216,195,154,.12); right: 40px; bottom: -80px; }

.scroll-cue { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 26px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; display: grid; place-items: start center; padding-top: 8px; }
.scroll-cue span { width: 3px; height: 7px; background: var(--gold-soft); border-radius: 99px; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0%,100%{ transform: translateY(0); opacity:.4 } 50%{ transform: translateY(14px); opacity:1 } }

.intro-section { background: var(--ivory); padding: 0 0 1px; }
.intro-panel {
  position: relative;
  z-index: 5;
  margin-top: -36px;
  background: var(--paper);
  border: 1px solid rgba(183,154,99,.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 2rem;
  align-items: end;
}
.intro-panel h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; line-height: 1.08; }
.intro-panel > p { margin: 0; color: var(--muted); font-size: 1.04rem; }

.section-pad { padding: clamp(76px, 9vw, 120px) 0; }
.coverage-section { background: var(--ivory); }
.section-heading { max-width: 760px; margin-bottom: 2.5rem; }
.section-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.45rem, 5vw, 4.5rem); font-weight: 400; line-height: 1; letter-spacing: -.025em; }
.section-heading > p:last-child { margin: 1.2rem 0 0; color: var(--muted); font-size: 1.05rem; }

.coverage-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.place-card {
  min-height: 195px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(183,154,99,.25);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.48);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.place-card::after { content:""; position:absolute; width:130px; height:130px; border:1px solid rgba(183,154,99,.14); border-radius:50%; right:-40px; bottom:-48px; }
.place-card:hover { transform: translateY(-5px); border-color: rgba(183,154,99,.5); box-shadow: 0 18px 45px rgba(38,32,24,.08); }
.place-card span { color: #9a835a; font-size: .74rem; letter-spacing: .14em; }
.place-card h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 3vw, 2.15rem); font-weight: 400; }
.place-card:nth-child(1), .place-card:nth-child(2), .place-card:nth-child(3) { grid-column: span 4; }
.place-card:nth-child(4) { grid-column: span 6; }
.place-card:nth-child(5) { grid-column: span 6; }

.location-section { background: var(--charcoal); color: var(--white); position: relative; overflow: hidden; }
.location-section::before { content:""; position:absolute; inset:auto auto -120px -120px; width:360px; height:360px; border:1px solid rgba(216,195,154,.12); border-radius:50%; }
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.location-visual { min-height: 420px; position: relative; display: grid; place-items: center; }
.location-emblem { width: 210px; aspect-ratio:1; border-radius:50%; border:1px solid rgba(216,195,154,.5); display:grid; place-items:center; position:relative; z-index:3; background:radial-gradient(circle, rgba(216,195,154,.08), transparent 70%); }
.location-emblem span { font-family: Georgia, "Times New Roman", serif; font-size: 3.1rem; color: var(--gold-soft); letter-spacing: .08em; }
.location-ring { position:absolute; border-radius:50%; border:1px solid rgba(216,195,154,.12); }
.ring-one { width:320px; height:320px; }
.ring-two { width:410px; height:410px; }
.location-copy h2 { margin: 0 0 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.7rem, 5.5vw, 5rem); font-weight:400; line-height:1; }
.location-copy address { color: rgba(255,255,255,.82); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.location-rule { width:70px; height:1px; background:var(--gold-soft); margin:2rem 0; }
.location-copy > p:last-child { color:rgba(255,255,255,.6); }

.contact-section { background: var(--paper); }
.contact-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }
.contact-card {
  text-decoration:none;
  border:1px solid rgba(183,154,99,.25);
  border-radius:var(--radius-md);
  padding:1.45rem;
  background:var(--white);
  box-shadow:0 12px 35px rgba(43,37,29,.05);
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:1rem;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-card:hover { transform:translateY(-4px); box-shadow:0 18px 42px rgba(43,37,29,.1); border-color:rgba(183,154,99,.5); }
.contact-icon { width:54px; aspect-ratio:1; border-radius:50%; display:grid; place-items:center; background:#f4ecdd; color:#80683c; font-family:Georgia,"Times New Roman",serif; font-size:1.2rem; }
.contact-card > div:nth-child(2) { display:grid; }
.contact-card span { color:var(--muted); font-size:.78rem; text-transform:uppercase; letter-spacing:.12em; }
.contact-card strong { font-size:clamp(1.35rem, 3vw, 2rem); font-weight:600; letter-spacing:.02em; }
.contact-arrow { color:#94784a !important; font-size:1.45rem !important; }

.closing-section { background:linear-gradient(135deg,#24201b,#171614); color:var(--white); padding:clamp(78px,10vw,130px) 0; text-align:center; }
.closing-inner { max-width:850px; }
.closing-inner h2 { margin:0; font-family:Georgia,"Times New Roman",serif; font-size:clamp(3rem,7vw,6rem); font-weight:400; }
.closing-address { margin:1.2rem 0 0; color:rgba(255,255,255,.78); font-size:1.08rem; }
.closing-coverage { margin:1.1rem auto 0; color:var(--gold-soft); max-width:650px; }
.closing-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:.8rem; margin-top:2rem; }
.btn.light { background:var(--gold-soft); }

.site-footer { background:#100f0e; color:rgba(255,255,255,.58); padding:28px 0; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; gap:1.5rem; }
.footer-inner > div { display:grid; }
.footer-inner strong { color:var(--white); font-family:Georgia,"Times New Roman",serif; font-weight:400; }
.footer-inner span { font-size:.7rem; text-transform:uppercase; letter-spacing:.16em; color:var(--gold-soft); }
.footer-inner p { margin:0; text-align:right; font-size:.9rem; }

.floating-whatsapp { position:fixed; right:22px; bottom:22px; z-index:1200; display:grid; justify-items:end; gap:.7rem; }
.floating-main { width:58px; aspect-ratio:1; border-radius:50%; border:0; cursor:pointer; background:var(--gold-soft); color:#181511; font-family:Georgia,"Times New Roman",serif; font-weight:700; font-size:1.1rem; box-shadow:0 15px 35px rgba(0,0,0,.2); transition:transform .2s ease; }
.floating-main:hover { transform:translateY(-2px); }
.floating-options { display:grid; gap:.45rem; opacity:0; transform:translateY(10px) scale(.98); pointer-events:none; transition:.22s ease; }
.floating-options.open { opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.floating-options a { text-decoration:none; background:rgba(23,22,20,.96); color:var(--white); border:1px solid rgba(216,195,154,.25); padding:.68rem .86rem; border-radius:999px; font-size:.82rem; box-shadow:0 12px 30px rgba(0,0,0,.16); }

.reveal { opacity:1; transform:none; }
.reveal.visible { opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}

@media (max-width: 900px) {
  .header-inner { height:76px; }
  .menu-toggle { display:flex; }
  .main-nav {
    position:fixed;
    inset:76px 0 auto 0;
    background:rgba(23,22,20,.98);
    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:1.2rem 20px 1.6rem;
    display:grid;
    gap:0;
    transform:translateY(-120%);
    opacity:0;
    pointer-events:none;
    transition:.28s ease;
  }
  .main-nav.open { transform:translateY(0); opacity:1; pointer-events:auto; }
  .main-nav a { padding:1rem 0; border-bottom:1px solid rgba(255,255,255,.07); }
  .main-nav a:last-child { border-bottom:0; }
  .main-nav a::after { display:none; }

  .hero { min-height:auto; padding:130px 0 105px; }
  .hero-grid, .location-grid { grid-template-columns:1fr; }
  .hero-grid { gap:3rem; }
  .hero-card { max-width:650px; }
  .intro-panel { grid-template-columns:1fr; align-items:start; }
  .coverage-grid { grid-template-columns:repeat(2,1fr); }
  .place-card:nth-child(n) { grid-column:span 1; }
  .place-card:last-child { grid-column:1 / -1; }
  .location-visual { min-height:330px; }
  .ring-two { width:330px; height:330px; }
  .ring-one { width:270px; height:270px; }
  .contact-grid { grid-template-columns:1fr; }
}

@media (max-width: 620px) {
  .container { width:min(100% - 28px, 1160px); }
  .brand-copy strong { font-size:.94rem; }
  .brand-mark { width:41px; }
  .brand-copy span { font-size:.63rem; letter-spacing:.14em; }
  .hero h1 { font-size:clamp(3rem,17vw,5rem); }
  .hero-actions, .closing-actions { display:grid; grid-template-columns:1fr; }
  .btn { width:100%; }
  .hero-card { padding:1.55rem; border-radius:22px; }
  .intro-panel { margin-top:-24px; padding:1.45rem; border-radius:22px; }
  .section-pad { padding:72px 0; }
  .coverage-grid { grid-template-columns:1fr; }
  .place-card:nth-child(n) { grid-column:auto; min-height:150px; }
  .location-visual { min-height:270px; }
  .location-emblem { width:150px; }
  .ring-one { width:210px; height:210px; }
  .ring-two { width:260px; height:260px; }
  .contact-card { padding:1.15rem; grid-template-columns:auto 1fr; }
  .contact-arrow { display:none; }
  .contact-icon { width:46px; }
  .footer-inner { display:grid; text-align:left; }
  .footer-inner p { text-align:left; }
  .floating-whatsapp { right:14px; bottom:14px; }
  .floating-main { width:54px; }
}
