:root {
  --navy: #071522;
  --navy-2: #0d2134;
  --navy-3: #132b42;
  --gold: #d9a24a;
  --gold-2: #bd822d;
  --white: #ffffff;
  --ivory: #f8f6f1;
  --soft: #ece7dc;
  --ink: #111a27;
  --muted: #626b75;
  --line: rgba(15, 31, 47, .14);
  --shadow: 0 20px 50px rgba(7, 21, 34, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(100deg, var(--navy), #102338);
  color: var(--white);
  box-shadow: 0 2px 18px rgba(0,0,0,.25);
}
.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 190px; height: auto; }
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav a {
  padding: 36px 0 30px;
  border-bottom: 2px solid transparent;
}
.main-nav a.active, .main-nav a:hover { color: var(--gold); border-color: var(--gold); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 18px;
}
.phone {
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
  font-size: 14px;
}
.btn, .btn-outline, .btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 27px;
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
}
.btn { background: linear-gradient(135deg, #e6b55e, var(--gold)); color: var(--white); }
.btn-outline { background: transparent; color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn:hover, .btn-outline:hover, .btn-dark:hover { transform: translateY(-2px); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(217,162,74,.55);
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  position: relative;
}
.menu-toggle span::before { position: absolute; top: -7px; }
.menu-toggle span::after { position: absolute; top: 7px; }

.hero {
  min-height: 600px;
  position: relative;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.58) 38%, rgba(0,0,0,.1) 72%), var(--hero-image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero .container { padding: 80px 0 88px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1, .page-hero h1, .section-title, .split h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: .98;
  letter-spacing: 0;
}
.hero h1 {
  max-width: 590px;
  font-size: clamp(44px, 6vw, 70px);
}
.hero p {
  max-width: 560px;
  margin: 22px 0 28px;
  font-size: 21px;
  line-height: 1.35;
}

.trust-bar {
  background: linear-gradient(100deg, var(--navy), var(--navy-3));
  color: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 22px 20px;
  align-items: center;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 23px;
  font-family: var(--serif);
}
.trust-item strong { display: block; font-size: 14px; }
.trust-item span { display: block; font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.35; }

.section { padding: 66px 0; }
.section.compact { padding: 46px 0; }
.section-head { text-align: center; margin: 0 auto 28px; max-width: 820px; }
.section-title { font-size: clamp(32px, 4vw, 46px); color: var(--navy); }
.section-lead { color: var(--muted); font-size: 18px; margin: 15px auto 0; max-width: 720px; }
.projects-grid, .service-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card, .service-card, .review-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(7,21,34,.08);
}
.project-card img, .service-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.project-body, .service-body { padding: 18px 20px 22px; }
.project-body h3, .service-body h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}
.location { margin: 0 0 10px; font-size: 14px; color: var(--ink); font-weight: 650; }
.project-body p, .service-body p { margin: 0 0 18px; color: #2d3440; font-size: 15px; }
.center { text-align: center; margin-top: 24px; }

.reviews {
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.92)),
    radial-gradient(circle at 12% 0%, rgba(217,162,74,.12), transparent 30%),
    var(--ivory);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: center;
}
.review-card {
  padding: 24px;
  box-shadow: none;
  border-width: 0 1px 0 0;
  background: transparent;
}
.stars { color: var(--gold); letter-spacing: .12em; font-size: 18px; margin-bottom: 10px; }
.review-card blockquote { margin: 0; font-size: 15px; }
.review-card cite { display: block; margin-top: 16px; font-style: normal; font-weight: 750; }
.review-card small { display: block; color: var(--muted); }
.platforms {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.platform {
  padding: 22px 18px 0;
  border-right: 1px solid var(--line);
  text-align: center;
}
.platform:last-child, .review-card:last-child { border-right: 0; }
.platform strong { display: block; font-size: 26px; line-height: 1; }
.platform.google strong span:nth-child(1){color:#4285f4}.platform.google strong span:nth-child(2){color:#db4437}.platform.google strong span:nth-child(3){color:#f4b400}.platform.google strong span:nth-child(4){color:#4285f4}.platform.google strong span:nth-child(5){color:#0f9d58}.platform.google strong span:nth-child(6){color:#db4437}
.platform.facebook strong { color: #4267B2; }
.platform.houzz strong { color: #5bbf45; }
.platform.yelp strong { color: #d32323; }

.consultation {
  background: radial-gradient(circle at top right, rgba(217,162,74,.13), transparent 28%), linear-gradient(110deg, var(--navy), #10253a);
  color: var(--white);
}
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}
.consult-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}
.consult-copy h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.05;
}
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 12px; align-items: center; }
.mark { color: var(--gold); font-weight: 900; }
.lead-form {
  display: grid;
  gap: 7px;
}
.lead-form h3 {
  margin: 0 0 2px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.12);
  color: var(--white);
  padding: 13px 14px;
  border-radius: 0;
}
select option { color: var(--ink); }
textarea { min-height: 116px; resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.68); }
.privacy { margin: 4px 0 0; color: rgba(255,255,255,.66); font-size: 12px; }

.footer {
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.22);
  padding: 28px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.2fr .55fr;
  gap: 28px;
  align-items: start;
}
.footer-logo { width: 150px; margin-bottom: 10px; }
.footer h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer p { margin: 0 0 6px; color: rgba(255,255,255,.82); font-size: 13px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.page-hero {
  color: var(--white);
  min-height: 340px;
  display: flex;
  align-items: end;
  background-image: linear-gradient(90deg, rgba(7,21,34,.82), rgba(7,21,34,.35)), var(--page-image);
  background-size: cover;
  background-position: center;
}
.page-hero .container { padding: 70px 0; }
.page-hero h1 { font-size: clamp(44px, 6vw, 66px); max-width: 780px; }
.page-hero p { max-width: 650px; font-size: 20px; margin: 16px 0 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.split h2 { color: var(--navy); font-size: clamp(34px, 4vw, 48px); }
.split p { color: var(--muted); font-size: 17px; }
.split img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { padding-left: 28px; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 10px; height: 10px; border: 2px solid var(--gold); transform: rotate(45deg); }
.process {
  background: var(--ivory);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  border-left: 2px solid var(--gold);
  padding: 4px 18px 8px;
}
.step span { color: var(--gold); font-weight: 900; letter-spacing: .12em; font-size: 12px; }
.step h3 { margin: 8px 0 7px; font-family: var(--serif); color: var(--navy); font-size: 23px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-item { position: relative; overflow: hidden; background: var(--navy); }
.gallery-item img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(7,21,34,.86));
  font-weight: 800;
}
.contact-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
}
.contact-card {
  background: var(--navy);
  color: var(--white);
  padding: 34px;
}
.contact-card h2 { margin-top: 0; font-family: var(--serif); font-size: 34px; }
.contact-form input, .contact-form select, .contact-form textarea {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #7b828b; }

@media (max-width: 1080px) {
  .nav-wrap { min-height: 82px; }
  .brand img { width: 165px; }
  .main-nav { gap: 17px; }
  .phone { display: none; }
  .consult-grid { grid-template-columns: 1fr 1fr; }
  .consult-img { grid-row: span 2; height: 100%; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 28px, 720px); }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .nav-wrap { gap: 14px; }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .header-actions .btn-outline { display: none; }
  .hero { min-height: 570px; background-position: center right; }
  .hero .container { padding: 64px 0; }
  .hero p { font-size: 18px; }
  .trust-grid, .projects-grid, .service-grid, .review-grid, .process-grid, .gallery-grid, .platforms, .split, .contact-panel { grid-template-columns: 1fr 1fr; }
  .consult-grid { grid-template-columns: 1fr; }
  .consult-img { height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .brand img { width: 145px; }
  .hero h1 { font-size: 43px; }
  .hero { min-height: 620px; }
  .trust-grid, .projects-grid, .service-grid, .review-grid, .process-grid, .gallery-grid, .platforms, .split, .contact-panel, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { padding-left: 0; padding-right: 0; }
  .section { padding: 50px 0; }
  .review-card, .platform { border-right: 0; border-bottom: 1px solid var(--line); }
  .page-hero { min-height: 300px; }
  .btn, .btn-outline, .btn-dark { width: 100%; }
}
