:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-soft: #eceff2;
  --ink: #22282d;
  --muted: #5f686f;
  --line: #d9dde0;
  --accent: #315d72;
  --accent-dark: #234758;
  --accent-soft: #dce9ee;
  --brick: #a7593e;
  --brick-dark: #82412d;
  --success: #315f4a;
  --shadow: 0 18px 50px rgba(34, 40, 45, 0.10);
  --shadow-sm: 0 8px 24px rgba(34, 40, 45, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(49, 93, 114, 0.4); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-white { background: var(--surface); }
.section-dark { background: var(--ink); color: #fff; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--brick); border-radius: 10px; }
.section-dark .eyebrow { color: #c8dce5; }
.section-dark .eyebrow::before { background: #dc8c6d; }
.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.section-lead { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-lead { color: #cbd0d4; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(246, 244, 239, 0.94);
  border-bottom: 1px solid rgba(34, 40, 45, 0.08);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 245px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 11px; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-weight: 900; letter-spacing: -0.06em;
  box-shadow: inset -8px -8px 0 rgba(0,0,0,0.08);
}
.brand-copy { display: grid; line-height: 1.12; }
.brand-copy strong { font-size: 1rem; }
.brand-copy span { color: var(--muted); font-size: 0.78rem; margin-top: 4px; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav-link { display: inline-flex; padding: 10px 13px; border-radius: 8px; text-decoration: none; font-size: 0.94rem; font-weight: 700; color: #41484d; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--accent-dark); background: var(--accent-soft); }
.header-call { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; text-decoration: none; font-weight: 850; color: var(--accent-dark); }
.header-call svg { width: 19px; height: 19px; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; border-radius: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.2s ease; }

.hero { position: relative; overflow: hidden; padding: 86px 0 88px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 16%, rgba(49, 93, 114, 0.18), transparent 28%),
    radial-gradient(circle at 90% 84%, rgba(167, 89, 62, 0.16), transparent 25%),
    linear-gradient(120deg, transparent 0 58%, rgba(255,255,255,0.55) 58% 100%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); gap: 72px; align-items: center; }
.hero h1 { margin: 0; max-width: 780px; font-size: clamp(2.7rem, 5.8vw, 5.15rem); line-height: 0.98; letter-spacing: -0.065em; }
.hero h1 span { color: var(--accent); }
.hero-lead { max-width: 720px; margin: 26px 0 0; color: var(--muted); font-size: clamp(1.04rem, 1.5vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 20px; border: 1px solid transparent; border-radius: 10px;
  text-decoration: none; font-weight: 850; line-height: 1.2; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--accent); box-shadow: 0 10px 24px rgba(49,93,114,0.22); }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 14px 28px rgba(49,93,114,0.28); }
.btn-secondary { color: var(--ink); background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: #b6bec3; }
.btn-brick { color: #fff; background: var(--brick); box-shadow: 0 10px 24px rgba(167,89,62,0.22); }
.btn-brick:hover { background: var(--brick-dark); }
.btn-sm { min-height: 44px; padding: 10px 16px; font-size: 0.94rem; }
.btn svg { width: 19px; height: 19px; flex: 0 0 auto; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 28px 0 0; padding: 0; list-style: none; color: #3d464c; font-weight: 700; font-size: 0.93rem; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--brick); box-shadow: 0 0 0 4px rgba(167,89,62,0.13); }

.hero-visual { position: relative; min-height: 500px; }
.craft-panel {
  position: absolute; inset: 14px 0 0 20px; background: #e8ecee; border-radius: 18px; box-shadow: var(--shadow);
  overflow: hidden; border: 1px solid rgba(34,40,45,0.08);
}
.craft-wall { position: absolute; inset: 0; background: linear-gradient(90deg, #d6dde0 0 48%, #f6f1e8 48% 100%); }
.craft-wall::before { content: ""; position: absolute; left: 48%; top: 0; bottom: 0; width: 12px; background: rgba(255,255,255,0.45); filter: blur(8px); }
.paint-stroke { position: absolute; right: 7%; top: 12%; width: 38%; height: 58%; background: #c8dbe3; border-radius: 46% 20% 42% 18%; transform: rotate(-5deg); opacity: 0.82; }
.paint-stroke::after { content: ""; position: absolute; inset: 12% 18% 8% -8%; border-radius: 36% 22% 48% 15%; background: #aecbd6; opacity: 0.75; }
.roller { position: absolute; left: 14%; top: 16%; width: 112px; height: 64px; background: #315d72; border-radius: 9px; box-shadow: inset 0 -10px rgba(0,0,0,0.08); transform: rotate(-8deg); }
.roller::before { content: ""; position: absolute; right: -16px; top: 14px; width: 19px; height: 37px; border: 7px solid #717b81; border-left: 0; border-radius: 0 9px 9px 0; }
.roller::after { content: ""; position: absolute; right: -59px; top: 39px; width: 65px; height: 8px; background: #717b81; transform: rotate(77deg); transform-origin: left center; border-radius: 8px; box-shadow: 46px 0 0 -1px #9a593f; }
.craft-lines { position: absolute; left: 10%; bottom: 14%; width: 36%; height: 30%; border-left: 5px solid rgba(34,40,45,0.2); border-bottom: 5px solid rgba(34,40,45,0.2); }
.craft-lines::before, .craft-lines::after { content: ""; position: absolute; left: -5px; width: 100%; border-top: 2px solid rgba(34,40,45,0.12); }
.craft-lines::before { top: 35%; } .craft-lines::after { top: 68%; }
.hero-card {
  position: absolute; right: -10px; bottom: 8px; width: min(330px, 88%); padding: 24px;
  background: rgba(255,255,255,0.95); border: 1px solid rgba(34,40,45,0.09); border-radius: 14px; box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-card strong { display: block; font-size: 1.18rem; line-height: 1.25; }
.hero-card p { margin: 9px 0 16px; color: var(--muted); font-size: 0.94rem; }
.hero-card a { color: var(--accent-dark); text-decoration: none; font-weight: 900; }

.trust-strip { border-top: 1px solid rgba(34,40,45,0.08); border-bottom: 1px solid rgba(34,40,45,0.08); background: var(--surface); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 26px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 1rem; }
.trust-item span { display: block; margin-top: 5px; color: var(--muted); font-size: 0.9rem; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card {
  position: relative; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(34,40,45,0.02); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); border-color: #bcc5ca; box-shadow: var(--shadow-sm); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 12px; color: var(--accent-dark); background: var(--accent-soft); }
.card-icon svg { width: 25px; height: 25px; }
.card h3 { margin: 0; font-size: 1.28rem; letter-spacing: -0.025em; }
.card p { margin: 10px 0 0; color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--accent-dark); font-weight: 850; text-decoration: none; }
.card-link:hover { text-decoration: underline; }

.split { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 72px; align-items: center; }
.feature-visual {
  position: relative; min-height: 520px; overflow: hidden; border-radius: 18px; background: #dfe5e7; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.feature-visual::before { content: ""; position: absolute; inset: 0 47% 0 0; background: #f4eee4; }
.feature-visual::after { content: ""; position: absolute; left: 47%; top: 0; bottom: 0; width: 15px; background: rgba(255,255,255,0.65); filter: blur(7px); }
.swatch { position: absolute; border-radius: 12px; box-shadow: 0 10px 24px rgba(34,40,45,0.12); }
.swatch-a { width: 150px; height: 190px; background: #315d72; right: 13%; top: 12%; transform: rotate(5deg); }
.swatch-b { width: 150px; height: 190px; background: #a7593e; right: 26%; top: 29%; transform: rotate(-7deg); }
.swatch-c { width: 150px; height: 190px; background: #d6c7a8; right: 9%; top: 47%; transform: rotate(3deg); }
.feature-note { position: absolute; left: 8%; bottom: 9%; z-index: 2; max-width: 230px; padding: 20px; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); }
.feature-note strong { display: block; }
.feature-note span { display: block; margin-top: 5px; color: var(--muted); font-size: 0.9rem; }
.check-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.check-list li::before { content: "✓"; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-weight: 900; }
.check-list strong { display: block; }
.check-list span { display: block; color: var(--muted); font-size: 0.94rem; margin-top: 2px; }

.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.work-item { display: flex; gap: 14px; align-items: flex-start; padding: 20px; border-radius: 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); }
.work-item b { display: grid; place-items: center; flex: 0 0 auto; width: 32px; height: 32px; border-radius: 9px; background: #fff; color: var(--accent-dark); }
.work-item span { color: #d5dade; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { position: relative; padding: 26px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.step::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 35px; border-radius: 12px; color: #fff; background: var(--accent); font-weight: 900; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 46px; right: -19px; width: 20px; height: 2px; background: var(--line); }
.step h3 { margin: 0; font-size: 1.12rem; }
.step p { margin: 9px 0 0; color: var(--muted); font-size: 0.94rem; }

.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.quote { margin: 0; padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.quote-mark { color: var(--brick); font-size: 2.8rem; font-family: Georgia, serif; line-height: 0.8; }
.quote p { margin: 16px 0 0; font-size: 1.07rem; }
.quote footer { margin-top: 18px; color: var(--muted); font-size: 0.9rem; }
.quote small { display: block; margin-top: 10px; color: #737b81; }

.gallery-preview { display: grid; grid-template-columns: 1.25fr 0.75fr 0.75fr; grid-template-rows: 210px 210px; gap: 14px; }
.gallery-tile { position: relative; overflow: hidden; border-radius: 14px; border: 1px solid var(--line); background: #e3e7e9; }
.gallery-tile:first-child { grid-row: 1 / 3; }
.gallery-art { position: absolute; inset: 0; }
.gallery-art.paint { background: linear-gradient(110deg, #f4eee5 0 45%, #bfd1d9 45% 100%); }
.gallery-art.paint::before { content: ""; position: absolute; left: 13%; top: 19%; width: 36%; height: 16%; border-radius: 10px; background: var(--accent); transform: rotate(-8deg); box-shadow: 0 94px 0 #a7593e, 45px 188px 0 #d0bd94; }
.gallery-art.wall { background: linear-gradient(90deg, #e1e6e8 0 52%, #f1e8da 52%); }
.gallery-art.wall::before { content: ""; position: absolute; left: 43%; top: 11%; width: 10px; height: 80%; background: rgba(255,255,255,.7); filter: blur(5px); }
.gallery-art.tools { background: #d7dfe2; }
.gallery-art.tools::before { content: ""; position: absolute; left: 20%; top: 18%; width: 60%; height: 64%; border: 12px solid #9e5b42; border-top-width: 26px; transform: skew(-4deg); }
.gallery-art.facade { background: linear-gradient(165deg, #bdcfd7 0 42%, #ede5d8 42% 78%, #8b967d 78%); }
.gallery-label { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 10px 12px; border-radius: 9px; background: rgba(255,255,255,.92); font-weight: 800; font-size: .9rem; box-shadow: var(--shadow-sm); }
.gallery-disclaimer { margin-top: 18px; color: var(--muted); font-size: 0.92rem; }

.faq { display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 850; }
.faq-question::after { content: "+"; color: var(--accent-dark); font-size: 1.5rem; line-height: 1; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { padding: 0 22px 20px; color: var(--muted); }
.faq-answer[hidden] { display: none; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 44px; border-radius: 18px; background: var(--accent); color: #fff; box-shadow: 0 22px 50px rgba(49,93,114,.22); }
.cta-panel h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.08; letter-spacing: -0.04em; }
.cta-panel p { margin: 14px 0 0; color: #dce9ee; max-width: 700px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cta-panel .btn-secondary { border-color: rgba(255,255,255,.65); }

.page-hero { position: relative; overflow: hidden; padding: 78px 0 70px; border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; width: 480px; height: 480px; right: -140px; top: -240px; border-radius: 50%; background: rgba(49,93,114,.12); }
.page-hero h1 { position: relative; z-index: 1; max-width: 850px; margin: 0; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -0.06em; }
.page-hero p { position: relative; z-index: 1; max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 1.1rem; }
.breadcrumbs { position: relative; z-index: 1; display: flex; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: .88rem; }
.breadcrumbs a { color: var(--accent-dark); text-decoration: none; font-weight: 750; }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-detail { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.service-detail h2 { display: flex; align-items: center; gap: 13px; margin: 0; font-size: 1.45rem; }
.service-detail h2 b { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-dark); font-size: 1rem; }
.service-detail ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }
.service-detail li + li { margin-top: 7px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-panel { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.about-panel h2 { margin-top: 0; }
.fact-list { display: grid; gap: 16px; margin-top: 24px; }
.fact { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; }
.fact b { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-dark); }
.fact strong { display: block; }
.fact span { color: var(--muted); font-size: .94rem; }

.gallery-categories { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.gallery-category { position: relative; min-height: 270px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #e3e8ea; }
.gallery-category .gallery-art { opacity: .78; }
.gallery-category-content { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2; padding: 18px; background: rgba(255,255,255,.94); border-radius: 12px; box-shadow: var(--shadow-sm); }
.gallery-category h2 { margin: 0; font-size: 1.25rem; }
.gallery-category p { margin: 7px 0 0; color: var(--muted); font-size: .9rem; }
.gallery-empty { padding: 28px; margin-top: 30px; border: 1px dashed #adb8be; border-radius: var(--radius); background: rgba(255,255,255,.5); text-align: center; }
.gallery-empty strong { display: block; font-size: 1.25rem; }
.gallery-empty p { max-width: 720px; margin: 9px auto 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: 34px; align-items: start; }
.contact-card { padding: 30px; background: var(--ink); color: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-card h2 { margin: 0; font-size: 1.7rem; }
.contact-card p { color: #cbd0d4; }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 18px; }
.contact-list li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; }
.contact-list b { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.1); }
.contact-list strong { display: block; }
.contact-list a, .contact-list span { color: #d5dade; text-decoration: none; }
.contact-list a:hover { color: #fff; text-decoration: underline; }
.form-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.form-card h2 { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; font-size: .92rem; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #bfc7cb; border-radius: 9px; background: #fff; padding: 12px 13px; color: var(--ink); }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(49,93,114,.12); outline: none; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: .84rem; }
.form-status { margin-top: 14px; padding: 12px 14px; border-radius: 9px; background: #e5f0ea; color: var(--success); font-weight: 750; }
.form-status[hidden] { display: none; }
.map-link { display: grid; place-items: center; min-height: 250px; margin-top: 20px; border-radius: 14px; background: linear-gradient(135deg, #dbe5e9, #efe8dc); border: 1px solid rgba(255,255,255,.15); color: var(--ink); text-align: center; text-decoration: none; overflow: hidden; }
.map-link span { display: inline-flex; align-items: center; gap: 8px; padding: 12px 15px; background: rgba(255,255,255,.93); border-radius: 9px; font-weight: 850; box-shadow: var(--shadow-sm); }

.site-footer { padding: 64px 0 30px; background: #1d2327; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 55px; }
.footer-brand p { max-width: 470px; color: #bfc5c9; }
.footer-title { margin: 0 0 16px; font-size: .88rem; color: #dfe4e7; text-transform: uppercase; letter-spacing: .08em; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a { color: #bfc5c9; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #9ea6ab; font-size: .86rem; }
.mobile-call-bar { display: none; }

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

@media (max-width: 1040px) {
  .header-call { display: none; }
  .hero-grid { grid-template-columns: 1fr 410px; gap: 44px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 860px) {
  :root { --header-height: 70px; }
  .container { width: min(var(--container), calc(100% - 30px)); }
  .section { padding: 76px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .nav-toggle { display: block; position: relative; z-index: 102; }
  .site-nav { position: fixed; inset: 0; z-index: 101; padding: 95px 24px 24px; background: rgba(246,244,239,.99); transform: translateX(100%); transition: transform .25s ease; }
  .site-nav.is-open { transform: none; }
  .nav-list { align-items: stretch; flex-direction: column; }
  .nav-link { padding: 14px 16px; font-size: 1.06rem; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 62px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 450px; max-width: 650px; width: 100%; }
  .split, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .feature-visual { min-height: 430px; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 620px) {
  body { padding-bottom: 70px; }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .brand { min-width: 0; }
  .brand-copy span { display: none; }
  .hero { padding: 48px 0 62px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 380px; }
  .craft-panel { inset: 8px 0 0; }
  .hero-card { left: 15px; right: 15px; width: auto; bottom: -8px; }
  .trust-grid, .cards, .work-grid, .steps, .testimonials, .service-detail-grid, .gallery-categories, .form-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .step::after { display: none; }
  .gallery-preview { grid-template-columns: 1fr 1fr; grid-template-rows: 250px 170px 170px; }
  .gallery-tile:first-child { grid-column: 1/-1; grid-row: auto; }
  .field.full { grid-column: auto; }
  .cta-panel { padding: 30px 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-call-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 110; min-height: 64px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); background: rgba(29,35,39,.97); backdrop-filter: blur(12px);
  }
  .mobile-call-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; border-radius: 10px; background: var(--brick); color: #fff; text-decoration: none; font-weight: 900; }
}

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

/* Progressive enhancement: content remains visible even when scripts or observers are unavailable. */
html, body { overflow-x: clip; }
.reveal { opacity: 1; transform: none; }
@media (max-width: 860px) {
  .site-nav { visibility: hidden; pointer-events: none; }
  .site-nav.is-open { visibility: visible; pointer-events: auto; }
}
