*, *::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); }

/* --- Area Hero --- */
.area-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end;
  padding-bottom: 80px; overflow: hidden;
  padding-top: var(--nav-h);
}
.area-hero__bg {
  position: absolute; inset: 0;
  background: url('../images/hero.jpg') center center / cover no-repeat;
}
.area-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(6,6,6,.6) 0%, rgba(6,6,6,.88) 100%);
}
.area-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;
}
.area-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; }
.area-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;
}
.area-hero__eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.area-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;
}
.area-hero__h1 em { font-style: italic; color: var(--gold); }
.area-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) {
  .area-hero { min-height: 50vh; padding-bottom: 60px; }
}

/* --- Area Intro --- */
.area-intro {
  background: var(--charcoal); padding: 100px 0;
}
.area-intro__inner {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 80px; align-items: start;
}
@media (max-width: 900px) {
  .area-intro__inner { grid-template-columns: 1fr; gap: 48px; }
}
.section-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;
}
.section-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300; line-height: 1.1; margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 15px; font-weight: 300; color: var(--gray);
  line-height: 1.7; max-width: 600px; margin-bottom: 16px;
}
.area-intro__heading { margin-bottom: 28px; }
.area-intro__text p {
  font-size: 15px; font-weight: 300; color: var(--gray);
  line-height: 1.9; margin-bottom: 18px;
}
.area-intro__text p:last-child { margin-bottom: 0; }

/* Sidebar */
.area-aside {
  background: var(--surface);
  border: 1px solid rgba(200,169,110,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.area-aside__title {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 16px;
}
.area-aside__list {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.area-aside__item {
  font-size: 14px; font-weight: 300; color: var(--gray-lt);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.area-aside__item:last-child { border-bottom: none; }
.area-aside__phone {
  display: block; font-size: 18px; font-weight: 500;
  color: var(--white); margin-bottom: 16px;
  transition: color var(--transition);
}
.area-aside__phone:hover { color: var(--gold); }

/* --- Area Services Grid --- */
.area-services { padding: 100px 0; background: var(--black); }
.area-services .section-head { text-align: center; margin-bottom: 60px; }
.area-services .section-eyebrow { justify-content: center; }
.area-services .section-eyebrow::before { display: none; }
.area-services .section-eyebrow::after { display: none; }
.area-services .section-sub { margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }
.svc-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;
}
.svc-card:hover { border-color: rgba(200,169,110,.3); transform: translateY(-2px); }
.svc-icon { margin-bottom: 16px; color: var(--gold); }
.svc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; margin-bottom: 10px; color: var(--white);
}
.svc-card p {
  font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px;
}
.svc-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;
}
.svc-link:hover { gap: 12px; }

/* --- CTA Band --- */
.cta-band {
  text-align: center; padding: 80px 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(200,169,110,.12);
  border-bottom: 1px solid rgba(200,169,110,.12);
}
.cta-band__eyebrow {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.cta-band__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 300; line-height: 1.05; margin-bottom: 32px;
}
.cta-band__title em { font-style: italic; color: var(--gold); }
.cta-band__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.cta-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 500;
  color: var(--gray-lt); transition: color var(--transition);
}
.cta-phone:hover { color: var(--gold); }

/* --- Contact Section --- */
#contact { padding: 100px 0; background: var(--black); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300; line-height: 1.1; margin-bottom: 20px;
}
.contact-title em { font-style: italic; color: var(--gold); }
.contact-text {
  font-size: 15px; font-weight: 300; color: var(--gray);
  line-height: 1.8; margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(200,169,110,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-item-label {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 4px;
}
.contact-item-value {
  font-size: 15px; color: var(--white); font-weight: 400;
  transition: color var(--transition);
}
a.contact-item-value:hover { color: var(--gold); }

/* Form */
.form-card {
  background: var(--charcoal);
  border: 1px solid rgba(200,169,110,.12);
  border-radius: var(--radius);
  padding: 40px 36px;
}
@media (max-width: 540px) { .form-card { padding: 28px 24px; } }
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; margin-bottom: 6px;
}
.form-sub { font-size: 13px; color: var(--gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray-lt); font-weight: 500;
}
.form-group .req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid rgba(245,242,237,.08);
  border-radius: var(--radius);
  padding: 12px 16px; font-size: 14px;
  color: var(--white); font-family: 'Jost', sans-serif;
  transition: border-color .3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select { cursor: pointer; appearance: none; }
.form-submit {
  width: 100%; justify-content: center; margin-top: 8px;
}
.form-note {
  font-size: 11px; color: var(--gray-dark);
  text-align: center; margin-top: 12px;
}

/* Success state */
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.active { display: block; }
.success-icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; margin-bottom: 12px;
}
.success-text { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* --- 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; }
