*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #060606;
  --charcoal:   #111111;
  --surface:    #181818;
  --surface-2:  #202020;
  --gold:       #C8A96E;
  --gold-lt:    #E2C98A;
  --gold-dim:   rgba(200,169,110,.15);
  --white:      #F5F2ED;
  --gray-dark:  #555;
  --gray:       #888;
  --gray-lt:    #bbb;
  --radius:     4px;
  --transition: .45s cubic-bezier(.25,.46,.45,.94);
  --nav-h:      80px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* --- Nav --- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  background: rgba(6,6,6,.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,169,110,.12);
}
#nav .container { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: .04em; color: var(--white);
}
.nav-logo .sub {
  font-size: 9px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold); margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 500; color: var(--gray-lt); transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

/* Dropdown */
.has-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: default; }
.has-dropdown > a .chev {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition); flex-shrink: 0;
}
.has-dropdown:hover > a .chev,
.has-dropdown:focus-within > a .chev { transform: rotate(-135deg) translateY(2px); }
.has-dropdown::after { content: ''; position: absolute; top: 100%; left: -24px; right: -24px; height: 22px; }
.nav-dropdown {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 380px; background: rgba(8,8,8,.97);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(200,169,110,.14); border-radius: 4px;
  padding: 16px 20px 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease; z-index: 200;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px; background: rgba(8,8,8,.97);
  border-top: 1px solid rgba(200,169,110,.14);
  border-left: 1px solid rgba(200,169,110,.14);
}
.nav-dropdown-label {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); padding-bottom: 10px; margin-bottom: 8px;
  border-bottom: 1px solid rgba(200,169,110,.14); display: block;
}
.nav-dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px; }
.nav-dropdown-grid a {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; color: var(--gray); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s ease; cursor: pointer;
}
.nav-dropdown-grid a:hover { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 20px; }
.phone-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-lt); transition: color var(--transition);
}
.phone-link:hover { color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; font-weight: 600;
  border-radius: var(--radius); transition: all var(--transition);
  cursor: pointer; border: none; font-family: 'Jost', sans-serif;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover {
  background: var(--gold-lt); transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(200,169,110,.3);
}
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(245,242,237,.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links, .phone-link, .btn-outline { display: none; }
  .burger { display: flex; }
}
@media (max-width: 600px) { .nav-cta .btn-gold { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--charcoal);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 36px; padding: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 24px; font-family: 'Cormorant Garamond', serif;
  color: var(--white); letter-spacing: .06em; transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-phone {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-family: 'Jost', sans-serif;
  color: var(--gold); letter-spacing: .08em; margin-top: 16px;
}
.mobile-areas-toggle {
  background: none; border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; letter-spacing: .06em;
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  transition: color var(--transition);
}
.mobile-areas-toggle:hover { color: var(--gold); }
.mobile-areas-toggle .chev-m {
  font-size: 18px; font-family: 'Jost', sans-serif;
  font-weight: 300; transition: transform .3s ease; display: inline-block;
}
.mobile-areas-toggle.open .chev-m { transform: rotate(45deg); }
.mobile-areas-list {
  display: none; flex-direction: column; align-items: center;
  gap: 14px; margin-top: 4px;
}
.mobile-areas-list.open { display: flex; }
.mobile-areas-list a {
  font-family: 'Jost', sans-serif; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; color: var(--gray); transition: color var(--transition);
}
.mobile-areas-list a:hover { color: var(--gold); }

/* --- Hero --- */
.svc-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end;
  padding-bottom: 80px; overflow: hidden;
  padding-top: var(--nav-h);
}
.svc-hero__bg {
  position: absolute; inset: 0;
  background: url('../images/hero.jpg') center center / cover no-repeat;
}
.svc-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(6,6,6,.6) 0%, rgba(6,6,6,.88) 100%);
}
.svc-hero__grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(200,169,110,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.svc-hero__content { position: relative; z-index: 2; width: 100%; }
.breadcrumb { margin-bottom: 24px; }
.breadcrumb a {
  font-size: 12px; color: var(--gray); letter-spacing: .08em;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--gray-dark); margin: 0 8px; font-size: 10px; }
.breadcrumb__current { font-size: 12px; color: var(--gold); letter-spacing: .08em; }
.svc-hero__eyebrow {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.svc-hero__eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.svc-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300; line-height: 1.05;
  color: var(--white); max-width: 750px;
  margin-bottom: 24px; letter-spacing: -.01em;
}
.svc-hero h1 em { font-style: italic; color: var(--gold); }
.svc-hero__sub {
  font-size: 15px; font-weight: 300; color: var(--gray-lt);
  line-height: 1.7; max-width: 540px; margin-bottom: 32px;
}
@media (max-width: 600px) {
  .svc-hero { min-height: 50vh; padding-bottom: 60px; }
}

/* --- Content Sections --- */
.svc-intro {
  background: var(--charcoal); padding: 100px 0;
}
.svc-intro__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 900px) {
  .svc-intro__inner { grid-template-columns: 1fr; gap: 48px; }
}
.svc-intro__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.svc-intro__img img { width: 100%; height: 100%; object-fit: cover; }
.svc-intro__eyebrow {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.svc-intro__eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.svc-intro__text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300; line-height: 1.1; margin-bottom: 24px;
}
.svc-intro__text h2 em { font-style: italic; color: var(--gold); }
.svc-intro__divider { width: 40px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.svc-intro__text p {
  font-size: 15px; font-weight: 300; color: var(--gray);
  line-height: 1.9; margin-bottom: 18px;
}
.svc-intro__text p:last-child { margin-bottom: 0; }

/* Service detail rows */
.svc-row { padding: 100px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.svc-row:nth-child(odd) { background: var(--black); }
.svc-row:nth-child(even) { background: var(--charcoal); }
.svc-row__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.svc-row--reverse .svc-row__inner { direction: rtl; }
.svc-row--reverse .svc-row__inner > * { direction: ltr; }
@media (max-width: 900px) {
  .svc-row__inner { grid-template-columns: 1fr; gap: 48px; }
  .svc-row--reverse .svc-row__inner { direction: ltr; }
}
.svc-row__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.svc-row__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.svc-row__img:hover img { transform: scale(1.04); }
.svc-row__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300; line-height: 1;
  color: rgba(200,169,110,.15); margin-bottom: 8px;
  letter-spacing: -.02em;
}
.svc-row__eyebrow {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 16px;
}
.svc-row__text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300; line-height: 1.1; margin-bottom: 20px;
}
.svc-row__text h2 em { font-style: italic; color: var(--gold); }
.svc-row__divider { width: 40px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.svc-row__text p {
  font-size: 15px; font-weight: 300; color: var(--gray);
  line-height: 1.9; margin-bottom: 18px;
}
.svc-row__text p:last-of-type { margin-bottom: 32px; }

/* Checklist */
.svc-checklist { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.svc-checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; font-weight: 300; color: var(--gray-lt); line-height: 1.6;
}
.svc-checklist__icon {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  border: 1px solid rgba(200,169,110,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.svc-checklist__icon svg { stroke: var(--gold); }

/* FAQ */
.svc-faq { background: var(--charcoal); padding: 100px 0; }
.svc-faq .section-eyebrow {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 16px;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.svc-faq .section-eyebrow::before,
.svc-faq .section-eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.svc-faq .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300; line-height: 1.1; text-align: center;
  margin-bottom: 60px;
}
.svc-faq .section-title em { font-style: italic; color: var(--gold); }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(200,169,110,.12);
  padding: 28px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(200,169,110,.12); }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--white);
  margin-bottom: 12px; line-height: 1.3;
}
.faq-a {
  font-size: 15px; font-weight: 300; color: var(--gray);
  line-height: 1.8;
}

/* Why Choose Us */
.svc-why {
  background: var(--charcoal); padding: 100px 0;
  border-top: 1px solid rgba(200,169,110,.12);
  border-bottom: 1px solid rgba(200,169,110,.12);
}
.svc-why__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 900px) {
  .svc-why__inner { grid-template-columns: 1fr; gap: 48px; }
}
.svc-why__eyebrow {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.svc-why__eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.svc-why__text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300; line-height: 1.1; margin-bottom: 12px;
}
.svc-why__text h2 em { font-style: italic; color: var(--gold); }
.svc-why__divider { width: 40px; height: 1px; background: var(--gold); margin-bottom: 36px; }
.svc-why__list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.svc-why__list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 300; color: var(--gray-lt);
}
.svc-why__check {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid rgba(200,169,110,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.svc-why__check svg { stroke: var(--gold); }
.svc-why__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.svc-why__img img { width: 100%; height: 100%; object-fit: cover; }

/* Other services grid */
.svc-others { padding: 100px 0; background: var(--black); }
.svc-others .section-eyebrow {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 16px; text-align: center;
}
.svc-others .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300; line-height: 1.1; text-align: center;
  margin-bottom: 48px;
}
.svc-others .section-title em { font-style: italic; color: var(--gold); }
.others-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .others-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .others-grid { grid-template-columns: 1fr; } }
.other-card {
  background: var(--charcoal);
  border: 1px solid rgba(200,169,110,.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .3s ease, transform .3s ease;
}
.other-card:hover { border-color: rgba(200,169,110,.3); transform: translateY(-2px); }
.other-card__icon { margin-bottom: 16px; color: var(--gold); }
.other-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; margin-bottom: 10px; color: var(--white);
}
.other-card__desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.other-card__link {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .3s ease;
}
.other-card__link:hover { gap: 12px; }

/* CTA */
.svc-cta { text-align: center; padding: 100px 0; background: var(--black); }
.svc-cta__eyebrow {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.svc-cta__eyebrow::before,
.svc-cta__eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.svc-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; line-height: 1.05; margin-bottom: 20px;
}
.svc-cta h2 em { font-style: italic; color: var(--gold); }
.svc-cta p {
  font-size: 15px; color: var(--gray);
  max-width: 480px; margin: 0 auto 40px; line-height: 1.7;
}
.svc-cta__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.svc-cta__phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 500;
  color: var(--gray-lt); transition: color var(--transition);
}
.svc-cta__phone:hover { color: var(--gold); }

/* --- Footer --- */
footer { border-top: 1px solid rgba(200,169,110,.1); }
.footer-main { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; color: var(--white);
}
.footer-brand .tagline {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-top: 4px;
}
.footer-brand .desc {
  font-size: 13px; color: var(--gray);
  line-height: 1.7; margin-top: 16px; max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(245,242,237,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); transition: all .3s ease;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: var(--gray); transition: color .3s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(245,242,237,.06);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; text-align: center; } }
.footer-copy { font-size: 12px; color: var(--gray-dark); }
.footer-copy a { color: var(--gold); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--gray-dark); transition: color .3s ease; }
.footer-legal a:hover { color: var(--gray); }

/* Mobile CTA bar */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--charcoal);
  border-top: 1px solid rgba(200,169,110,.15);
  padding: 12px 24px;
  padding-bottom: max(12px, env(safe-area-inset-bottom, 0px) + 6px);
  gap: 12px;
}
@media (max-width: 600px) {
  .mobile-cta-bar { display: flex; }
  footer { padding-bottom: max(72px, env(safe-area-inset-bottom, 0px) + 68px); }
}
.call-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px;
  background: var(--surface-2); border: 1px solid rgba(200,169,110,.2);
  border-radius: var(--radius); font-size: 13px;
  letter-spacing: .08em; color: var(--white);
}
.quote-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 14px; background: var(--gold);
  border-radius: var(--radius); font-size: 13px;
  letter-spacing: .1em; font-weight: 600; color: var(--black);
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
