:root {
  --navy: #1B263B;
  --navy-dark: #0F1A2A;
  --bg: #F8F9FA;
  --bg-warm: #EAE3D9;
  --gold: #D4AF7F;
  --text: #1A1A1A;
  --muted: #6B7280;
  --line: #E5E7EB;
  --white: #FFFFFF;
  --shadow-sm: 0 10px 24px rgba(15, 26, 42, 0.05);
  --shadow-md: 0 18px 44px rgba(15, 26, 42, 0.08);
  --shadow-lg: 0 28px 64px rgba(15, 26, 42, 0.1);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(27, 38, 59, 0.03) 0%, rgba(248, 249, 250, 0) 220px),
    var(--bg);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: -9999px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
}

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

section[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section {
  padding: 4.75rem 0;
}

.section-alt {
  background: var(--bg-warm);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.79rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--navy-dark);
  box-shadow: 0 14px 28px rgba(15, 26, 42, 0.18);
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(27, 38, 59, 0.16);
  color: var(--navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  border-color: rgba(27, 38, 59, 0.28);
  color: var(--navy-dark);
}

.button-sm {
  min-height: 44px;
  padding: 0.75rem 1.05rem;
}

.button-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 249, 250, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(248, 249, 250, 0.95);
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(15, 26, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-text {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 1rem auto 1rem;
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(27, 38, 59, 0.05);
  color: var(--navy);
}

.nav-cta {
  margin-top: 0.35rem;
}

.nav-toggle {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  gap: 0.22rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  padding-top: 2.25rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy,
.hero-media img,
.service-card,
.areas-card,
.reason-card,
.gallery-card,
.traditional-panel,
.estimate-form,
.process-card,
.trust-item {
  border-radius: var(--radius);
}

.hero-copy {
  position: relative;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
  border: 1px solid rgba(27, 38, 59, 0.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 127, 0.18) 0%, rgba(212, 175, 127, 0) 72%);
}

.hero-lead {
  margin-top: 1.2rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-points {
  display: grid;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero-points li {
  position: relative;
  padding-left: 1.3rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-media img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-area-bar {
  padding: 0.5rem 0 0;
}

.hero-area-bar p {
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  text-align: center;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.trust-bar {
  padding: 1.25rem 0 0;
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

.trust-item {
  padding: 1.3rem 1.2rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.trust-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.96rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading p:last-child {
  margin-top: 0.95rem;
  color: var(--muted);
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.services-grid,
.reasons-grid,
.gallery-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.reason-card,
.gallery-card,
.process-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.service-card-copy {
  padding: 1.55rem;
}

.service-card-copy p,
.reason-card p,
.process-card p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.reason-card,
.process-card {
  padding: 1.75rem;
}

.areas-layout {
  display: grid;
  gap: 1.5rem;
}

.areas-card {
  padding: 1.85rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.areas-list li {
  padding: 0.92rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(248, 249, 250, 0.96);
  color: var(--navy);
  text-align: center;
  font-weight: 700;
}

.text-link {
  color: var(--navy);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--navy-dark);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  color: var(--muted);
}

.traditional-panel {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.traditional-copy {
  padding: 0.5rem;
}

.traditional-copy p:last-child {
  margin-top: 1rem;
  color: var(--muted);
}

.traditional-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(212, 175, 127, 0.18);
  color: var(--navy);
  border: 1px solid rgba(212, 175, 127, 0.42);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.contact-details a {
  color: var(--navy);
  font-weight: 700;
}

.estimate-form {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.estimate-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 600;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: rgba(27, 38, 59, 0.35);
  box-shadow: 0 0 0 4px rgba(27, 38, 59, 0.08);
  background: #FFFFFF;
}

.form-reassurance {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.estimate-form button {
  margin-top: 1.2rem;
}

.site-footer {
  padding: 2.75rem 0 1.5rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.brand-footer .brand-text,
.footer-links h3 {
  color: var(--white);
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links h3 {
  margin-bottom: 0.15rem;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-call-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 20px 40px rgba(15, 26, 42, 0.22);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.mobile-call-bar:hover,
.mobile-call-bar:focus-visible {
  background: var(--navy-dark);
}

@media (min-width: 700px) {
  .trust-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reasons-grid,
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-card-large {
    grid-column: span 2;
  }

  .contact-grid,
  .areas-layout,
  .traditional-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .full-width {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding: 0.7rem 0.95rem;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
  }

  .hero-grid,
  .areas-layout,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-copy {
    padding: 3rem;
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .service-card-featured {
    grid-column: span 7;
  }

  .service-card-featured .service-card-image img {
    min-height: 320px;
  }

  .service-card:not(.service-card-featured):not(.service-card-split) {
    grid-column: span 5;
    display: grid;
    align-items: center;
  }

  .service-card-split {
    grid-column: span 6;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .gallery-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .gallery-card-large {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-card-large img {
    height: 100%;
    min-height: 100%;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    align-items: start;
  }

  .mobile-call-bar {
    display: none;
  }
}

@media (max-width: 899px) {
  body.menu-open {
    overflow: hidden;
  }

  body {
    padding-bottom: 5.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
