@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Merriweather:opsz,wght@18..144,300;18..144,400;18..144,500;18..144,600&display=swap');

:root {
  --bg: #17130f;
  --surface: #1e1914;
  --surface-2: #251f19;
  --text: #f5eee4;
  --muted: #b9aa98;
  --line: rgba(225, 190, 124, .18);
  --gold: #d5a95e;
  --gold-bright: #f0c979;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Merriweather", Georgia, serif;
  overflow-x: hidden;
}
button, input, select { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(23, 19, 15, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand img { width: 46px; height: 46px; object-fit: contain; }
.desktop-nav { margin-left: auto; display: flex; gap: 34px; }
.desktop-nav a, .mobile-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.desktop-nav a:hover, .mobile-nav a:hover { color: var(--gold-bright); }
.menu-button { display: none; margin-left: auto; border: 0; background: none; color: var(--text); font-size: 1.35rem; }
.mobile-nav { display: none; }

.hero {
  width: min(var(--max), 90%);
  min-height: 680px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  align-items: center;
  gap: clamp(40px, 8vw, 130px);
}
.hero-copy { padding: 70px 0; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: .34em;
  font-weight: 600;
}
.gold-title {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  line-height: .92;
  font-weight: 500;
  letter-spacing: .09em;
  color: transparent;
  background: linear-gradient(180deg, #f4d58b, #bd8840 52%, #f2cc78);
  -webkit-background-clip: text;
  background-clip: text;
}
.tagline {
  margin: 22px 0 0;
  color: var(--gold-bright);
  font: 2.3rem "Great Vibes", cursive;
}
.hero-description { max-width: 490px; margin: 24px 0 0; color: var(--muted); line-height: 1.9; font-size: .9rem; }
.text-link { display: inline-flex; gap: 14px; margin-top: 32px; padding-bottom: 8px; border-bottom: 1px solid var(--gold); text-decoration: none; text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; }
.text-link:hover { color: var(--gold-bright); gap: 20px; }
.hero-photo { width: min(410px, 100%); justify-self: end; aspect-ratio: 4/5; overflow: hidden; border-radius: 190px 190px 24px 24px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.hero-photo:hover img { transform: scale(1.035); }

.services { width: min(var(--max), 92%); margin: 90px auto 0; }
.section-intro { max-width: 650px; margin-bottom: 64px; }
.section-intro h2, .contact h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: 1.08; font-weight: 400; }
.section-intro h2 em, .contact h2 em { color: var(--gold-bright); font-family: "Great Vibes", cursive; font-style: normal; font-weight: 400; }
.section-intro > p:last-child { margin: 24px 0 0; color: var(--muted); line-height: 1.8; }

.service-explorer { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 60px; align-items: start; }
.category-nav { position: sticky; top: 96px; }
.category-nav-title { margin-bottom: 16px; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .2em; }
#categoryNav { display: grid; gap: 4px; }
.category-button { width: 100%; display: grid; grid-template-columns: 30px 1fr; text-align: left; gap: 8px 12px; padding: 14px 12px; border: 0; border-left: 1px solid transparent; background: transparent; color: var(--muted); cursor: pointer; }
.category-button span { grid-row: span 2; color: var(--gold); font-size: .65rem; padding-top: 2px; }
.category-button strong { font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.category-button small { font-size: .62rem; color: #887b6c; }
.category-button:hover { color: var(--text); background: rgba(255,255,255,.025); }
.category-button.is-active { color: var(--text); border-left-color: var(--gold); background: rgba(213,169,94,.06); }
.category-button.is-active small { color: var(--gold); }

.service-toolbar { display: flex; gap: 12px; margin-bottom: 12px; }
.search-box { flex: 1; min-width: 0; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid var(--line); background: var(--surface); }
.search-box span { color: var(--gold); font-size: 1.25rem; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font-size: .8rem; }
.search-box input::placeholder { color: #83786b; }
#categorySelect { display: none; }
.search-status { min-height: 18px; margin: 0 0 14px; color: var(--gold); font-size: .68rem; }

.category-panel { border-top: 1px solid var(--line); }
.category-heading { display: flex; justify-content: space-between; gap: 20px; align-items: end; padding: 30px 0; }
.category-heading h3 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.7rem); font-weight: 400; }
.category-heading p:last-child { margin: 0; color: #8c7e6e; font-size: .68rem; }
.category-kicker { margin: 0 0 8px; color: var(--gold); font-size: .62rem; letter-spacing: .2em; }
.category-content { border-bottom: 1px solid var(--line); }
.service-group { border-top: 1px solid rgba(255,255,255,.07); }
.service-group summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 19px 0; cursor: pointer; color: var(--text); font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.service-group summary::-webkit-details-marker { display: none; }
.summary-icon { color: var(--gold); font-size: 1.2rem; font-weight: 300; transition: transform .25s; }
.service-group[open] .summary-icon { transform: rotate(45deg); }
.price-list { list-style: none; margin: 0; padding: 0 0 18px; }
.price-list li, .standalone-row { display: flex; justify-content: space-between; gap: 24px; padding: 9px 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.price { flex: 0 0 auto; color: var(--gold-bright); white-space: nowrap; }
.price-extra { color: var(--muted); }
.nested-service-group { border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0; }
.nested-service-group h4 { margin: 0 0 10px; font-size: .74rem; font-weight: 500; color: var(--text); text-transform: uppercase; letter-spacing: .1em; }
.nested-service-group .service-group:first-of-type { border-top: 0; }

.search-results { border-top: 1px solid var(--line); }
.search-results-heading { display: flex; justify-content: space-between; padding: 20px 0; color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; }
.search-results-heading strong { color: var(--gold); font-weight: 400; }
.result-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.07); }
.result-row small { color: var(--gold); font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; }
.result-row h3 { margin: 7px 0 0; font-size: .9rem; font-weight: 400; }
.empty-state, .load-error { padding: 60px 0; color: var(--muted); text-align: center; }

.contact { margin-top: 130px; padding: 150px 20px; text-align: center; background: linear-gradient(180deg, transparent, rgba(54,42,27,.42)); }
.contact .eyebrow { margin-bottom: 20px; }
.gold-line { display: block; width: 44px; height: 1px; margin: 25px auto 0; background: var(--gold); }
.contact-actions { display: flex; justify-content: center; gap: 34px; margin-top: 42px; }
.contact-action { padding-bottom: 8px; border-bottom: 1px solid var(--gold); text-decoration: none; text-transform: uppercase; letter-spacing: .15em; font-size: .68rem; }
.contact-action span { color: var(--gold); margin-left: 8px; }
.contact-action:hover { color: var(--gold-bright); }
.footer { display: grid; place-items: center; gap: 12px; padding: 38px 20px 48px; border-top: 1px solid rgba(255,255,255,.06); }
.footer img { width: 42px; opacity: .7; }
.footer p { margin: 0; color: #766b5e; font-size: .62rem; }

@media (max-width: 900px) {
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 35px; padding: 70px 0; text-align: center; }
  .hero-copy { padding: 0; }
  .hero-description { margin-inline: auto; }
  .text-link { justify-content: center; }
  .hero-photo { justify-self: center; width: min(330px, 70vw); }
  .service-explorer { grid-template-columns: 1fr; gap: 25px; }
  .category-nav { display: none; }
  #categorySelect { display: block; flex: 0 0 190px; border: 1px solid var(--line); background: var(--surface); color: var(--text); padding: 0 12px; outline: 0; font-size: .72rem; }
}

@media (max-width: 560px) {
  .site-header { height: 62px; }
  .brand img { width: 40px; height: 40px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav { position: fixed; z-index: 45; top: 62px; left: 0; right: 0; display: grid; gap: 18px; padding: 22px 20px; background: rgba(23,19,15,.97); border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .25s ease; }
  .mobile-nav.is-open { transform: translateY(0); }
  .hero { width: 88%; padding-top: 58px; }
  .tagline { font-size: 2rem; }
  .hero-photo { width: min(280px, 72vw); }
  .services { width: 88%; margin-top: 50px; }
  .section-intro { margin-bottom: 38px; }
  .service-toolbar { flex-direction: column; }
  #categorySelect { flex-basis: 46px; width: 100%; }
  .category-heading { padding: 24px 0; }
  .price-list li, .standalone-row { font-size: .74rem; }
  .contact { margin-top: 80px; padding: 100px 20px; }
  .contact-actions { flex-direction: column; align-items: center; gap: 22px; }
}

/* =========================================================
   FEATURED PLANS
   ========================================================= */

.plans {
  width: min(var(--max), 92%);
  margin: 120px auto 0;
  scroll-margin-top: 90px;
}

.plans-intro {
  max-width: 700px;
  margin-bottom: 52px;
}

.plans-intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.08;
  font-weight: 400;
}

.plans-intro h2 em {
  color: var(--gold-bright);
  font-family: "Great Vibes", cursive;
  font-style: normal;
  font-weight: 400;
}

.plans-intro > p:last-child {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 50px);
}

.plan-card {
  min-width: 0;
  background: linear-gradient(180deg, rgba(213,169,94,.055), rgba(255,255,255,.018));
  border: 1px solid var(--line);
  padding: 10px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.plan-card:hover {
  border-color: rgba(240,201,121,.45);
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
}

.plan-image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #f5efe5;
  cursor: zoom-in;
  overflow: hidden;
}

.plan-image-button img {
  width: 100%;
  height: auto;
  transition: transform .55s ease;
}

.plan-image-button:hover img {
  transform: scale(1.018);
}

.plan-zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(20,16,12,.72);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  backdrop-filter: blur(8px);
  opacity: .9;
}

.plan-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 18px 17px;
}

.plan-card-footer > div {
  min-width: 0;
}

.plan-card-footer span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: .61rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.plan-card-footer h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 400;
}

.plan-card-footer .text-link {
  flex: 0 0 auto;
  margin-top: 0;
  font-size: .62rem;
}

/* =========================================================
   PLAN LIGHTBOX
   ========================================================= */

.plan-lightbox[hidden] {
  display: none;
}

.plan-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,6,4,.88);
  backdrop-filter: blur(12px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(940px, 94vw);
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-dialog img {
  max-width: 100%;
  max-height: 87vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
}

.lightbox-dialog p {
  margin: 12px 0 0;
  color: var(--gold-bright);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(10,8,6,.72);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .plans { margin-top: 90px; }
  .plans-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .plans { width: 88%; margin-top: 70px; }
  .plans-intro { margin-bottom: 34px; }
  .plan-card-footer { align-items: start; flex-direction: column; padding: 20px 12px 14px; }
  .plan-card-footer .text-link { margin-top: 4px; }
  .plan-zoom { right: 10px; bottom: 10px; width: 34px; height: 34px; }
  .plan-lightbox { padding: 12px; }
  .lightbox-dialog { width: 96vw; max-height: 96vh; }
  .lightbox-dialog img { max-height: 90vh; }
  .lightbox-close { top: 6px; right: 6px; }
}
