:root {
  --forest-950: #03241c;
  --forest-900: #06372b;
  --forest-800: #0b4b3a;
  --forest-700: #126147;
  --mint-500: #3eb78e;
  --mint-300: #8fd0bf;
  --mint-100: #e5f5ef;
  --yellow: #f2f500;
  --ink: #10231c;
  --muted: #627269;
  --paper: #f7faf7;
  --white: #ffffff;
  --line: #dce7e1;
  --shadow: 0 20px 60px rgba(6, 55, 43, .12);
  --shadow-sm: 0 10px 30px rgba(6, 55, 43, .09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--yellow); color: var(--forest-950); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 999;
  transform: translateY(-180%);
  background: var(--yellow);
  color: var(--forest-950);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: .79rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest-700);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: var(--mint-500);
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.04; }
h1 { font-size: clamp(3.1rem, 7.2vw, 7rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.1rem, 4.5vw, 4rem); margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
p { color: var(--muted); }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.3rem); max-width: 700px; line-height: 1.65; }
.max-620 { max-width: 620px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247, 250, 247, .88);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(6, 55, 43, .08);
}
.header-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; min-width: 215px; }
.brand img { width: 214px; height: auto; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: 6px; }
.desktop-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #40554b;
  font-size: .96rem;
  font-weight: 740;
  transition: .2s ease;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { background: var(--mint-100); color: var(--forest-900); }
.header-actions { display: flex; align-items: center; gap: 9px; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 820;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .menu-button:focus-visible, .chip:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(62,183,142,.35);
  outline-offset: 3px;
}
.btn-primary { background: var(--forest-900); color: #fff; box-shadow: 0 8px 24px rgba(6,55,43,.18); }
.btn-primary:hover { background: var(--forest-800); }
.btn-yellow { background: var(--yellow); color: var(--forest-950); box-shadow: 0 10px 26px rgba(242,245,0,.18); }
.btn-yellow:hover { box-shadow: 0 12px 30px rgba(242,245,0,.28); }
.btn-soft { background: var(--mint-100); color: var(--forest-900); }
.btn-white { background: #fff; color: var(--forest-900); }
.btn-ghost { border: 1px solid var(--line); color: var(--forest-900); background: rgba(255,255,255,.45); }
.icon { width: 19px; height: 19px; flex: 0 0 auto; }

.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--forest-900);
  cursor: pointer;
}
.menu-button svg { width: 23px; }
.mobile-panel {
  display: none;
  position: fixed;
  inset: 78px 0 auto 0;
  z-index: 70;
  padding: 12px 20px 22px;
  background: rgba(247,250,247,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(6,55,43,.10);
}
.mobile-panel.open { display: block; }
.mobile-panel nav { display: grid; gap: 8px; }
.mobile-panel nav a { padding: 15px 16px; border-radius: 14px; font-weight: 800; color: var(--forest-900); }
.mobile-panel nav a[aria-current="page"] { background: var(--mint-100); }
.mobile-panel .btn { width: 100%; margin-top: 10px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 10%, rgba(242,245,0,.15), transparent 24%),
    linear-gradient(145deg, var(--forest-950), var(--forest-900) 55%, #0e6248);
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -260px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
}
.hero-grid {
  min-height: 720px;
  padding: 88px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr);
  gap: 68px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero .eyebrow { color: var(--yellow); }
.hero .eyebrow::before { background: var(--yellow); }
.hero h1 { max-width: 760px; }
.hero h1 span { color: var(--yellow); }
.hero .lead { color: rgba(255,255,255,.78); margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 36px; }
.trust-item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: .94rem; font-weight: 700; }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint-500); box-shadow: 0 0 0 5px rgba(62,183,142,.12); }

.hero-visual { position: relative; min-height: 520px; }
.hero-photo {
  position: absolute;
  inset: 4% 0 3% 10%;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.12);
  background: #123;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(3,36,28,.55)); }
.hero-card {
  position: absolute;
  z-index: 3;
  padding: 17px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  color: var(--forest-950);
  box-shadow: var(--shadow);
}
.hero-card strong { display: block; font-size: 1.02rem; }
.hero-card span { color: var(--muted); font-size: .84rem; }
.hero-card.top { top: 0; right: -8px; }
.hero-card.bottom { bottom: 0; left: 0; }
.hero-badge {
  position: absolute;
  right: 16px;
  bottom: 27px;
  z-index: 2;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--forest-950);
  font-weight: 900;
  font-size: .82rem;
}

.service-ribbon { margin-top: -1px; background: var(--yellow); color: var(--forest-950); }
.ribbon-row { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; overflow: hidden; }
.ribbon-item { white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: .91rem; }
.ribbon-item::before { content: "+"; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: rgba(3,36,28,.1); }

.section { padding: 100px 0; }
.section-tight { padding: 72px 0; }
.section-dark { background: var(--forest-950); color: #fff; }
.section-dark p { color: rgba(255,255,255,.68); }
.section-soft { background: #eef6f1; }
.section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 38px; }
.section-heading p { max-width: 560px; margin-bottom: 4px; }
.section-heading h2 { margin-bottom: 0; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 30px rgba(6,55,43,.035);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--mint-300); box-shadow: var(--shadow-sm); }
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  margin-bottom: 34px;
  background: var(--mint-100);
  color: var(--forest-900);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.38rem; }
.service-card p { margin-bottom: 0; font-size: .96rem; }
.service-card.featured { background: var(--forest-900); border-color: var(--forest-900); color: #fff; }
.service-card.featured p { color: rgba(255,255,255,.7); }
.service-card.featured .service-icon { background: var(--yellow); color: var(--forest-950); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.project-photo-wrap { position: relative; }
.project-photo {
  aspect-ratio: 16 / 12;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--mint-100);
}
.project-photo img { width: 100%; height: 100%; object-fit: cover; }
.project-stamp {
  position: absolute;
  right: -18px;
  bottom: 26px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  background: var(--yellow);
  color: var(--forest-950);
  font-weight: 900;
  line-height: 1.15;
  transform: rotate(7deg);
  box-shadow: 0 15px 34px rgba(35,40,0,.16);
}
.check-list { display: grid; gap: 13px; margin: 28px 0 32px; }
.check-item { display: flex; align-items: flex-start; gap: 11px; font-weight: 730; color: var(--forest-900); }
.check-icon { width: 23px; height: 23px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; background: var(--mint-100); color: var(--forest-900); font-size: .78rem; font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
.process-card { padding: 30px; border-radius: var(--radius-lg); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); }
.process-number { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--yellow); color: var(--forest-950); font-weight: 900; margin-bottom: 24px; }
.process-card h3 { color: #fff; }

.quote-band {
  overflow: hidden;
  position: relative;
  padding: 54px;
  border-radius: var(--radius-xl);
  background: linear-gradient(130deg, var(--mint-500), #76ccb4);
  color: var(--forest-950);
}
.quote-band::after { content: "BTS"; position: absolute; right: -10px; bottom: -55px; font-size: 14rem; line-height: 1; font-weight: 950; letter-spacing: -.08em; color: rgba(6,55,43,.08); }
.quote-band-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; z-index: 2; }
.quote-band h2 { max-width: 780px; margin-bottom: 10px; }
.quote-band p { color: rgba(3,36,28,.72); margin-bottom: 0; }
.quote-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

.page-hero { padding: 82px 0 68px; background: linear-gradient(180deg, #eff7f2, var(--paper)); }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6.4rem); max-width: 920px; color: var(--forest-950); }
.page-hero h1 span { color: var(--mint-500); }
.page-hero .lead { margin-bottom: 0; }
.breadcrumb { margin-bottom: 34px; display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 750; color: var(--muted); }
.breadcrumb a { color: var(--forest-700); }

.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(6,55,43,.035);
}
.service-detail .service-icon { margin-bottom: 0; }
.service-detail p { margin-bottom: 0; }
.service-detail small { display: block; margin-top: 10px; color: #7b8c83; font-weight: 640; }

.note-card { padding: 26px 28px; border-radius: var(--radius-lg); background: #fff9c9; border: 1px solid #edf088; }
.note-card strong { color: var(--forest-950); }
.note-card p { margin: 8px 0 0; color: #676727; }

.project-feature { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.project-main, .project-side { overflow: hidden; border-radius: var(--radius-xl); position: relative; background: #dcefe7; }
.project-main { aspect-ratio: 16 / 10; }
.project-side { min-height: 100%; }
.project-main img, .project-side img { width: 100%; height: 100%; object-fit: cover; }
.project-overlay { position: absolute; inset: auto 18px 18px 18px; padding: 22px; border-radius: 20px; background: rgba(3,36,28,.88); backdrop-filter: blur(12px); color: #fff; }
.project-overlay .tag { display: inline-flex; margin-bottom: 9px; padding: 6px 10px; border-radius: 999px; background: var(--yellow); color: var(--forest-950); font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.project-overlay h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 8px; }
.project-overlay p { margin-bottom: 0; color: rgba(255,255,255,.74); }
.project-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 22px; }
.fact { padding: 23px; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.fact strong { display: block; margin-bottom: 4px; color: var(--forest-900); }
.fact span { color: var(--muted); font-size: .92rem; }

.gallery-heading { margin: 52px 0 22px; }
.gallery-grid { display: grid; grid-template-columns: 1.3fr .85fr .85fr; grid-auto-rows: 310px; gap: 14px; }
.gallery-item { overflow: hidden; border-radius: var(--radius-lg); background: #dcefe7; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.025); }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.contact-card { padding: 34px; border-radius: var(--radius-xl); background: var(--forest-950); color: #fff; box-shadow: var(--shadow); position: sticky; top: 110px; }
.contact-card .eyebrow { color: var(--yellow); }
.contact-card .eyebrow::before { background: var(--yellow); }
.contact-card h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.contact-card p { color: rgba(255,255,255,.7); }
.contact-methods { display: grid; gap: 10px; margin-top: 28px; }
.contact-method {
  min-height: 68px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 10px 12px;
  border-radius: 17px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.08);
}
.contact-method .method-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 13px; background: var(--yellow); color: var(--forest-950); }
.contact-method .method-icon svg { width: 20px; }
.contact-method small { display:block; color: rgba(255,255,255,.55); font-weight: 650; }
.contact-method strong { font-size: .98rem; }
.contact-method .arrow { color: rgba(255,255,255,.45); }

.quote-form { padding: 36px; border-radius: var(--radius-xl); background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 40px rgba(6,55,43,.05); }
.quote-form h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 810; color: var(--forest-900); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #cfddd5;
  border-radius: 15px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfdfb;
  transition: border .2s ease, box-shadow .2s ease;
}
.field input, .field select { height: 52px; }
.field textarea { min-height: 138px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--mint-500); box-shadow: 0 0 0 4px rgba(62,183,142,.09); }
.form-help { margin: 15px 0 0; font-size: .84rem; color: #74847b; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.form-status { min-height: 24px; margin-top: 13px; font-size: .9rem; font-weight: 720; color: var(--forest-700); }

.privacy-card { max-width: 820px; padding: 38px; border-radius: var(--radius-xl); background: #fff; border: 1px solid var(--line); }
.privacy-card h2 { font-size: 1.6rem; margin-top: 30px; }
.privacy-card h2:first-child { margin-top: 0; }
.privacy-card p:last-child { margin-bottom: 0; }

.site-footer { background: var(--forest-950); color: #fff; padding: 70px 0 96px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 60px; }
.footer-brand img { width: 220px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { color: rgba(255,255,255,.62); max-width: 430px; margin: 21px 0; }
.footer-trust { color: var(--yellow); font-weight: 850; letter-spacing: .03em; }
.footer-col h3 { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mint-300); margin-bottom: 17px; }
.footer-col a { display: block; padding: 5px 0; color: rgba(255,255,255,.78); font-weight: 650; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.43); font-size: .82rem; }

.mobile-contact-bar {
  display: none;
  position: fixed;
  z-index: 90;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 7px;
  border-radius: 20px;
  background: rgba(3,36,28,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(3,36,28,.3);
  border: 1px solid rgba(255,255,255,.12);
}
.mobile-contact-bar a { flex: 1; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border-radius: 14px; color: #fff; font-size: .86rem; font-weight: 840; }
.mobile-contact-bar a.primary { background: var(--yellow); color: var(--forest-950); }
.mobile-contact-bar svg { width: 18px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .header-row { grid-template-columns: auto 1fr auto; }
  .header-actions .btn { display: none; }
  .menu-button { display: grid; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 50px; padding: 72px 0; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 460px; width: min(650px, 100%); }
  .hero-photo { inset: 0 2% 3% 8%; }
  .ribbon-row { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; padding-right: 20px; }
  .ribbon-row::-webkit-scrollbar { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 46px; }
  .section-heading { align-items: start; flex-direction: column; gap: 12px; }
  .quote-band-grid { grid-template-columns: 1fr; }
  .quote-actions { justify-content: flex-start; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .project-feature { grid-template-columns: 1fr; }
  .project-side { aspect-ratio: 16 / 8; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item:first-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .site-header { top: 0; }
  .header-row { min-height: 68px; gap: 10px; }
  .brand { min-width: 0; }
  .brand img { width: 176px; }
  .menu-button { width: 44px; height: 44px; border-radius: 14px; }
  .mobile-panel { inset: 68px 0 auto 0; }

  .hero-grid { padding: 55px 0 62px; gap: 38px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero .lead { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .trust-row { gap: 11px 18px; margin-top: 26px; }
  .hero-visual { min-height: 355px; }
  .hero-photo { inset: 0 0 0 5%; border-radius: 26px; }
  .hero-card { padding: 12px 14px; border-radius: 15px; }
  .hero-card.top { top: -9px; right: -2px; }
  .hero-card.bottom { bottom: -9px; left: 0; }
  .hero-badge { bottom: 16px; right: 12px; }

  .service-ribbon { display: none; }
  .section { padding: 72px 0; }
  .section-tight { padding: 58px 0; }
  .services-grid, .service-list, .process-grid, .footer-grid, .split { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 24px; }
  .service-icon { margin-bottom: 24px; }
  .split { gap: 32px; }
  .project-stamp { width: 102px; height: 102px; right: -3px; bottom: -22px; font-size: .82rem; }
  .quote-band { padding: 32px 24px; border-radius: 25px; }
  .quote-band::after { font-size: 8rem; }
  .quote-actions .btn { width: 100%; }
  .page-hero { padding: 55px 0 44px; }
  .page-hero h1 { font-size: clamp(2.85rem, 14vw, 4.6rem); }
  .breadcrumb { margin-bottom: 24px; }
  .service-detail { padding: 23px; grid-template-columns: 1fr; gap: 14px; }
  .service-detail .service-icon { margin-bottom: 2px; }
  .project-main { aspect-ratio: 4/5; }
  .project-side { aspect-ratio: 4/3; }
  .project-overlay { inset: auto 12px 12px; padding: 18px; }
  .project-facts { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-grid .gallery-item:first-child { grid-column: auto; }
  .contact-card, .quote-form, .privacy-card { padding: 25px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-actions .btn { width: 100%; }
  .footer-grid { gap: 34px; }
  .site-footer { padding: 56px 0 110px; }
  .footer-bottom { flex-direction: column; }
  .mobile-contact-bar { display: flex; }
}

@media (max-width: 420px) {
  .brand img { width: 156px; }
  .hero-visual { min-height: 320px; }
  .hero-card.top { display: none; }
  .hero-card.bottom { left: 7px; }
  .mobile-contact-bar a span.long { display: none; }
}
.section-actions { margin-top: 28px; }
.service-note { margin-top: 24px; }
.mobile-contact-bar .short-label { display: none; }
@media (max-width: 420px) {
  .mobile-contact-bar .long-label { display: none; }
  .mobile-contact-bar .short-label { display: inline; }
}
