:root {
  --bg: #f4efe7;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #fffdfa;
  --surface-dark: #243039;
  --text: #1e2830;
  --muted: #5f6b74;
  --line: rgba(30, 40, 48, 0.08);
  --brand: #b05e37;
  --brand-dark: #8c4624;
  --accent: #4f665f;
  --shadow: 0 24px 70px rgba(27, 35, 43, 0.1);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

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

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

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(176, 94, 55, 0.12), transparent 24%),
    radial-gradient(circle at 100% 12%, rgba(79, 102, 95, 0.14), transparent 22%),
    linear-gradient(180deg, #faf7f2 0%, #f2ede5 100%);
  background-attachment: fixed;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: -14%;
  right: -8%;
  width: 38vw;
  height: 38vw;
  min-width: 320px;
  min-height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 94, 55, 0.16), rgba(176, 94, 55, 0) 68%);
  filter: blur(6px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
  animation: ambientFloat 18s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  bottom: -18%;
  left: -8%;
  width: 34vw;
  height: 34vw;
  min-width: 280px;
  min-height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 102, 95, 0.18), rgba(79, 102, 95, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
  animation: ambientFloatReverse 22s ease-in-out infinite alternate;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
textarea {
  font: inherit;
}

input,
select,
textarea {
  font-size: 16px;
}

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

.page-shell {
  overflow: clip;
  position: relative;
  z-index: 1;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  display: grid;
  place-items: center;
  visibility: visible;
}

.page-transition.is-hidden {
  visibility: hidden;
}

.page-transition__backdrop,
.page-transition__panel,
.page-transition__beam,
.page-transition__glow {
  position: absolute;
  inset: 0;
}

.page-transition__backdrop {
  background: rgba(16, 22, 28, 0.2);
  backdrop-filter: blur(5px);
}

.page-transition__panel {
  inset: 0 auto 0 0;
  width: 50.5%;
  background:
    radial-gradient(circle at 24% 26%, rgba(176, 94, 55, 0.3), transparent 34%),
    linear-gradient(135deg, rgba(24, 33, 41, 0.98), rgba(49, 60, 69, 0.96));
  box-shadow: 0 10px 50px rgba(7, 11, 15, 0.18);
  transform: scaleX(0);
}

.page-transition__panel--right {
  inset: 0 0 0 auto;
}

.page-transition__beam {
  left: 50%;
  right: auto;
  width: 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 248, 236, 0.98) 18%, rgba(255, 232, 214, 0.92) 50%, rgba(255, 255, 255, 0) 100%);
  box-shadow:
    0 0 18px rgba(255, 243, 226, 0.78),
    0 0 44px rgba(255, 206, 172, 0.24);
  transform: translateX(-50%) scaleY(0.7);
  opacity: 0;
}

.page-transition__glow {
  inset: 18% 24%;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.12) 40%, rgba(255, 248, 238, 0.28) 50%, rgba(255, 255, 255, 0.08) 60%, rgba(255, 255, 255, 0) 78%);
  mix-blend-mode: screen;
  filter: blur(1px);
  transform: scale(0.82);
  opacity: 0;
}

.page-transition__label {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #f8f3ed;
  text-align: center;
  opacity: 0;
}

.page-transition__label span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(176, 94, 55, 0.96), rgba(140, 70, 36, 0.96));
  box-shadow: 0 14px 30px rgba(176, 94, 55, 0.26);
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
}

.page-transition__label strong {
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 242, 0.78);
  border-bottom: 1px solid rgba(30, 40, 48, 0.05);
}

.page-breadcrumbs {
  position: relative;
  z-index: 6;
  border-bottom: 1px solid rgba(30, 40, 48, 0.05);
  background: rgba(255, 251, 246, 0.74);
  backdrop-filter: blur(10px);
}

.breadcrumb-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb-link {
  transition: color 0.25s ease;
}

.breadcrumb-link:hover {
  color: var(--brand);
}

.breadcrumb-separator {
  opacity: 0.45;
}

.breadcrumb-current {
  color: var(--text);
  font-weight: 700;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 0.95rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand-copy small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  font-weight: 600;
  transition: color 0.28s ease;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(176, 94, 55, 0.2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.site-nav a:not(.button):hover::after,
.site-nav a.is-current:not(.button)::after {
  transform: scaleX(1);
}

.site-nav a.is-current:not(.button) {
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(176, 94, 55, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.button-secondary {
  background: linear-gradient(135deg, #31414b, #243039);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 32px rgba(36, 48, 57, 0.18);
}

.button-sm {
  min-height: 44px;
  padding: 0 18px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(176, 94, 55, 0.28);
  filter: saturate(1.04);
}

.button:focus-visible,
.button-secondary:focus-visible,
.site-nav a:focus-visible,
.lead-form input:focus-visible,
.lead-form textarea:focus-visible,
.calc-card select:focus-visible,
.calc-card input:focus-visible {
  outline: 2px solid rgba(176, 94, 55, 0.34);
  outline-offset: 3px;
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid,
.split-section,
.contact-grid,
.contact-layout,
.page-grid,
.feature-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.feature-card,
.project-card,
.lead-form,
.timeline-item,
.faq-item,
.check-list-card,
.page-card,
.contact-card,
.contact-copy,
.page-summary,
.visual-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-card,
.timeline-item,
.check-list-card,
.page-card,
.contact-card,
.contact-copy,
.page-summary,
.visual-card,
.calc-card,
.calc-result-card,
.lead-form,
.faq-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.feature-card::before,
.timeline-item::before,
.check-list-card::before,
.page-card::before,
.contact-card::before,
.contact-copy::before,
.page-summary::before,
.visual-card::before,
.calc-card::before,
.calc-result-card::before,
.lead-form::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(176, 94, 55, 0.34), rgba(255, 255, 255, 0));
  opacity: 0.9;
  z-index: -1;
}

.feature-card::after,
.timeline-item::after,
.check-list-card::after,
.page-card::after,
.contact-card::after,
.contact-copy::after,
.page-summary::after,
.visual-card::after,
.calc-card::after,
.calc-result-card::after,
.lead-form::after,
.faq-item::after {
  content: "";
  position: absolute;
  inset: auto -18% -36% auto;
  width: 42%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 94, 55, 0.1), rgba(176, 94, 55, 0));
  pointer-events: none;
  z-index: -1;
}

.hero-copy,
.hero-card,
.contact-copy,
.page-summary,
.visual-card {
  border-radius: var(--radius-lg);
  padding: 38px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h1,
.contact-copy h2,
.page-summary h1,
.split-copy h2,
.page-card h2 {
  margin: 16px 0;
  font-family: "Unbounded", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(1.25rem, 1.45vw, 1.78rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
}

.split-copy h2,
.page-card h2,
.contact-copy h2 {
  max-width: 15ch;
  font-size: clamp(1.4rem, 1.7vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.014em;
}

.page-summary h1,
.contact-copy h1 {
  max-width: 10.5ch;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 0.98;
}

.hero-text,
.section-heading p,
.feature-card p,
.project-card p,
.timeline-item p,
.faq-item p,
.contact-copy p,
.split-copy p,
.page-summary p,
.page-card p,
.page-card li,
.visual-card p,
.contact-card p,
.footer-grid p,
.footer-grid span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.hero-points,
.check-list,
.stat-list,
.stack-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-points li,
.stack-list li {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(30, 40, 48, 0.06);
  font-weight: 600;
}

.hero-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54)),
    linear-gradient(135deg, rgba(176, 94, 55, 0.1), rgba(79, 102, 95, 0.16));
}

.hero-visual,
.card-media {
  border-radius: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}

.hero-visual {
  min-height: 400px;
  margin-bottom: 20px;
}

.glass-panel {
  min-height: 100%;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66)),
    radial-gradient(circle at 0 0, rgba(176, 94, 55, 0.16), transparent 34%);
}

.metric-label {
  margin: 0;
  color: var(--muted);
}

.metric-value {
  margin: 8px 0 28px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1;
}

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

.metric-grid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(30, 40, 48, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.metric-grid strong {
  display: block;
  font-size: 1.2rem;
}

.metric-grid span {
  color: var(--muted);
}

.hero-badge {
  display: none;
}

.hero-badge span {
  display: none;
}

.section {
  padding: 56px 0;
}

.section-tight {
  padding-top: 18px;
  padding-bottom: 18px;
}

.section-accent {
  position: relative;
}

.section-accent > .container {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 241, 233, 0.92)),
    radial-gradient(circle at top right, rgba(176, 94, 55, 0.1), rgba(176, 94, 55, 0) 32%),
    linear-gradient(135deg, rgba(176, 94, 55, 0.08), rgba(79, 102, 95, 0.08));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-accent > .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.section-accent > .container > * {
  position: relative;
  z-index: 1;
}

.repair-problems-section > .container {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(248, 242, 234, 0.94)),
    radial-gradient(circle at top right, rgba(176, 94, 55, 0.08), rgba(176, 94, 55, 0) 28%);
}

.repair-problems-section .section-heading {
  max-width: 860px;
}

.repair-problems-section .section-heading p {
  color: #4f5b64;
}

.repair-problems-section .feature-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 40, 48, 0.08);
  box-shadow: 0 18px 40px rgba(27, 35, 43, 0.08);
}

.repair-problems-section .feature-card p {
  color: #5a6670;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading p,
.split-copy p,
.page-summary p,
.contact-copy p {
  max-width: 62ch;
}

.contact-copy h1 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.cards-grid,
.stats-grid,
.faq-list,
.footer-grid {
  display: grid;
  gap: 18px;
}

.calc-layout,
.calc-grid {
  display: grid;
  gap: 18px;
}

.calc-layout {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.calc-card,
.calc-result-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 28px;
}

.calc-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calc-card label {
  display: grid;
  gap: 10px;
  font-weight: 600;
}

.calc-card select,
.calc-card input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(30, 40, 48, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.calc-card select:focus,
.calc-card input:focus {
  outline: 2px solid rgba(176, 94, 55, 0.22);
  border-color: rgba(176, 94, 55, 0.22);
}

.calc-checkbox {
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.calc-checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.calc-result-label,
.calc-result-note {
  margin: 0;
}

.calc-result-label {
  color: var(--muted);
}

.calc-result-value {
  margin: 12px 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.calc-result-value.is-updating {
  animation: resultPulse 0.55s ease;
}

.calc-result-note {
  color: var(--muted);
  line-height: 1.7;
}

.calc-points {
  margin-top: 22px;
}

.calc-actions {
  margin-bottom: 0;
}

.service-directions,
.benefits-grid,
.pricing-grid,
.projects-grid,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.seo-link-grid .feature-card {
  padding: 22px 22px 20px;
  border-radius: 22px;
  min-height: 0;
}

.seo-link-grid .feature-card::after {
  inset: auto -12% -26% auto;
  width: 32%;
  height: 32%;
  opacity: 0.58;
}

.seo-link-grid .feature-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.05rem, 1.35vw, 1.4rem);
  line-height: 1.2;
}

.seo-link-grid .feature-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.52;
  max-width: 34ch;
}

.feature-card,
.project-card,
.page-card,
.contact-card {
  border-radius: 26px;
  padding: 28px;
}

.feature-card,
.page-card,
.contact-card,
.timeline-item,
.check-list-card,
.faq-item,
.calc-card,
.calc-result-card,
.lead-form {
  transition:
    transform 0.38s ease,
    box-shadow 0.38s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.feature-card:hover,
.page-card:hover,
.contact-card:hover,
.timeline-item:hover,
.check-list-card:hover,
.faq-item:hover,
.calc-card:hover,
.calc-result-card:hover,
.lead-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(27, 35, 43, 0.14);
  border-color: rgba(176, 94, 55, 0.14);
}

.card-media {
  min-height: 220px;
  margin-bottom: 18px;
}

.visual-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
}

.band-photo {
  min-height: 240px;
  border-radius: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.band-photo::before,
.photo-panel::after,
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.14) 46%, rgba(255, 255, 255, 0) 62%);
  opacity: 0.5;
  pointer-events: none;
}

.band-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 24, 30, 0.04), rgba(18, 24, 30, 0.22));
  pointer-events: none;
}

.band-photo,
.photo-panel,
.photo-card,
.hero-visual,
.card-media {
  transition: transform 0.8s ease, filter 0.6s ease;
}

.visual-band:hover .band-photo,
.feature-card:hover .card-media,
.visual-card:hover .photo-panel,
.feature-split:hover .photo-card {
  transform: scale(1.02);
  filter: saturate(1.03) contrast(1.02);
}

.feature-link {
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.feature-link:hover {
  transform: translateY(-8px);
  border-color: rgba(176, 94, 55, 0.16);
  box-shadow: 0 30px 60px rgba(27, 35, 43, 0.16);
}

.seo-link-grid .feature-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(27, 35, 43, 0.12);
}

.feature-card h3,
.project-card h3,
.timeline-item h3,
.page-card h2,
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.split-copy {
  align-self: center;
}

.check-list-card {
  border-radius: 28px;
  padding: 30px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 22, 28, 0.18), rgba(16, 22, 28, 0.28) 36%, rgba(16, 22, 28, 0.82) 100%),
    linear-gradient(90deg, rgba(16, 22, 28, 0.46), rgba(16, 22, 28, 0.12) 44%, rgba(16, 22, 28, 0.1) 100%);
}

.photo-card .check-list {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.price-value {
  display: inline-block;
  margin-top: 18px;
  font-family: "Unbounded", sans-serif;
  font-size: 1.1rem;
}

.project-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(17, 24, 30, 0.06), rgba(17, 24, 30, 0.18) 36%, rgba(17, 24, 30, 0.84) 100%),
    linear-gradient(135deg, rgba(79, 102, 95, 0.1), rgba(176, 94, 55, 0.08));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.project-card h3,
.project-card p {
  color: #fffdf9;
  text-shadow: 0 2px 18px rgba(8, 12, 16, 0.3);
}

.project-card p {
  color: rgba(247, 244, 239, 0.88);
}

.project-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 34px 80px rgba(27, 35, 43, 0.18);
}

.project-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.photo-card .check-list li {
  color: #fffdf9;
  text-shadow: 0 2px 18px rgba(8, 12, 16, 0.3);
}

.photo-card .check-list li::before {
  background: linear-gradient(135deg, #d89464, #f0cfb6);
  box-shadow: 0 0 16px rgba(216, 148, 100, 0.28);
}

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

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #12181e;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 22, 28, 0.06), rgba(16, 22, 28, 0.18) 34%, rgba(16, 22, 28, 0.84) 100%),
    linear-gradient(90deg, rgba(16, 22, 28, 0.18), rgba(16, 22, 28, 0.04) 38%, rgba(16, 22, 28, 0.12) 100%);
  pointer-events: none;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
}

.video-card-content h3,
.video-card-content p {
  color: #fffdf9;
  text-shadow: 0 2px 18px rgba(8, 12, 16, 0.32);
}

.video-card-content h3 {
  margin: 0 0 8px;
}

.video-card-content p {
  margin: 0;
  color: rgba(247, 244, 239, 0.86);
}

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

.timeline-item {
  border-radius: 26px;
  padding: 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.timeline-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(27, 35, 43, 0.14);
}

.timeline-item span {
  display: inline-flex;
  padding: 8px 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(176, 94, 55, 0.08);
  color: var(--brand);
  font-family: "Unbounded", sans-serif;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.lead-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(30, 40, 48, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(176, 94, 55, 0.22);
  border-color: rgba(176, 94, 55, 0.22);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-success {
  color: var(--accent);
}

.form-status.is-error {
  color: var(--brand-dark);
}

.page-hero {
  padding: 54px 0 18px;
}

.page-summary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
    linear-gradient(135deg, rgba(176, 94, 55, 0.08), rgba(79, 102, 95, 0.12));
}

.page-summary,
.contact-copy {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at top right, rgba(176, 94, 55, 0.12), rgba(176, 94, 55, 0) 32%),
    linear-gradient(135deg, rgba(176, 94, 55, 0.08), rgba(79, 102, 95, 0.12));
}

.page-summary .hero-actions {
  margin-bottom: 0;
}

.visual-card {
  display: grid;
  gap: 16px;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  align-content: end;
  padding: 28px;
  border-radius: var(--radius-lg);
  background-color: #9da6a6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.photo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 28, 34, 0.16), rgba(20, 28, 34, 0.26) 28%, rgba(20, 28, 34, 0.82) 100%),
    linear-gradient(90deg, rgba(20, 28, 34, 0.62), rgba(20, 28, 34, 0.24) 46%, rgba(20, 28, 34, 0.1) 100%);
}

.photo-panel > * {
  position: relative;
  z-index: 1;
}

.photo-panel strong,
.photo-panel p,
.photo-panel h1,
.photo-panel h2,
.photo-panel .eyebrow,
.photo-panel li {
  color: #f7f4ef;
  text-shadow: 0 2px 18px rgba(8, 12, 16, 0.28);
}

.photo-panel .eyebrow {
  color: rgba(237, 246, 241, 0.82);
}

.photo-panel h1,
.photo-panel h2 {
  color: #fffdf9;
}

.photo-panel .stack-list li {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(14px);
}

.photo-panel .hero-points li {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
  backdrop-filter: blur(12px);
}

.works-hero .page-summary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 247, 241, 0.9)),
    radial-gradient(circle at top left, rgba(176, 94, 55, 0.08), rgba(176, 94, 55, 0) 32%);
}

.works-hero .page-summary .hero-actions .button {
  box-shadow: 0 16px 34px rgba(176, 94, 55, 0.24);
}

.works-hero .page-summary .hero-actions .button-secondary {
  background: #23313a;
  color: #f9f4ed;
  border-color: rgba(255, 255, 255, 0.12);
}

.case-format-panel {
  background-color: #6d7478;
}

.case-format-panel::before {
  background:
    linear-gradient(180deg, rgba(20, 28, 34, 0.1), rgba(20, 28, 34, 0.18) 22%, rgba(20, 28, 34, 0.78) 100%),
    linear-gradient(135deg, rgba(24, 33, 40, 0.76), rgba(37, 49, 58, 0.48) 48%, rgba(176, 94, 55, 0.18) 100%);
}

.case-format-panel strong {
  font-size: 1.35rem;
  color: #fffdf8;
}

.case-format-panel .stack-list {
  gap: 12px;
}

.case-format-panel .stack-list li {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

[data-parallax] {
  will-change: transform;
}

body.is-transitioning .page-shell {
  pointer-events: none;
}

.word-line {
  display: inline-flex;
  flex-wrap: wrap;
  overflow: hidden;
  vertical-align: top;
}

.word-unit {
  display: inline-block;
  will-change: transform, opacity;
}

.visual-card strong {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.18;
  max-width: 18ch;
  text-wrap: balance;
}

.stack-list {
  display: grid;
  gap: 12px;
}

.page-grid {
  align-items: start;
}

.page-card ul {
  margin: 0;
  padding-left: 18px;
}

.stats-grid .feature-card {
  text-align: center;
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Unbounded", sans-serif;
  font-size: 1.4rem;
}

.faq-list {
  grid-template-columns: 1fr;
}

.faq-item {
  padding: 0 22px;
  border-radius: 22px;
}

.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  transition: color 0.26s ease;
}

.faq-item[open] summary,
.faq-item:hover summary {
  color: var(--brand-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 0 22px;
}

.contact-layout {
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-card a {
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contact-actions .button {
  min-height: 44px;
  padding: 0 18px;
}

.contact-button-whatsapp {
  background: linear-gradient(135deg, #2fb364, #229551);
  color: #fff;
}

.contact-button-telegram {
  background: linear-gradient(135deg, #2a8fdc, #1975bd);
  color: #fff;
}

.mobile-quick-actions {
  position: fixed;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(250, 247, 242, 0.92);
  border: 1px solid rgba(30, 40, 48, 0.08);
  box-shadow: 0 24px 50px rgba(27, 35, 43, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-quick-actions .button {
  min-height: 52px;
  min-width: 0;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.96rem;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
  font-weight: 800;
  color: #fff !important;
  text-shadow: 0 1px 10px rgba(8, 12, 16, 0.18);
  box-shadow: 0 14px 28px rgba(27, 35, 43, 0.12);
}

.mobile-quick-actions .quick-action-call {
  background: linear-gradient(135deg, #243039, #31414b);
  color: #fff;
}

.mobile-quick-actions .quick-action-request {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
}

.mobile-quick-actions .quick-action-whatsapp {
  background: linear-gradient(135deg, #2fb364, #229551);
  color: #fff;
}

.mobile-quick-actions .quick-action-telegram {
  background: linear-gradient(135deg, #2a8fdc, #1975bd);
  color: #fff;
}

.image-living-room {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.2)),
    url("assets/photos/web/client/white-window-evening.jpg");
}

.image-windows-interior {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.22)),
    url("assets/photos/web/client/kitchen-window-finished.jpg");
}

.image-balcony-glass {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.2)),
    url("assets/photos/web/balcony-building.jpg");
}

.image-install-team {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.3)),
    url("assets/photos/web/installation.jpg");
}

.image-house-exterior {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.22)),
    url("assets/photos/web/house.jpg");
}

.image-house-dusk {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.28)),
    url("assets/photos/web/house-dusk.jpg");
}

.image-apartment-balconies {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.1), rgba(20, 25, 31, 0.24)),
    url("assets/photos/web/apartment-balconies.jpg");
}

.image-living-room-alt {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.22)),
    url("assets/photos/web/client/double-window-night.jpg");
}

.image-interior-installation {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.1), rgba(20, 25, 31, 0.3)),
    url("assets/photos/web/client/window-sill-insulation.jpg");
}

.image-apartment-window {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.22)),
    url("assets/photos/web/client/balcony-block-room.jpg");
}

.image-client-balcony-block {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.22)),
    url("assets/photos/web/client/balcony-block-room.jpg");
}

.image-client-kitchen-window {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.22)),
    url("assets/photos/web/client/kitchen-window-finished.jpg");
}

.image-client-seam-detail {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.12), rgba(20, 25, 31, 0.34)),
    url("assets/photos/web/client/mounting-seam-detail.jpg");
}

.image-client-white-window {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.24)),
    url("assets/photos/web/client/white-window-evening.jpg");
}

.image-client-double-window {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.3)),
    url("assets/photos/web/client/double-window-night.jpg");
}

.image-client-insulation {
  background-image:
    linear-gradient(180deg, rgba(20, 25, 31, 0.08), rgba(20, 25, 31, 0.28)),
    url("assets/photos/web/client/window-sill-insulation.jpg");
}

.contact-card strong {
  font-size: 1rem;
}

.site-footer {
  padding: 28px 0 42px;
}

.site-footer .footer-grid {
  padding-top: 24px;
  border-top: 1px solid rgba(30, 40, 48, 0.08);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: start;
}

.footer-grid strong {
  display: block;
  margin-bottom: 14px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 10px;
}

.footer-grid a {
  transition: color 0.26s ease, transform 0.26s ease;
}

.footer-grid a:hover,
.footer-grid a.is-current {
  color: var(--brand-dark);
  transform: translateX(2px);
}

@keyframes ambientFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-4%, 6%, 0) scale(1.08);
  }
}

@keyframes ambientFloatReverse {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(5%, -4%, 0) scale(1.06);
  }
}

@keyframes resultPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.78;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body::before,
  body::after {
    animation: none;
  }

  .button,
  .feature-link,
  .project-card,
  .timeline-item,
  .feature-card,
  .page-card,
  .contact-card,
  .band-photo,
  .photo-panel,
  .photo-card {
    transition: none;
  }

  .page-transition {
    display: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-section,
  .contact-grid,
  .contact-layout,
  .page-grid,
  .feature-split,
  .timeline,
  .service-directions,
  .benefits-grid,
  .calc-layout,
  .calc-grid,
  .pricing-grid,
  .projects-grid,
  .video-grid,
  .visual-band,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy,
  .hero-card,
  .page-summary,
  .visual-card {
    grid-column: 1 / -1;
  }

  .project-card,
  .photo-card,
  .photo-panel,
  .video-card {
    min-height: 340px;
  }
}

@media (max-width: 820px) {
  body {
    background-attachment: scroll;
    padding-bottom: calc(154px + env(safe-area-inset-bottom));
  }

  body::before,
  body::after {
    opacity: 0.54;
    filter: blur(12px);
  }

  .mobile-quick-actions {
    display: grid;
  }

  .menu-toggle {
    display: block;
  }

  .header-row {
    gap: 12px;
    padding: 14px 0;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 12px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 253, 250, 0.98);
    border: 1px solid rgba(30, 40, 48, 0.06);
    box-shadow: var(--shadow);
    max-height: min(70vh, calc(100vh - 96px));
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 4px;
  }

  .site-nav a:not(.button)::after {
    bottom: -2px;
  }

  .site-nav .button {
    width: 100%;
  }

  .hero,
  .page-hero {
    padding-top: 36px;
  }

  .hero-copy,
  .hero-card,
  .contact-copy,
  .page-summary,
  .visual-card {
    padding: 24px;
  }

  .page-summary p,
  .page-card p,
  .contact-copy p,
  .feature-card p,
  .contact-card p,
  .lead-form p {
    max-width: none;
  }

  .hero-grid,
  .split-section,
  .contact-grid,
  .contact-layout,
  .page-grid,
  .feature-split,
  .timeline,
  .service-directions,
  .benefits-grid,
  .calc-layout,
  .calc-grid,
  .pricing-grid,
  .projects-grid,
  .video-grid,
  .visual-band,
  .stats-grid,
  .footer-grid,
  .hero-points,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .seo-link-grid .feature-card p {
    max-width: none;
  }

  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-summary h1,
  .contact-copy h1 {
    font-size: clamp(1.9rem, 7vw, 2.9rem);
    line-height: 1.04;
  }

  .section-heading h2,
  .contact-copy h2,
  .page-card h2 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .page-summary h1,
  .contact-copy h1,
  .contact-copy h2 {
    max-width: none;
  }

  .section-heading,
  .hero-actions {
    margin-bottom: 22px;
  }

  .feature-card,
  .project-card,
  .page-card,
  .contact-card,
  .lead-form,
  .faq-item,
  .timeline-item,
  .check-list-card,
  .calc-card,
  .calc-result-card {
    padding: 22px;
  }

  .hero-card,
  .project-card,
  .photo-card,
  .photo-panel,
  .video-card {
    min-height: 300px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-card p {
    margin: 0;
  }

  .hero-points li,
  .stack-list li {
    line-height: 1.4;
  }

  .hero-visual,
  .card-media {
    min-height: 220px;
  }

  .photo-card .check-list,
  .video-card-content {
    padding: 20px;
  }

  .breadcrumb-row {
    gap: 8px;
    min-height: 0;
    font-size: 0.86rem;
  }

  .metric-value {
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .metric-grid div {
    padding: 16px;
  }

  .page-transition__panel {
    width: 52%;
  }

  .page-transition__label span {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .page-transition__label strong {
    font-size: 0.86rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  body::before,
  body::after {
    display: none;
  }

  .header-row {
    padding: 12px 0;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 0.88rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .site-nav {
    left: 10px;
    right: 10px;
    padding: 14px;
    border-radius: 20px;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .contact-actions {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section {
    padding: 40px 0;
  }

  .section-accent > .container {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .hero h1,
  .page-summary h1,
  .contact-copy h1,
  .contact-copy h2 {
    font-size: clamp(1.68rem, 9vw, 2.26rem);
    letter-spacing: -0.045em;
  }

  .section-heading h2,
  .page-card h2 {
    font-size: clamp(1.48rem, 8vw, 2rem);
  }

  .hero-copy,
  .hero-card,
  .contact-copy,
  .page-summary,
  .visual-card,
  .feature-card,
  .project-card,
  .page-card,
  .contact-card,
  .lead-form,
  .faq-item,
  .timeline-item,
  .check-list-card,
  .calc-card,
  .calc-result-card {
    padding: 18px;
  }

  .feature-card,
  .project-card,
  .page-card,
  .contact-card,
  .lead-form,
  .faq-item,
  .timeline-item,
  .check-list-card,
  .hero-copy,
  .hero-card,
  .contact-copy,
  .page-summary,
  .visual-card {
    border-radius: 22px;
  }

  .hero-visual,
  .card-media,
  .hero-card,
  .project-card,
  .photo-card,
  .photo-panel,
  .video-card {
    min-height: 240px;
  }

  .stack-list li,
  .hero-points li {
    padding: 14px;
    border-radius: 16px;
    font-size: 0.96rem;
  }

  .check-list li {
    padding-left: 24px;
    font-size: 0.98rem;
  }

  .faq-item {
    padding: 0 18px;
  }

  .faq-item summary {
    padding: 18px 0;
    font-size: 1rem;
  }

  .faq-item p {
    padding-bottom: 18px;
  }

  .lead-form input,
  .lead-form textarea,
  .calc-card select,
  .calc-card input {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .mobile-quick-actions {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
  }

  .mobile-quick-actions .button {
    min-height: 48px;
    padding: 0 10px;
    font-size: 0.88rem;
    line-height: 1.15;
    white-space: normal;
  }

  .contact-copy,
  .page-summary,
  .visual-card,
  .lead-form {
    scroll-margin-top: 88px;
  }
}
