:root {
  --navy: #0b2948;
  --navy-2: #071d34;
  --gold: #c89c4d;
  --gold-light: #e0bd79;
  --ink: #17202a;
  --muted: #69727d;
  --offwhite: #f5f3ee;
  --line: #dedbd4;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(9, 27, 47, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,41,72,0.08);
}

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

.brand img {
  width: 170px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: 14px;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
}
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.nav-links > a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: white;
  padding: 12px 18px;
  border-radius: 3px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    url("assets/hero-exterior.webp") center 35%/cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,21,39,.95) 0%, rgba(4,21,39,.88) 42%, rgba(4,21,39,.36) 72%, rgba(4,21,39,.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.hero-copy {
  width: min(700px, 65%);
  color: white;
}

.eyebrow,
.kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 18px;
}

.hero h1,
.section h2,
.service-area h2 {
  margin: 0;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 700;
}
.hero h1 span { color: var(--gold-light); }

.hero-copy > p {
  width: min(610px, 100%);
  font-size: 18px;
  color: rgba(255,255,255,.85);
  margin: 26px 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: #102236;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost {
  border-color: rgba(255,255,255,.45);
  color: white;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
}
.hero-trust span::before {
  content: "✓";
  color: var(--gold-light);
  margin-right: 7px;
}

.intro-strip {
  background: var(--offwhite);
  border-bottom: 1px solid var(--line);
}
.intro-grid {
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}
.intro-grid p {
  margin: 0;
  font-size: 17px;
}
.intro-grid a {
  color: var(--navy);
  font-weight: 800;
}
.intro-grid a span { color: var(--gold); }

.section { padding: 104px 0; }

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-heading h2,
.about h2,
.contact h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  font-size: clamp(38px, 4.5vw, 58px);
}
.section-heading p {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin-top: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.service-card {
  grid-column: span 2;
  min-height: 265px;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  transition: .25s ease;
}
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(200,156,77,.55);
}
.service-num {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 38px;
}
.service-card h3 {
  color: var(--navy);
  margin: 0 0 14px;
  font-size: 20px;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.work {
  background: var(--offwhite);
}
.heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 50px;
}
.heading-row p { margin: 0 0 5px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #ddd;
  grid-column: span 4;
}
.gallery-item.gallery-large {
  grid-column: span 8;
  grid-row: span 2;
}
.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  grid-column: span 4;
}
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
  grid-column: span 6;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.035); }
.gallery-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  background: rgba(7,29,52,.90);
  color: white;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.about-copy p {
  color: var(--muted);
  font-size: 17px;
  margin: 24px 0;
}
.text-link {
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

.principles {
  border-top: 1px solid var(--line);
}
.principle {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.principle > strong {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .12em;
}
.principle h3 {
  margin: 0 0 5px;
  color: var(--navy);
}
.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-area {
  background: var(--navy);
  color: white;
  padding: 82px 0;
}
.service-area-inner { max-width: 880px; }
.kicker.light { color: var(--gold-light); }
.service-area h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
}
.service-area p {
  max-width: 710px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.contact-lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 570px;
}
.contact-panel {
  border-top: 1px solid var(--line);
}
.contact-row {
  display: grid;
  grid-template-columns: 75px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .2s ease;
}
.contact-row:hover { padding-left: 8px; }
.contact-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}
.contact-row strong {
  color: var(--navy);
  font-size: 17px;
}
.contact-row > span:last-child {
  color: var(--gold);
  font-size: 22px;
}

.site-footer {
  background: #071724;
  color: rgba(255,255,255,.72);
  padding: 48px 0 82px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 36px;
  align-items: center;
}
.footer-brand {
  background: white;
  padding: 10px 14px;
  width: 165px;
}
.footer-brand img {
  width: 100%;
  height: 55px;
  object-fit: contain;
}
.site-footer strong { color: white; }
.site-footer p { margin: 4px 0 0; font-size: 13px; }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 13px;
}
.footer-right a:hover { color: white; }

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(2,10,18,.92);
  display: grid;
  place-items: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 25px 80px rgba(0,0,0,.45);
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 44px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 5px; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .menu-toggle { display: block; }

  .hero { min-height: 610px; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(4,21,39,.94), rgba(4,21,39,.72));
  }
  .hero-copy { width: 84%; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: auto; }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .heading-row { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .footer-right { align-items: flex-start; }
}

@media (max-width: 640px) {
  body { padding-bottom: 58px; }
  .container { width: min(100% - 28px, 1160px); }
  .brand img { width: 145px; height: 48px; }
  .nav-wrap { min-height: 70px; }
  .nav-links { top: 70px; }

  .hero {
    min-height: 650px;
    align-items: end;
  }
  .hero-media { background-position: 50% 35%; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4,21,39,.97) 0%, rgba(4,21,39,.83) 62%, rgba(4,21,39,.48) 100%);
  }
  .hero-content { padding: 90px 0 62px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: 48px; }
  .hero-copy > p { font-size: 16px; }
  .btn { width: 100%; }
  .hero-trust { gap: 12px; flex-direction: column; }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .section { padding: 72px 0; }
  .section-heading h2,
  .about h2,
  .contact h2 { font-size: 40px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-item,
  .gallery-item.gallery-large,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .service-area { padding: 65px 0; }
  .service-area h2 { font-size: 42px; }

  .contact-row {
    grid-template-columns: 60px 1fr auto;
    gap: 8px;
  }

  .site-footer { padding-bottom: 46px; }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    height: 58px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--navy-2);
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    color: white;
    font-size: 13px;
    font-weight: 800;
    border-right: 1px solid rgba(255,255,255,.1);
  }
  .mobile-contact-bar a:last-child {
    background: var(--gold);
    color: var(--navy-2);
  }

  .lightbox { padding: 20px; }
}


/* --- Layout polish pass --- */
.service-card {
  min-height: 240px;
}
.service-card h3 {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.heading-row {
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  column-gap: 72px;
}
.heading-row > div { min-width: 0; }
.heading-row h2 {
  max-width: 760px;
  font-size: clamp(40px, 4.4vw, 58px);
}
.heading-row p {
  max-width: 390px;
  justify-self: end;
  margin: 0 0 8px;
}

.about-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 110px;
}
.about-copy { min-width: 0; }
.about-copy h2 {
  max-width: 570px;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.08;
  overflow-wrap: normal;
}
.principles { min-width: 0; }

.contact-grid {
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
}
.contact-row strong {
  overflow-wrap: anywhere;
}

.footer-brand {
  background: transparent;
  padding: 0;
  width: 145px;
  min-height: 90px;
  display: flex;
  align-items: center;
}
.footer-brand img {
  width: 130px;
  height: 90px;
  object-fit: contain;
  object-position: left center;
}
.footer-right { gap: 4px; }

@media (max-width: 900px) {
  .heading-row { grid-template-columns: 1fr; gap: 16px; }
  .heading-row p { justify-self: start; max-width: 640px; }
  .about-grid { gap: 55px; }
  .contact-grid { grid-template-columns: 1fr; }
}


/* Estimate form */
.contact-grid-form {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: 90px;
}

.contact-form-wrap {
  min-width: 0;
}

.estimate-form {
  margin-top: 34px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field > span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 14px 15px;
  border-radius: 2px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.form-field input,
.form-field select {
  min-height: 50px;
}

.form-field textarea {
  resize: vertical;
  min-height: 145px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,156,77,.12);
}

.form-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-form {
  border: 0;
  background: var(--navy);
  color: white;
  cursor: pointer;
  white-space: nowrap;
}

.btn-form:hover {
  background: var(--navy-2);
}

.btn-form:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-status {
  min-height: 24px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
}

.form-status.success {
  color: #1d6b43;
}

.form-status.error {
  color: #9a2b2b;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-options {
  min-width: 0;
}

.contact-row-button {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.sms-desktop-note {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--offwhite);
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 13px;
}

.sms-desktop-note strong,
.sms-desktop-note span {
  display: block;
}

.sms-desktop-note strong {
  color: var(--navy);
  margin-bottom: 3px;
}

@media (max-width: 900px) {
  .contact-grid-form {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-form {
    width: 100%;
  }
}


/* Desktop phone-number notice */
.call-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 5000;
  min-width: 250px;
  padding: 15px 18px;
  background: var(--navy-2);
  color: #fff;
  border-left: 4px solid var(--gold);
  box-shadow: 0 16px 45px rgba(0,0,0,.22);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.call-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.call-toast strong,
.call-toast span {
  display: block;
}

.call-toast strong {
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: .06em;
  margin-bottom: 3px;
}

.call-toast span {
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 640px) {
  .call-toast {
    display: none;
  }
}
