* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Type scale */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--cream);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before,
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.eyebrow.center { display: inline-flex; }

/* Reusable */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

section { padding: clamp(72px, 10vw, 120px) 0; position: relative; }
section + section { border-top: 1px solid var(--hairline-2); }

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(40px, 6vw, 64px);
  max-width: 720px;
}
.section-head h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
}
.section-head p {
  color: var(--cream-dim);
  font-size: 17px;
  max-width: 60ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { background: var(--gold-soft); }
.btn.ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--hairline);
}
.btn.ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn .arrow {
  width: 14px; height: 1px; background: currentColor; position: relative;
}
.btn .arrow::after{
  content:""; position:absolute; right:0; top:-3px;
  width:7px; height:7px; border-right:1px solid currentColor; border-top:1px solid currentColor;
  transform: rotate(45deg);
}

/* ──────────────────────────────────────────────────────────
   Top nav
   ────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: var(--theme-nav-bg);
  border-bottom: 1px solid var(--hairline-2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.logo-text {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--cream);
  letter-spacing: 0.06em;
}
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 13px;
  color: var(--cream-dim);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { font-size: 12px; padding: 11px 18px; }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ──────────────────────────────────────────────────────────
   Hero
   ────────────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(80px, 10vw, 130px);
  padding-bottom: clamp(80px, 10vw, 130px);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 500px at 78% 18%, rgba(201,168,76,0.10), transparent 60%),
    radial-gradient(900px 600px at 12% 90%, rgba(201,168,76,0.04), transparent 60%);
}
/* subtle starfield */
.stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(240,230,211,0.45), transparent 60%),
    radial-gradient(1px 1px at 28% 64%, rgba(240,230,211,0.25), transparent 60%),
    radial-gradient(1px 1px at 41% 18%, rgba(240,230,211,0.35), transparent 60%),
    radial-gradient(1px 1px at 55% 80%, rgba(240,230,211,0.30), transparent 60%),
    radial-gradient(1px 1px at 68% 36%, rgba(240,230,211,0.45), transparent 60%),
    radial-gradient(1px 1px at 80% 70%, rgba(240,230,211,0.20), transparent 60%),
    radial-gradient(1px 1px at 92% 28%, rgba(240,230,211,0.35), transparent 60%),
    radial-gradient(1px 1px at 22% 90%, rgba(240,230,211,0.25), transparent 60%),
    radial-gradient(1px 1px at 5% 50%, rgba(240,230,211,0.30), transparent 60%);
  opacity: 0.55;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 {
  font-size: clamp(48px, 7.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-top: 22px;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero .tag {
  margin-top: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--cream-dim);
  letter-spacing: 0.02em;
}
.hero .lede {
  margin-top: 22px;
  color: var(--cream-dim);
  font-size: 17px;
  max-width: 52ch;
}
.hero-cta-row {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* celestial diagram */
.celestial {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  position: relative;
  color: var(--gold);
}
@media (max-width: 900px) { .celestial { justify-self: center; max-width: 380px; } }
.celestial svg { width: 100%; height: 100%; display: block; }
.celestial::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  box-shadow: 0 0 60px 10px rgba(201,168,76,0.10);
  pointer-events: none;
}

/* ──────────────────────────────────────────────────────────
   About
   ────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

.about-grid h2 {
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.1;
}
.meaning {
  display: grid;
  gap: 28px;
  margin-top: 8px;
}
.meaning-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--hairline-2);
}
.meaning-row:last-child { border-bottom: 1px solid var(--hairline-2); }
.meaning-row .word {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.meaning-row .word small {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.meaning-row .body {
  color: var(--cream-dim);
  font-size: 16px;
}
.meaning-row .body strong { color: var(--cream); font-weight: 500; }

.about-quote {
  margin-top: 36px;
  padding: 26px 28px;
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--cream);
}

/* ──────────────────────────────────────────────────────────
   Services
   ────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  background: var(--ink-3);
  border: 1px solid var(--hairline-2);
  padding: 36px 32px 32px;
  display: grid;
  gap: 18px;
  align-content: start;
  position: relative;
  transition: border-color .25s ease, transform .25s ease;
}
.service:hover { border-color: var(--hairline); }
.service-icon {
  width: 56px;
  height: 56px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}
.service-icon svg { width: 28px; height: 28px; }
.service h3 {
  font-size: 26px;
  line-height: 1.15;
}
.service-sub {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -8px;
}
.service p {
  color: var(--cream-dim);
  font-size: 15px;
}
.service ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 8px;
}
.service ul li {
  font-size: 14px;
  color: var(--cream-dim);
  position: relative;
  padding-left: 18px;
}
.service ul li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-size: 10px;
}

/* ──────────────────────────────────────────────────────────
   Why us
   ────────────────────────────────────────────────────────── */
.why { background: var(--ink-2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-2);
  border-bottom: 1px solid var(--hairline-2);
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  padding: 36px 28px;
  border-right: 1px solid var(--hairline-2);
  display: grid;
  gap: 14px;
  align-content: start;
}
.why-item:last-child { border-right: 0; }
@media (max-width: 900px) {
  .why-item:nth-child(2n) { border-right: 0; }
  .why-item:nth-child(-n+2) { border-bottom: 1px solid var(--hairline-2); }
}
@media (max-width: 540px) {
  .why-item { border-right: 0; border-bottom: 1px solid var(--hairline-2); }
  .why-item:last-child { border-bottom: 0; }
}
.why-num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.why-item h3 {
  font-size: 22px;
  line-height: 1.2;
}
.why-item p {
  color: var(--cream-dim);
  font-size: 14.5px;
}

/* ──────────────────────────────────────────────────────────
   Areas
   ────────────────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
@media (max-width: 820px) { .areas-grid { grid-template-columns: 1fr; } }

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-2);
}
.area-list .area {
  padding: 18px 4px;
  border-bottom: 1px solid var(--hairline-2);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.area-list .area .name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
}
.area-list .area .pin {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.area-list .area:nth-child(odd) { padding-right: 22px; }
.area-list .area:nth-child(even) { padding-left: 22px; }

/* ──────────────────────────────────────────────────────────
   FAQ
   ────────────────────────────────────────────────────────── */
.faq-list {
  display: grid;
  border-top: 1px solid var(--hairline-2);
}
.faq-item {
  border-bottom: 1px solid var(--hairline-2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--cream);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
  color: var(--gold);
}
.faq-item .plus::before,
.faq-item .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.faq-item .plus::before { left: 0; right: 0; top: 50%; height: 1px; }
.faq-item .plus::after { top: 0; bottom: 0; left: 50%; width: 1px; transition: transform .25s ease; }
.faq-item[open] .plus::after { transform: scaleY(0); }
.faq-item .answer {
  padding: 0 0 26px;
  color: var(--cream-dim);
  font-size: 16px;
  max-width: 72ch;
}

/* ──────────────────────────────────────────────────────────
   Contact
   ────────────────────────────────────────────────────────── */
.contact { background: var(--ink-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: stretch;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--ink-3);
  border: 1px solid var(--hairline-2);
  padding: 36px 34px;
  display: grid;
  gap: 22px;
  align-content: start;
}
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--hairline-2);
  align-items: baseline;
}
.contact-row:last-child { border-bottom: 1px solid var(--hairline-2); }
.contact-row .label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-row .value {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--cream);
}
.contact-row .value a:hover { color: var(--gold); }
.contact-row .value small {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--cream-mute);
  letter-spacing: 0;
  text-transform: none;
}

.map-frame {
  border: 1px solid var(--hairline-2);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* ──────────────────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────────────────── */
footer {
  padding: 60px 0 50px;
  border-top: 1px solid var(--hairline-2);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-dim);
  margin-top: 16px;
  font-size: 17px;
  max-width: 36ch;
}
.foot-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col ul a { color: var(--cream-dim); font-size: 14px; }
.foot-col ul a:hover { color: var(--gold); }

.foot-bottom {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--cream-mute);
  letter-spacing: 0.08em;
}

/* ──────────────────────────────────────────────────────────
   WhatsApp float
   ────────────────────────────────────────────────────────── */
.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-green);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45), 0 0 0 6px rgba(31, 138, 59, 0.15);
  transition: transform .2s ease;
}
.wa:hover { transform: translateY(-2px); }
.wa svg { width: 28px; height: 28px; }

/* Selection */
::selection { background: var(--gold); color: var(--ink); }
