:root {
  /* Brand Colors */
  --gold-light: #F3DB92;
  --gold-main: #C99E39;
  --gold-dark: #A47D22;
  --gold-gradient: linear-gradient(135deg, #F3DB92 0%, #C99E39 50%, #A47D22 100%);
  --gold-border: rgba(201, 158, 57, 0.32);
  
  /* Dark Shades */
  --black-primary: #111111;
  --black-surface: #171717;
  --black-card: #202020;
  --black-border: #2A2A2A;
  
  /* Light Shades */
  --white-bg: #FCFBF8;
  --white-surface: #FFFFFF;
  --white-alt: #F5F2EA;
  --border-light: #E7E3D8;
  
  /* Text */
  --text-dark: #1A1A1A;
  --text-muted-dark: #635E54;
  --text-light: #F8F6F2;
  --text-muted-light: #A8A399;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white-bg);
  color: var(--text-dark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* UNIFIED CONTAINER SYSTEM (Centered & Standard Responsive Sizing) */
.section-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}

section {
  padding: 3.5rem 0; /* Standard, compact web vertical rhythm */
  width: 100%;
}

#hero {
  position: relative;
  overflow: hidden;
  background: var(--black-primary);
  color: var(--text-light);
  padding: 10rem 0 3.2rem;
}

#process, #standards, footer {
  background: var(--black-surface);
  color: var(--text-light);
}

#why, #estimator {
  background: var(--white-alt);
}

#services, #pricing, #areas, #faq {
  background: var(--white-bg);
}

/* NAVBAR */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(17, 17, 17, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
  padding: 0.75rem 0;
}

.nav-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 4%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 50px; object-fit: contain; }

.nav-links { display: flex; gap: 1.4rem; list-style: none; }
.nav-links a {
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none; font-weight: 500;
  transition: color .25s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  padding: .5rem 1.2rem; border: 1.5px solid var(--gold-main);
  background: var(--gold-gradient); color: var(--black-primary);
  font-size: .72rem; letter-spacing: .12em; font-weight: 600;
  text-transform: uppercase; text-decoration: none; transition: all .25s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(201, 158, 57, 0.35); }

/* HERO */
.hero-layout {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  align-items: center; gap: 2.5rem;
}

.hero-content { position: relative; z-index: 1; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 35%, rgba(201, 158, 57, 0.15) 0%, transparent 60%),
              linear-gradient(145deg, #0A0A0A 0%, #151515 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201, 158, 57, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201, 158, 57, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-eyebrow {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem; font-weight: 600;
  display: flex; align-items: center; gap: .6rem;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--gold-gradient); }

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.4vw, 4rem); font-weight: 700; line-height: 1.1;
  color: var(--text-light);
}

.gold-text {
  background: var(--gold-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; display: inline-block; font-weight: 700;
}

.hero-sub {
  margin-top: 1.2rem; max-width: 480px;
  font-size: .95rem; line-height: 1.7; color: var(--text-muted-light);
}

.hero-actions { margin-top: 1.8rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.btn-gold {
  padding: .75rem 1.8rem; background: var(--gold-gradient); color: var(--black-primary);
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; font-weight: 600; transition: all .25s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 5px 18px rgba(201, 158, 57, 0.35); }

.btn-outline {
  padding: .75rem 1.8rem; border: 1.5px solid var(--gold-main); color: var(--gold-light);
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; font-weight: 500; transition: all .25s;
}
.btn-outline:hover { background: rgba(201, 158, 57, 0.12); }

.hero-image-col { position: relative; z-index: 1; display: flex; justify-content: center; }
.hero-img-frame { position: relative; width: 100%; max-width: 380px; }
.hero-img-frame::before {
  content: ''; position: absolute; top: -10px; left: -10px; right: 10px; bottom: 10px;
  border: 1.5px solid var(--gold-main); z-index: 0; pointer-events: none;
}
.hero-img-frame img {
  width: 100%; aspect-ratio: 4/4.3; object-fit: cover; display: block;
  position: relative; z-index: 1; box-shadow: 0 14px 30px rgba(0,0,0,0.5);
}
.hero-img-badge {
  position: absolute; bottom: 1.2rem; left: -1.2rem; z-index: 2;
  background: var(--black-card); border: 1px solid var(--gold-main);
  padding: .85rem 1.2rem; font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600; box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.hero-img-badge span {
  display: block; font-family: 'Jost', sans-serif; font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase; margin-top: .2rem; color: var(--gold-light);
}

/* STATS BAND */
.stats-band {
  background: var(--black-primary);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 1.8rem 0; width: 100%;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-item { text-align: center; border-right: 1px solid var(--black-border); padding: 0 .8rem; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.stat-label { margin-top: .35rem; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted-light); }

/* SECTION HEADERS */
.section-header { margin-bottom: 2rem; }
.section-header.center { text-align: center; }
.section-tag {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-main); display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem;
  font-weight: 600;
}
.section-tag::before { content: ''; width: 20px; height: 1.5px; background: var(--gold-gradient); }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 700; line-height: 1.15;
}
#process h2, #standards h2 { color: var(--text-light); }
.section-lead { margin-top: .6rem; max-width: 560px; color: var(--text-muted-dark); font-size: .92rem; line-height: 1.7; }
#process .section-lead, #standards .section-lead { color: var(--text-muted-light); }
.gold-divider { width: 45px; height: 2px; background: var(--gold-gradient); margin: 1.2rem 0; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  background: var(--white-surface); padding: 1.8rem 1.4rem;
  border: 1px solid var(--border-light); transition: all .3s;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-card:hover { transform: translateY(-3px); border-color: var(--gold-border); box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
.service-icon { width: 34px; height: 34px; margin-bottom: 1rem; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: .4rem; }
.service-card p { font-size: .84rem; line-height: 1.6; color: var(--text-muted-dark); margin-bottom: 1rem; }
.service-tag {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600; border-top: 1px solid var(--border-light); padding-top: .6rem;
}

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { text-align: center; }
.step-num {
  width: 42px; height: 42px; border: 1.5px solid var(--gold-main);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700;
  color: var(--gold-light); background: var(--black-surface);
}
.step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: .4rem; }
.step p { font-size: .84rem; color: var(--text-muted-light); line-height: 1.6; }

/* ESTIMATOR */
.estimator-box {
  background: var(--white-surface); border: 1px solid var(--border-light);
  padding: 2.2rem; box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}
.calc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 1.8rem; }
.calc-item { background: var(--white-bg); border: 1px solid var(--border-light); padding: 1.2rem 1rem; text-align: center; }
.calc-item label { display: block; font-size: .76rem; font-weight: 600; text-transform: uppercase; margin-bottom: .8rem; }
.counter-wrap { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: .6rem; }
.counter-wrap button {
  width: 30px; height: 30px; border: 1px solid var(--border-light); background: var(--white-surface);
  cursor: pointer; font-size: 1.05rem; font-weight: 600; transition: all .2s;
}
.counter-wrap button:hover { border-color: var(--gold-main); color: var(--gold-main); }
.counter-wrap input { width: 38px; text-align: center; border: none; font-size: 1.05rem; font-weight: 600; background: transparent; }
.calc-rate { font-size: .7rem; color: var(--gold-dark); font-weight: 600; }
.calc-summary {
  border-top: 1px solid var(--border-light); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.calc-subtotal-label { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted-dark); }
.calc-total-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.3rem; font-weight: 700; line-height: 1.1; margin: .15rem 0; }
.calc-note { font-size: .78rem; color: var(--text-muted-dark); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--white-surface); border: 1px solid var(--border-light);
  padding: 2.2rem 1.6rem; text-align: center; transition: all .3s;
}
.price-card.featured {
  background: var(--black-primary); border: 2px solid var(--gold-main); color: var(--text-light);
}
.price-card.featured .price-amount { color: var(--text-light); }
.price-card.featured .price-desc, .price-card.featured .price-features li { color: var(--text-muted-light); border-color: var(--black-border); }
.price-plan { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; margin-bottom: .6rem; }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; line-height: 1; }
.price-amount sup { font-size: 1.15rem; }
.price-amount sub { font-size: .88rem; color: var(--text-muted-dark); }
.price-desc { font-size: .8rem; color: var(--text-muted-dark); margin: .4rem 0 1.4rem; }
.price-features { list-style: none; margin-bottom: 1.6rem; }
.price-features li { padding: .55rem 0; border-bottom: 1px solid var(--border-light); font-size: .82rem; }

/* STANDARDS */
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.standard-box {
  background: var(--black-card); border: 1px solid var(--black-border);
  padding: 2rem 1.6rem; border-top: 3px solid var(--gold-main);
}
.s-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: .8rem; }
.standard-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: .4rem; }
.standard-box p { font-size: .84rem; line-height: 1.6; color: var(--text-muted-light); }

/* WHY US */
.why-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: center; }
.why-visual {
  position: relative; aspect-ratio: 1; max-width: 340px; width: 100%;
  background: var(--black-primary); border: 1.5px solid var(--gold-main);
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.why-badges { position: absolute; display: contents; }
.badge {
  position: absolute; background: var(--black-card); border: 1px solid var(--gold-main);
  padding: .45rem .85rem; font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-light); font-weight: 600;
}
.badge:nth-child(1) { top: 7%; left: -5%; }
.badge:nth-child(2) { bottom: 15%; left: -6%; }
.badge:nth-child(3) { top: 14%; right: -6%; }
.badge:nth-child(4) { bottom: 7%; right: -4%; }
.why-features { display: flex; flex-direction: column; gap: 1rem; }
.why-feat {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem; border: 1px solid var(--border-light); background: var(--white-surface);
}
.why-feat-icon {
  width: 28px; height: 28px; border: 1.5px solid var(--gold-main);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; flex-shrink: 0; color: var(--gold-main); font-weight: bold;
}
.why-feat h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: .2rem; }
.why-feat p { font-size: .84rem; color: var(--text-muted-dark); line-height: 1.55; }

/* AREAS & CONTACT */
.areas-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.areas-list { display: flex; flex-wrap: wrap; gap: .55rem; }
.area-pill {
  padding: .45rem .95rem; border: 1px solid var(--border-light); background: var(--white-surface);
  font-size: .78rem; font-weight: 500;
}
.areas-note {
  margin-top: 1.6rem; padding: 1.2rem; border-left: 3px solid var(--gold-main);
  background: var(--white-alt); font-size: .85rem; line-height: 1.6;
}
.contact-box {
  background: var(--black-primary); border: 1.5px solid var(--gold-main);
  padding: 2.2rem 1.8rem; color: var(--text-light);
}
.contact-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 1.2rem; }
.contact-row { margin-bottom: .9rem; padding-bottom: .9rem; border-bottom: 1px solid var(--black-border); }
.contact-row:last-of-type { border-bottom: none; }
.c-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted-light); }
.c-val { font-size: .92rem; color: var(--text-light); margin-top: .2rem; font-weight: 500; }
.c-val a { color: var(--gold-light); text-decoration: none; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-item { background: var(--white-surface); border: 1px solid var(--border-light); }
.faq-q {
  padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: .94rem; font-weight: 500;
}
.faq-arrow {
  width: 22px; height: 22px; border: 1px solid var(--gold-main);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--gold-main); transition: transform .25s;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--gold-gradient); color: var(--black-primary); border-color: transparent; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 1.5rem 1.2rem; font-size: .85rem; color: var(--text-muted-dark); line-height: 1.65; }
.faq-item.open .faq-a { max-height: 200px; }

/* FOOTER */
footer { padding: 3.5rem 0 1.8rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 2.5rem; margin-bottom: 2.8rem; }
.footer-logo img { height: 48px; }
.footer-brand p { font-size: .82rem; line-height: 1.65; margin-top: .6rem; }
.footer-col h4 { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .82rem; color: var(--text-muted-light); text-decoration: none; transition: color .25s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-map-wrapper iframe { width: 100%; height: 140px; border: 1px solid var(--gold-border); border-radius: 4px; display: block; }
.footer-bottom {
  border-top: 1px solid var(--black-border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; font-size: .74rem;
}

/* FLOATING BUTTON */
.phone-fab {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 800;
  width: 52px; height: 52px; background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 5px 18px rgba(201, 158, 57, 0.4);
  transition: transform .25s;
}
.phone-fab:hover { transform: scale(1.08); }
.phone-fab-label {
  position: fixed; bottom: 2.5rem; right: 4.8rem; z-index: 800;
  background: var(--black-card); border: 1px solid var(--gold-main);
  padding: .35rem .8rem; font-size: .7rem; letter-spacing: .1em;
  color: var(--gold-light); opacity: 0; transform: translateX(6px);
  transition: all .25s; pointer-events: none; white-space: nowrap;
}
.phone-fab:hover + .phone-fab-label { opacity: 1; transform: translateX(0); }

/* MOBILE HAMBURGER & BREAKPOINT (Prevents all overlap/interference) */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 4px; width: 36px; height: 36px; background: none; border: 1px solid var(--gold-border); cursor: pointer;
}
.nav-hamburger span { display: block; width: 18px; height: 1.5px; background: var(--gold-main); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(17, 17, 17, 0.98); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--text-light); text-decoration: none; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-25px); transition: opacity .6s ease, transform .6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(25px); transition: opacity .6s ease, transform .6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1120px) {
  .nav-links, .nav-cta { display: none !important; }
  .nav-hamburger, .mobile-menu { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-layout, .why-layout, .areas-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image-col { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .standards-grid, .faq-grid, .process-steps { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .calc-summary { flex-direction: column; gap: 1.2rem; text-align: center; }
  .calc-summary a { width: 100%; text-align: center; }
}

@media (max-width: 600px) {
  .services-grid, .calc-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .estimator-box { padding: 1.4rem; }
}