:root {
  --bg: #0a0d12;
  --bg-soft: #11161e;
  --surface: #fbf8f3;
  --surface-2: #f2ede4;
  --text: #161b22;
  --text-soft: #5b6370;
  --white: #ffffff;
  --line: rgba(255,255,255,.08);
  --line-dark: rgba(12,18,28,.1);
  --accent: #ab1f24;
  --accent-dark: #8f171b;
  --shadow: 0 18px 50px rgba(0,0,0,.14);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 840px);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--white);
}

.section-stone {
  background: var(--surface);
}

.section-dark {
  background: linear-gradient(180deg, #0a0d12 0%, #111823 100%);
  color: var(--white);
}

.section-label {
  margin: 0 0 10px;
  color: #ab1f24;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label.light {
  color: #ffffff;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

p {
  margin: 0 0 16px;
  color: inherit;
}

/* PREMIUM HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(8,12,18,0.55), rgba(8,12,18,0.12));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(9, 13, 18, 0.88);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.inner-header {
  background: rgba(9, 13, 18, 0.94);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.brand img {
  height: 75px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  font-weight: 500;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a.active {
  opacity: 1;
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 0;
  font-size: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 44px;
  padding: 0 18px;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

.btn-secondary {
  background: #11161e;
}

.btn-secondary:hover {
  background: #1a2430;
}

/* CHANGED TO WHITE */
.text-link {
  color: #ffffff;
  font-weight: 700;
}

.services-link {
  color: #ab1f24;
}

.hero {
  min-height: 100svh;
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: grid;
  align-items: center;
  padding-top: 92px;
}

.hero-content {
  padding: 80px 0 72px;
  max-width: 820px;
}

/* CHANGED TO WHITE */
.eyebrow {
  margin-bottom: 18px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-copy {
  max-width: 700px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points li {
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.split-intro,
.split-cta,
.contact-grid,
.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: start;
}

.cards {
  display: grid;
  gap: 26px;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.review-card,
.cta-box,
.quote-form,
.service-item {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.section-light .card,
.section-light .review-card,
.section-light .service-item,
.section-light .quote-form {
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.centered-block {
  text-align: center;
  margin-top: 28px;
}

.number-list {
  display: grid;
  gap: 18px;
}

.number-list div {
  display: flex;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  padding-bottom: 18px;
}

.number-list span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  color: #ffffff;
  min-width: 54px;
}

.gallery-shell {
  max-width: 980px;
  margin: 0 auto;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #e7e0d4;
  box-shadow: var(--shadow);
}

.gallery-stage img {
  width: 100%;
  height: clamp(320px, 58vw, 720px);
  object-fit: cover;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.gallery-controls button {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  padding: 0 18px;
  cursor: pointer;
  font: inherit;
}

.gallery-controls.minimal button {
  width: 44px;
  padding: 0;
}

.gallery-counter {
  text-align: center;
  color: var(--text-soft);
  margin-top: 10px;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card p {
  color: var(--text-soft);
}

.stars {
  color: #b28616;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.page-hero {
  padding: 150px 0 70px;
}

.page-hero-dark {
  background: linear-gradient(180deg, #0a0d12 0%, #131b26 100%);
  color: var(--white);
}

.page-hero-light {
  background: var(--surface);
}

.prose p {
  font-size: 1.08rem;
  max-width: 900px;
}

.service-list {
  display: grid;
  gap: 24px;
}

.seo-keywords {
  text-align: center;
  color: var(--text-soft);
  max-width: 900px;
  margin: 0 auto;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.contact-list li {
  margin-bottom: 14px;
}

.financing-note {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--surface);
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid #d8d2c6;
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: 2px solid rgba(171,31,36,0.16);
  border-color: var(--accent);
}

.site-footer {
  background: #0a0d12;
  color: rgba(255,255,255,0.86);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
}

.site-footer h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials svg {
  width: 18px;
  fill: var(--white);
}

.simple-footer {
  padding-top: 20px;
}

@media (max-width: 980px) {
  .three-up,
  .review-grid,
  .split-intro,
  .split-cta,
  .contact-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: rgba(10,13,18,0.96);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 1rem 24px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .btn {
    width: 100%;
  }

  .brand img {
    height: 52px;
  }

  .section {
    padding: 72px 0;
  }

  .card,
  .review-card,
  .cta-box,
  .quote-form,
  .service-item {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}