/* LV Masonry & Construction Corp
   Design system: black granite + brand gold (#daa141), stone-light sections between.
   Max font weight is 600. */

:root {
  --ink: #000000;
  --ink-2: #0b0b0a;
  --ink-3: #17150f;
  --gold: #daa141;
  --gold-soft: #eec98a;
  --gold-dim: rgba(218, 161, 65, 0.3);
  --cream: #f9f6f0;
  --sand: #eee8dc;
  --line: rgba(0, 0, 0, 0.13);
  --line-dark: rgba(218, 161, 65, 0.2);
  --text: #191713;
  --muted: #6b6255;
  --muted-dark: #a9a094;
  --white: #ffffff;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --caps: "Cinzel", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --pad: clamp(20px, 5vw, 40px);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 { font-size: clamp(2.05rem, 6.4vw, 5rem); }
h2 { font-size: clamp(1.75rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.wrap-narrow { max-width: 820px; }

.section { padding: clamp(72px, 10vw, 130px) 0; }
.section-tight { padding: clamp(56px, 7vw, 90px) 0; }

.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-ink { background: var(--ink); color: var(--sand); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--white); }
.bg-ink p { color: var(--muted-dark); }

/* Eyebrow */
.eyebrow {
  font-family: var(--caps);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::after {
  content: "";
  height: 1px;
  width: 44px;
  background: var(--gold-dim);
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::before {
  content: "";
  height: 1px;
  width: 44px;
  background: var(--gold-dim);
}

.lead { font-size: 1.08rem; color: var(--muted); max-width: 62ch; }
.bg-ink .lead { color: var(--muted-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 30px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: #000000; }
.btn-gold:hover { background: var(--gold-soft); }

.btn-outline { border-color: rgba(255, 255, 255, 0.34); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--ink-3); }

.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Text link */
.tlink {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: gap 0.3s var(--ease);
}
.tlink:hover { gap: 15px; }
.tlink svg { width: 15px; height: 15px; }

/* Header */
.topbar {
  background: var(--ink-2);
  color: var(--muted-dark);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--line-dark);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
}
.topbar a { transition: color 0.3s var(--ease); }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; align-items: center; gap: 22px; }
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-social svg { width: 16px; height: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
}
.brand img { height: 74px; width: auto; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249, 246, 240, 0.78);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
}
.header-phone svg { width: 16px; height: 16px; color: var(--gold); }
.header-cta .btn { height: 46px; padding: 0 24px; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--cream);
  position: relative;
  transition: background 0.2s var(--ease);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.35s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { transform: translateY(6px) rotate(45deg); }
.burger.open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 246, 240, 0.82);
  border-bottom: 1px solid rgba(218, 161, 65, 0.12);
}
.mobile-nav .btn { width: 100%; margin: 22px 0 26px; }

/* Hero */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 860px);
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.6) 44%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 58%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }
.hero-inner { max-width: 720px; }
.hero h1 { color: var(--white); }
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero p {
  color: rgba(249, 246, 240, 0.8);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 26px 0 34px;
}
.hero-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(218, 161, 65, 0.22);
}
.hero-marks span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(249, 246, 240, 0.72);
}
.hero-marks svg { width: 14px; height: 14px; color: var(--gold); flex: none; }

/* Page hero for inner pages */
.page-hero {
  position: relative;
  background: var(--ink);
  padding: clamp(90px, 13vw, 160px) 0 clamp(70px, 10vw, 110px);
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.78));
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); max-width: 16ch; }
.page-hero p { color: rgba(249, 246, 240, 0.76); max-width: 58ch; margin-top: 22px; }

.crumbs {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 246, 240, 0.5);
  margin-bottom: 24px;
}
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--gold); }

/* Intro split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}
.split-media.wide img { aspect-ratio: 4 / 3; max-height: 460px; }
.split-badge {
  position: absolute;
  right: -22px;
  bottom: 34px;
  background: var(--ink);
  color: var(--cream);
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  max-width: 240px;
}
.split-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 4px;
}
.split-badge span {
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted-dark);
  line-height: 1.5;
}

/* Section head */
.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 64px); }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 20px; color: var(--muted); }
.bg-ink .section-head p { color: var(--muted-dark); }

/* Service cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 2.6vw, 34px);
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
              border-color 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-dim);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.13);
}
.card-media { overflow: hidden; aspect-ratio: 4 / 3; }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 30px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 12px; }
.card-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.card-body .tlink { margin-top: 22px; }

/* Detailed service rows */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5.5vw, 80px);
  align-items: center;
  padding: clamp(46px, 6vw, 76px) 0;
  border-top: 1px solid var(--line);
}
.svc-row:first-of-type { border-top: 0; padding-top: 0; }
.svc-row:nth-child(even) .svc-media { order: 2; }
.svc-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.svc-num {
  font-family: var(--caps);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.svc-body h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 18px; }
.svc-body p { color: var(--muted); }
.tick-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 11px; }
.tick-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text);
}
.tick-list svg { width: 15px; height: 15px; color: var(--gold); flex: none; margin-top: 5px; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { padding-top: 26px; border-top: 1px solid var(--line-dark); }
.step-n {
  font-family: var(--caps);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--white); }
.step p { font-size: 0.92rem; color: var(--muted-dark); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--ink-2);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), opacity 0.5s var(--ease);
}
.gallery a:hover img { transform: scale(1.06); opacity: 0.88; }

/* Areas */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.areas span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 17px;
  font-size: 0.84rem;
  color: var(--muted);
  background: var(--white);
}
.bg-ink .areas span {
  border-color: var(--line-dark);
  background: transparent;
  color: var(--muted-dark);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.contact-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 24px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-ico {
  width: 42px;
  height: 42px;
  flex: none;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-ico svg { width: 17px; height: 17px; }
.contact-list strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-list a, .contact-list p {
  color: var(--white);
  font-size: 1.02rem;
  margin: 0;
  overflow-wrap: break-word;
}
.contact-list a[href^="mailto:"] {
  font-size: 0.95rem;
  white-space: nowrap;
}
.contact-list a:hover { color: var(--gold-soft); }
.contact-list small { color: var(--muted-dark); font-size: 0.9rem; }

.form-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  min-height: 760px;
}
.form-card h3 { margin-bottom: 8px; color: var(--text); }
.form-card > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.form-card iframe {
  display: block;
  width: 100%;
  height: 680px;
  min-height: 680px;
  border: 0;
  background: transparent;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.cta-band-media { position: absolute; inset: 0; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72));
}
.cta-band .wrap { position: relative; z-index: 2; text-align: center; padding-top: clamp(70px, 9vw, 110px); padding-bottom: clamp(70px, 9vw, 110px); }
.cta-band h2 { color: var(--white); max-width: 18ch; margin: 0 auto 20px; }
.cta-band p { color: rgba(249, 246, 240, 0.78); max-width: 54ch; margin: 0 auto 34px; }
.cta-band .btn-row { justify-content: center; }

/* Legal pages */
.legal { max-width: 780px; }
.legal h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin: 46px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.legal p, .legal li { color: var(--muted); font-size: 1rem; overflow-wrap: break-word; }
.legal ul { padding-left: 20px; margin: 0 0 1.1em; display: grid; gap: 8px; }
.legal a { color: var(--text); border-bottom: 1px solid var(--gold-dim); }
.legal a:hover { color: var(--gold); }
.legal-meta {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

/* Footer */
.site-footer { background: var(--ink); color: var(--muted-dark); padding: clamp(56px, 7vw, 84px) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr 1.45fr;
  gap: clamp(26px, 3vw, 44px);
  padding-bottom: 50px;
}
.footer-brand img { height: 86px; width: auto; margin-bottom: 22px; }
.footer-brand p { font-size: 0.94rem; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-dark);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold-dim); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: 0.94rem; }
.footer-col a[href^="mailto:"] {
  font-size: 0.86rem;
  white-space: nowrap;
}
.footer-col a { transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 24px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-bottom a:hover { color: var(--gold); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Responsive */
@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-phone { display: none; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header-cta .btn { display: none; }
  .split { grid-template-columns: 1fr; }
  .split-media img, .split-media.wide img { aspect-ratio: 3 / 2; max-height: 340px; }
  .split-badge { right: 0; bottom: 0; max-width: 200px; padding: 18px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-media { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery a:nth-child(1), .gallery a:nth-child(8) { grid-column: span 2; grid-row: span 1; aspect-ratio: 4 / 3; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .topbar-left span.hide-sm { display: none; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .cta-band .btn-row { align-items: stretch; }
  .brand img { height: 50px; }
  .site-header .wrap { min-height: 76px; }
}

/* Service detail pages */
.inc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.inc-item {
  background: var(--cream);
  padding: 32px 30px 34px;
}
.inc-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.inc-item p { color: var(--muted); font-size: 0.94rem; margin: 0; }

.svc-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.svc-gallery a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--sand);
}
.svc-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), opacity 0.5s var(--ease);
}
.svc-gallery a:hover img { transform: scale(1.06); opacity: 0.9; }

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(26px, 3vw, 44px);
}
.faq-item { padding-top: 24px; border-top: 1px solid var(--line); }
.faq-item h3 { font-size: 1.18rem; margin-bottom: 10px; }
.faq-item p { color: var(--muted); font-size: 0.94rem; margin: 0; }

.svc-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.svc-nav-item:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.svc-nav-item span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-nav-item strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}
.svc-nav-item.center { text-align: center; }
.svc-nav-item.right { text-align: right; }

@media (max-width: 1080px) {
  .inc-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .steps.steps-3 { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .svc-gallery { grid-template-columns: repeat(2, 1fr); }
  .svc-nav { grid-template-columns: 1fr; }
  .svc-nav-item.center, .svc-nav-item.right { text-align: left; }
}

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

/* Telas muito estreitas: o email volta a poder quebrar em vez de estourar */
@media (max-width: 420px) {
  .footer-col a[href^="mailto:"],
  .contact-list a[href^="mailto:"] {
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 0.84rem;
  }
}


/* Credenciais em faixa */
.marks-band {
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.marks-band .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 44px);
  padding-top: 34px;
  padding-bottom: 34px;
}
.mark-item { display: flex; gap: 14px; align-items: flex-start; }
.mark-item svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 3px; }
.mark-item strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}
.mark-item span { font-size: 0.88rem; color: var(--muted-dark); line-height: 1.55; }

@media (max-width: 900px) {
  .marks-band .wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .marks-band .wrap { grid-template-columns: 1fr; gap: 22px; }
  .cards { grid-template-columns: 1fr; }
}

/* ================================================================
   Blocos proprios da LV (nao existem no padrao base)
   ================================================================ */

/* Topbar */
.topbar-left span { display: inline-flex; align-items: center; gap: 10px; }
.topbar-left span::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

/* Hero: barra inferior com divisores */
.hero-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-dark);
}
.hero-bar .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0; padding-bottom: 0;
}
.hero-bar-item {
  padding: 24px 0 24px 30px;
  border-left: 1px solid rgba(218, 161, 65, 0.18);
}
.hero-bar-item:first-child { padding-left: 0; border-left: 0; }
.hero-bar-item strong {
  display: block;
  font-family: var(--caps);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-soft);
  line-height: 1.1;
  margin-bottom: 7px;
}
.hero-bar-item span {
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(249, 246, 240, 0.66);
}

/* Tiles de servico: imagem cheia com texto por cima */
.svc-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.tile {
  position: relative;
  display: block;
  min-height: clamp(320px, 34vw, 440px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  isolation: isolate;
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.1s var(--ease);
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 6%, rgba(0,0,0,0.6) 44%, rgba(0,0,0,0.18) 100%);
  transition: background 0.6s var(--ease);
}
.tile:hover img { transform: scale(1.055); }
.tile:hover::after { background: linear-gradient(to top, rgba(0,0,0,0.94) 6%, rgba(0,0,0,0.68) 52%, rgba(0,0,0,0.24) 100%); }
.tile-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(26px, 3vw, 38px);
}
.tile-num {
  font-family: var(--caps);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.tile h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  margin-bottom: 10px;
}
.tile p {
  color: rgba(249, 246, 240, 0.76);
  font-size: 0.94rem;
  max-width: 46ch;
  margin-bottom: 16px;
}
.tile .tlink { color: var(--gold-soft); }

/* Corte do que fica sob a pedra */
.layers {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.layers > div:first-child { padding-top: 6px; }
.layer-stack { display: grid; gap: 4px; }
.layer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: var(--ink-2);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.layer:hover { transform: translateX(6px); background: var(--ink-3); }
.layer-depth {
  font-family: var(--caps);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  width: 82px;
  flex: none;
}
.layer-txt strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3px;
}
.layer-txt span { font-size: 0.87rem; color: var(--muted-dark); line-height: 1.5; }
.layer:nth-child(1) { border-left-color: var(--gold-soft); }
.layer:nth-child(2) { border-left-color: var(--gold); }
.layer:nth-child(3) { border-left-color: rgba(218, 161, 65, 0.66); }
.layer:nth-child(4) { border-left-color: rgba(218, 161, 65, 0.42); }
.layer:nth-child(5) { border-left-color: rgba(218, 161, 65, 0.24); }

/* Timeline do processo */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 38px);
  position: relative;
  margin-top: 14px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 15px;
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, rgba(218,161,65,0.18) 100%);
}
.tl-item { position: relative; padding-top: 52px; }
.tl-item::before {
  content: "";
  position: absolute;
  top: 8px; left: 0;
  width: 15px; height: 15px;
  border: 1px solid var(--gold);
  background: var(--ink);
  transform: rotate(45deg);
}
.tl-item.done::before { background: var(--gold); }
.tl-n {
  font-family: var(--caps);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 10px;
}
.tl-item h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 9px; }
.tl-item p { font-size: 0.9rem; color: var(--muted-dark); margin: 0; }

/* Galeria mosaico */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(130px, 15vw, 200px);
  gap: 12px;
}
.mosaic a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease), opacity 0.5s var(--ease); }
.mosaic a:hover img { transform: scale(1.06); opacity: 0.9; }
.mosaic a.big { grid-column: span 2; grid-row: span 2; }
.mosaic a.tall { grid-row: span 2; }
.mosaic a.wide { grid-column: span 2; }

/* Materiais */
.materials {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.material {
  background: var(--ink);
  padding: 26px 20px 28px;
  text-align: center;
}
.material strong {
  display: block;
  font-family: var(--caps);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.material span { font-size: 0.82rem; color: var(--muted-dark); line-height: 1.5; }

@media (max-width: 1080px) {
  .materials { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .layers { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .svc-tiles { grid-template-columns: 1fr; }
  .hero { flex-direction: column; align-items: stretch; }
  .hero .wrap { padding-top: 60px; padding-bottom: 44px; }
  .hero-bar { position: static; background: rgba(0,0,0,0.86); }
  .hero-bar .wrap { grid-template-columns: 1fr; }
  .hero-bar-item { border-left: 0; padding: 16px 0; border-top: 1px solid rgba(218,161,65,0.16); }
  .hero-bar-item:first-child { border-top: 0; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic a.big, .mosaic a.wide { grid-column: span 2; }
  .mosaic a.big { grid-row: span 2; }
}

@media (max-width: 560px) {
  .materials { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
}

/* ================================================================
   Header claro
   ================================================================ */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
}
.nav a { color: var(--muted); }
.nav a:hover, .nav a.active { color: var(--text); }
.header-phone { color: var(--text); }
.header-cta .btn-gold { background: var(--ink); color: var(--white); }
.header-cta .btn-gold:hover { background: var(--gold); color: var(--ink); }
.burger { border-color: var(--line); }
.burger span, .burger span::before, .burger span::after { background: var(--text); }
.burger.open span { background: transparent; }
.mobile-nav { background: var(--white); border-bottom: 1px solid var(--line); }
.mobile-nav a { color: var(--text); border-bottom: 1px solid var(--line); }
.mobile-nav .btn-gold { background: var(--ink); color: var(--white); }

/* Ajustes finos */
.section, .section-tight { display: flow-root; }

.tile-num {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
  opacity: 0.95;
}
.tile h3 { text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5); }

.layers h2 + p { margin-top: 20px; }

/* Respiro entre titulo e o primeiro paragrafo nos blocos de texto corrido */
.split h2 + p,
.svc-body h2 + p,
.layers h2 + p,
.hero h1 + p { margin-top: 20px; }

/* ============================================================
   Reviews do Google (carrossel)
   ============================================================ */

.rev-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(34px, 4.4vw, 54px);
}
.rev-head > div:first-child { max-width: 720px; }
.rev-head h2 { margin-top: 6px; }
.rev-head p { margin-top: 18px; color: var(--muted); }
.bg-ink .rev-head p { color: var(--muted-dark); }

.g-mark { width: 22px; height: 22px; flex: 0 0 auto; }

.rev-score {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  white-space: nowrap;
}
.bg-cream .rev-score, .bg-sand .rev-score {
  border-color: var(--line);
  background: var(--white);
}
.rev-score .g-mark { width: 34px; height: 34px; }
.rev-score-body { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.rev-score-body strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
}
.bg-cream .rev-score-body strong, .bg-sand .rev-score-body strong { color: var(--text); }
.rev-score-body small {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.bg-cream .rev-score-body small, .bg-sand .rev-score-body small { color: var(--muted); }

.rev-stars { display: inline-flex; gap: 3px; color: var(--gold); }
.rev-stars svg { width: 15px; height: 15px; }
.rev-score .rev-stars svg { width: 16px; height: 16px; }

/* Carrossel */
.rev-carousel { position: relative; }

.rev-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
  outline: none;
  transition: height 0.45s var(--ease);
}
.rev-track::-webkit-scrollbar { display: none; }
.rev-track:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }

.rev-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 30px 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
}
.bg-ink .rev-card { border-color: rgba(255, 255, 255, 0.08); }

.rev-card-top { display: flex; align-items: center; gap: 13px; }
.rev-card-top > div { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.rev-card-top strong {
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  color: var(--text);
}
.rev-meta {
  font-size: 0.79rem;
  line-height: 1.45;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.rev-avatar {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--caps);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.rev-text {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
.rev-card.open .rev-text { -webkit-line-clamp: unset; overflow: visible; }

.rev-more {
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.rev-more:hover { color: var(--gold); }

/* Controles */
.rev-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.rev-dots { display: flex; gap: 9px; }
.rev-dots button {
  width: 26px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 0.4s var(--ease), width 0.4s var(--ease);
}
.bg-cream .rev-dots button, .bg-sand .rev-dots button { background: rgba(0, 0, 0, 0.16); }
.rev-dots button[aria-selected="true"] { background: var(--gold); width: 44px; }

.rev-arrows { display: flex; gap: 10px; }
.rev-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  background: none;
  color: var(--sand);
  cursor: pointer;
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease), opacity 0.3s var(--ease);
}
.bg-cream .rev-nav, .bg-sand .rev-nav { border-color: var(--line); color: var(--text); }
.rev-nav svg { width: 19px; height: 19px; }
.rev-nav[data-dir="prev"] svg { transform: rotate(180deg); }
.rev-nav:hover { border-color: var(--gold); color: var(--gold); }
.rev-nav:disabled { opacity: 0.3; cursor: default; }
.rev-nav:disabled:hover { border-color: var(--line-dark); color: var(--sand); }

.rev-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: clamp(34px, 4vw, 48px);
  padding-top: clamp(26px, 3vw, 34px);
  border-top: 1px solid var(--line-dark);
}
.bg-cream .rev-foot, .bg-sand .rev-foot { border-top-color: var(--line); }
.rev-foot p {
  margin: 0;
  max-width: 460px;
  font-size: 0.88rem;
  color: var(--muted-dark);
}
.bg-cream .rev-foot p, .bg-sand .rev-foot p { color: var(--muted); }

@media (max-width: 1000px) {
  .rev-head { grid-template-columns: 1fr; align-items: start; }
  .rev-score { align-self: start; }
  .rev-card { flex-basis: calc((100% - 22px) / 2); }
}

@media (max-width: 700px) {
  .rev-track { align-items: flex-start; }
  .rev-card { flex-basis: 100%; padding: 26px 24px 24px; }
  .rev-controls { flex-direction: column-reverse; align-items: stretch; gap: 18px; }
  .rev-arrows { justify-content: center; }
  .rev-dots { justify-content: center; }
  .rev-foot { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .rev-track { scroll-behavior: auto; transition: none; }
}

/* Fotos anexadas as reviews */
.rev-card:not(:has(.rev-shots)) .rev-more { margin-top: auto; }

.rev-shots {
  display: grid;
  margin-top: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.rev-shots a {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}
.rev-shots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), opacity 0.4s var(--ease);
}
.rev-shots a:hover img { transform: scale(1.07); opacity: 0.92; }
.rev-shots a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.rev-shot-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.rev-card .rev-more + .rev-shots { margin-top: 16px; }
.rev-card .rev-text + .rev-shots { margin-top: auto; padding-top: 4px; }
