 :root {
   --bg: #f5f2ec;
   --bg-alt: #ece7de;
   --surface: #ffffff;
   --surface-soft: #f8f5ef;
   --text: #181d22;
   --text-muted: #5d6670;
   --text-soft: #78828d;
   --line: #d7d0c5;
   --line-strong: #c8bfb0;
   --accent: #8c7458;
   --accent-strong: #6e593f;
   --dark: #12161a;
   --dark-soft: #1d242b;
   --success: #3e5d4d;
   --shadow-sm: 0 18px 36px rgba(18, 22, 26, 0.06);
   --shadow-md: 0 28px 60px rgba(18, 22, 26, 0.1);
   --radius-sm: 0.9rem;
   --radius-md: 1.25rem;
   --radius-lg: 1.75rem;
   --wrapper: min(1160px, calc(100vw - 2rem));
   --section-space: clamp(4rem, 6vw, 7rem);
   --banner-height: 2.5rem;
   --header-height: 5.25rem;
   --sticky-offset: calc(var(--banner-height) + var(--header-height) + 1rem);
   --font-body: "Manrope", "Segoe UI", sans-serif;
   --font-display: "Fraunces", Georgia, serif;
 }

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

 html {
   scroll-behavior: smooth;
   scroll-padding-top: var(--sticky-offset);
 }

 body {
   margin: 0;
   font-family: var(--font-body);
   color: var(--text);
   background: linear-gradient(180deg, #faf8f4 0%, var(--bg) 100%);
   line-height: 1.6;
   padding-top: calc(var(--banner-height) + var(--header-height));
 }

 body.nav-open {
   overflow: hidden;
 }

 img {
   max-width: 100%;
   display: block;
 }

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

 button,
 input,
 select,
 textarea {
   font: inherit;
 }

 button {
   cursor: pointer;
 }

 main {
   display: block;
 }

 .wrapper {
   width: var(--wrapper);
   margin: 0 auto;
 }

 .demo-banner {
   position: fixed;
   inset: 0 0 auto;
   height: var(--banner-height);
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.4rem;
   padding: 0 1rem;
   background: #1c232a;
   color: rgba(255, 255, 255, 0.82);
   border-bottom: 1px solid rgba(255, 255, 255, 0.12);
   font-size: 0.82rem;
   letter-spacing: 0.01em;
   z-index: 120;
 }

 .demo-banner a {
   color: #d7c0a2;
 }

 .site-header {
   position: fixed;
   inset: var(--banner-height) 0 auto;
   z-index: 110;
   backdrop-filter: blur(16px);
   background: rgba(245, 242, 236, 0.86);
   border-bottom: 1px solid rgba(200, 191, 176, 0.8);
   transition: box-shadow 180ms ease, background 180ms ease;
 }

 .site-header.is-scrolled {
   background: rgba(248, 245, 239, 0.94);
   box-shadow: 0 14px 32px rgba(18, 22, 26, 0.08);
 }

 .header-inner {
   min-height: var(--header-height);
   display: grid;
   grid-template-columns: auto 1fr auto;
   gap: 1.5rem;
   align-items: center;
 }

 .brand {
   display: inline-flex;
   align-items: center;
   gap: 0.95rem;
   min-width: 0;
 }

 .brand__mark {
   width: 3.85rem;
   height: 3.85rem;
   border-radius: 50%;
   box-shadow: 0 8px 22px rgba(18, 22, 26, 0.08);
 }

 .brand__text {
   display: grid;
   gap: 0.12rem;
 }

 .brand__name {
   font-size: 1.02rem;
   font-weight: 800;
   letter-spacing: 0.01em;
 }

 .brand__tag {
   font-size: 0.78rem;
   color: var(--text-soft);
 }

 .desktop-nav {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 0.35rem;
 }

 .nav-link,
 .nav-group > a,
 .nav-toggle-label {
   position: relative;
   display: inline-flex;
   align-items: center;
   gap: 0.35rem;
   padding: 0.65rem 0.85rem;
   border-radius: 999px;
   color: var(--text-muted);
   font-size: 0.94rem;
   font-weight: 600;
   transition: color 180ms ease, background 180ms ease;
 }

 .nav-link:hover,
 .nav-group:hover > a,
 .nav-group:focus-within > a,
 .nav-link[aria-current="page"],
 .nav-group > a[aria-current="page"] {
   color: var(--text);
   background: rgba(140, 116, 88, 0.08);
 }

 .nav-group {
   position: relative;
 }

 .nav-dropdown {
   position: absolute;
   top: calc(100% + 0.6rem);
   left: 0;
   min-width: 15rem;
   padding: 0.65rem;
   display: grid;
   gap: 0.3rem;
   background: rgba(255, 255, 255, 0.96);
   border: 1px solid rgba(200, 191, 176, 0.9);
   border-radius: 1rem;
   box-shadow: var(--shadow-sm);
   opacity: 0;
   pointer-events: none;
   transform: translateY(0.5rem);
   transition: opacity 180ms ease, transform 180ms ease;
 }

 .nav-group:hover .nav-dropdown,
 .nav-group:focus-within .nav-dropdown {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
 }

 .nav-dropdown a {
   display: block;
   padding: 0.75rem 0.85rem;
   border-radius: 0.85rem;
   color: var(--text-muted);
   font-size: 0.92rem;
   font-weight: 600;
 }

 .nav-dropdown a:hover,
 .nav-dropdown a[aria-current="page"] {
   background: var(--surface-soft);
   color: var(--text);
 }

 .header-actions {
   display: flex;
   align-items: center;
   gap: 0.85rem;
 }

 .phone-link {
   font-size: 0.92rem;
   font-weight: 700;
   color: var(--text);
 }

 .menu-toggle {
   display: none;
   width: 2.9rem;
   height: 2.9rem;
   border: 1px solid var(--line);
   background: rgba(255, 255, 255, 0.72);
   border-radius: 999px;
   color: var(--text);
   align-items: center;
   justify-content: center;
   padding: 0;
 }

 .menu-toggle svg {
   width: 1.15rem;
   height: 1.15rem;
 }

 .mobile-nav {
   display: none;
   border-top: 1px solid rgba(200, 191, 176, 0.9);
   background: rgba(248, 245, 239, 0.98);
 }

 .mobile-nav nav {
   padding: 1rem 0 1.25rem;
   display: grid;
   gap: 0.85rem;
 }

 .mobile-nav a,
 .mobile-nav span {
   display: block;
   padding: 0.35rem 0;
 }

 .mobile-nav a {
   color: var(--text);
   font-weight: 700;
 }

 .mobile-nav .mobile-subnav {
   padding-left: 0.95rem;
   border-left: 1px solid var(--line);
   display: grid;
   gap: 0.25rem;
 }

 .mobile-nav .mobile-subnav a {
   font-size: 0.95rem;
   font-weight: 600;
   color: var(--text-muted);
 }

 .button-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.9rem;
   align-items: center;
 }

 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   min-height: 3rem;
   padding: 0.8rem 1.35rem;
   border-radius: 999px;
   font-weight: 700;
   font-size: 0.95rem;
   letter-spacing: 0.01em;
   transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
 }

 .button:hover {
   transform: translateY(-1px);
 }

 .button--primary {
   background: var(--dark);
   color: #fff;
   border: 1px solid var(--dark);
 }

 .button--primary:hover {
   background: #232a31;
   border-color: #232a31;
 }

 .button--secondary {
   background: transparent;
   color: var(--text);
   border: 1px solid var(--line-strong);
 }

 .button--secondary:hover {
   background: rgba(140, 116, 88, 0.08);
   border-color: var(--accent);
 }

 .button--ghost {
   background: rgba(140, 116, 88, 0.1);
   color: var(--accent-strong);
   border: 1px solid rgba(140, 116, 88, 0.18);
 }

 .button--sm {
   min-height: 2.7rem;
   padding-inline: 1.05rem;
   font-size: 0.9rem;
 }

 .hero {
   position: relative;
   overflow: hidden;
   padding: clamp(4.75rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
 }

 .hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background:
     radial-gradient(circle at top right, rgba(140, 116, 88, 0.14), transparent 34%),
     radial-gradient(circle at left 14%, rgba(18, 22, 26, 0.05), transparent 26%),
     linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0));
   pointer-events: none;
 }

 .hero--dark {
   background: linear-gradient(180deg, #1a1f24 0%, #12161a 100%);
   color: #fff;
 }

 .hero--dark::before {
   background:
     radial-gradient(circle at top right, rgba(215, 192, 162, 0.14), transparent 30%),
     radial-gradient(circle at left 30%, rgba(255, 255, 255, 0.08), transparent 22%);
 }

 .hero__grid {
   position: relative;
   display: grid;
   grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.8fr);
   gap: 2rem;
   align-items: end;
 }

 .hero__content {
   position: relative;
   z-index: 1;
   max-width: 46rem;
 }

 .hero__kicker,
 .section-kicker {
   display: inline-flex;
   align-items: center;
   gap: 0.6rem;
   margin: 0 0 1.2rem;
   color: var(--accent-strong);
   font-size: 0.88rem;
   font-weight: 800;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }

 .hero--dark .hero__kicker {
   color: #dbc9b4;
 }

 .hero__kicker::before,
 .section-kicker::before {
   content: "";
   width: 2.5rem;
   height: 1px;
   background: currentColor;
   opacity: 0.7;
 }

 h1,
 h2,
 h3,
 h4 {
   margin: 0;
   line-height: 1.08;
   letter-spacing: -0.03em;
 }

 h1 {
   font-size: clamp(2.8rem, 6vw, 4.9rem);
   max-width: 12ch;
 }

 h2 {
   font-size: clamp(2rem, 4vw, 3rem);
   max-width: 16ch;
 }

 h3 {
   font-size: 1.3rem;
 }

 .hero__lead,
 .section-lead {
   margin: 1.3rem 0 0;
   font-size: clamp(1.05rem, 2vw, 1.2rem);
   color: var(--text-muted);
   max-width: 42rem;
 }

 .hero--dark .hero__lead {
   color: rgba(255, 255, 255, 0.76);
 }

 .hero__actions {
   margin-top: 2rem;
 }

 .hero__meta {
   margin: 2rem 0 0;
   display: flex;
   flex-wrap: wrap;
   gap: 0.8rem;
 }

 .meta-pill {
   padding: 0.75rem 1rem;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.72);
   border: 1px solid rgba(200, 191, 176, 0.72);
   color: var(--text-muted);
   font-size: 0.9rem;
   font-weight: 700;
 }

 .hero--dark .meta-pill {
   background: rgba(255, 255, 255, 0.08);
   border-color: rgba(255, 255, 255, 0.14);
   color: rgba(255, 255, 255, 0.86);
 }

 .hero-panel {
   position: relative;
   z-index: 1;
   padding: 1.75rem;
   background: rgba(255, 255, 255, 0.78);
   border: 1px solid rgba(200, 191, 176, 0.8);
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-md);
 }

 .hero-panel h2,
 .hero-panel h3 {
   font-size: 1.3rem;
   max-width: none;
 }

 .hero-panel p,
 .hero-panel li {
   color: var(--text-muted);
 }

 .hero-panel ul {
   margin: 1rem 0 0;
   padding: 0;
   list-style: none;
   display: grid;
   gap: 0.75rem;
 }

 .hero-panel li {
   display: flex;
   gap: 0.7rem;
   align-items: flex-start;
 }

 .hero-panel li::before {
   content: "";
   width: 0.55rem;
   height: 0.55rem;
   border-radius: 50%;
   background: var(--accent);
   margin-top: 0.5rem;
   flex: 0 0 auto;
 }

 .hero-mark {
   position: absolute;
   right: -2rem;
   bottom: -4rem;
   width: min(26rem, 38vw);
   opacity: 0.06;
   pointer-events: none;
 }

 .hero--dark .hero-mark {
   opacity: 0.08;
   filter: brightness(2.4);
 }

 .section {
   padding: var(--section-space) 0;
 }

 .section--soft {
   background: linear-gradient(180deg, rgba(236, 231, 222, 0.72), rgba(236, 231, 222, 0.4));
 }

 .section--dark {
   background: linear-gradient(180deg, #1b2026 0%, #11161a 100%);
   color: #fff;
 }

 .section--dark p,
 .section--dark li {
   color: rgba(255, 255, 255, 0.78);
 }

 .section--dark .section-kicker {
   color: #dbc9b4;
 }

 .section--dark .cta-band {
   background: rgba(255, 255, 255, 0.06);
   border-color: rgba(255, 255, 255, 0.12);
   box-shadow: none;
 }

 .section--dark .button--primary {
   background: #f5f2ec;
   color: var(--text);
   border-color: #f5f2ec;
 }

 .section--dark .button--primary:hover {
   background: #e9e2d8;
   border-color: #e9e2d8;
 }

 .section--dark .button--secondary {
   color: #fff;
   border-color: rgba(255, 255, 255, 0.22);
 }

 .section--dark .button--secondary:hover {
   color: #fff;
   background: rgba(255, 255, 255, 0.08);
   border-color: rgba(255, 255, 255, 0.3);
 }

 .section-header {
   display: grid;
   gap: 1rem;
   margin-bottom: 2.3rem;
 }

 .section-header--center {
   text-align: center;
   justify-items: center;
 }

 .stat-band {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 1rem;
   margin-top: -1.2rem;
   position: relative;
   z-index: 2;
 }

 .stat-card {
   padding: 1.35rem 1.25rem;
   background: rgba(255, 255, 255, 0.88);
   border: 1px solid rgba(200, 191, 176, 0.84);
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm);
 }

 .stat-card strong {
   display: block;
   font-size: 1.3rem;
   letter-spacing: -0.03em;
 }

 .stat-card span {
   color: var(--text-muted);
   font-size: 0.92rem;
   font-weight: 600;
 }

 .grid-2,
 .grid-3,
 .grid-4 {
   display: grid;
   gap: 1.25rem;
 }

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

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

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

 .surface-card {
   padding: 1.5rem;
   background: rgba(255, 255, 255, 0.8);
   border: 1px solid rgba(200, 191, 176, 0.82);
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm);
 }

 .surface-card--soft {
   background: rgba(248, 245, 239, 0.9);
 }

 .surface-card--dark {
   background: rgba(255, 255, 255, 0.07);
   border-color: rgba(255, 255, 255, 0.12);
   box-shadow: none;
 }

 .surface-card--dark h3 {
   color: #fff;
 }

 .card-tag {
   display: inline-flex;
   align-items: center;
   padding: 0.38rem 0.7rem;
   border-radius: 999px;
   background: rgba(140, 116, 88, 0.12);
   color: var(--accent-strong);
   font-size: 0.8rem;
   font-weight: 800;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   margin-bottom: 1rem;
 }

 .service-card {
   display: grid;
   gap: 0.95rem;
   min-height: 100%;
 }

 .service-card p {
   margin: 0;
   color: var(--text-muted);
 }

 .service-card .inline-link {
   margin-top: auto;
 }

 .inline-link {
   display: inline-flex;
   align-items: center;
   gap: 0.45rem;
   color: var(--accent-strong);
   font-weight: 800;
   font-size: 0.94rem;
 }

 .inline-link::after {
   content: "\2192";
 }

 .service-split {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 1.25rem;
 }

 .service-panel {
   padding: 1.8rem;
   border-radius: var(--radius-lg);
   border: 1px solid rgba(200, 191, 176, 0.84);
   background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 239, 0.92));
   box-shadow: var(--shadow-sm);
 }

 .service-panel h3 {
   margin-bottom: 0.85rem;
 }

 .service-panel p {
   margin: 0;
   color: var(--text-muted);
 }

 .service-panel ul,
 .check-list {
   margin: 1.2rem 0 0;
   padding: 0;
   list-style: none;
   display: grid;
   gap: 0.72rem;
 }

 .service-panel li,
 .check-list li {
   display: flex;
   gap: 0.75rem;
   color: var(--text-muted);
 }

 .service-panel li::before,
 .check-list li::before {
   content: "";
   width: 0.58rem;
   height: 0.58rem;
   flex: 0 0 auto;
   border-radius: 50%;
   background: var(--accent);
   margin-top: 0.45rem;
 }

 .trust-grid .surface-card,
 .testimonial-card,
 .project-card,
 .process-card,
 .value-card {
   min-height: 100%;
 }

 .trust-grid h3,
 .testimonial-card h3,
 .process-card h3,
 .value-card h3 {
   margin-bottom: 0.55rem;
 }

 .testimonial-card {
   display: grid;
   gap: 1rem;
 }

 .testimonial-card blockquote {
   margin: 0;
   color: var(--text-muted);
 }

 .testimonial-card footer {
   color: var(--text);
   font-weight: 800;
   font-size: 0.92rem;
 }

 .project-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 1.1rem;
 }

 .project-card {
   position: relative;
   overflow: hidden;
   padding: 1.45rem;
   min-height: 15rem;
   border-radius: var(--radius-lg);
   background:
     linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(242, 238, 231, 0.88)),
     var(--surface);
   border: 1px solid rgba(200, 191, 176, 0.84);
   box-shadow: var(--shadow-sm);
   display: grid;
   align-content: end;
   gap: 0.75rem;
 }

 .project-card::before {
   content: "";
   position: absolute;
   inset: 0;
   background:
     radial-gradient(circle at top right, rgba(140, 116, 88, 0.18), transparent 34%),
     linear-gradient(135deg, transparent 48%, rgba(18, 22, 26, 0.04) 49%, transparent 52%);
   pointer-events: none;
 }

 .project-card__category {
   position: absolute;
   top: 1rem;
   left: 1rem;
   z-index: 1;
   padding: 0.38rem 0.7rem;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.88);
   border: 1px solid rgba(200, 191, 176, 0.84);
   color: var(--accent-strong);
   font-size: 0.72rem;
   font-weight: 800;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }

 .project-card h3,
 .project-card p {
   position: relative;
   z-index: 1;
 }

 .project-card p {
   margin: 0;
   color: var(--text-muted);
 }

 .project-card[data-category="roofing"] .project-card__category {
   color: var(--success);
 }

 .process-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 1rem;
 }

 .process-card {
   padding: 1.45rem;
   border-radius: var(--radius-md);
   background: rgba(255, 255, 255, 0.82);
   border: 1px solid rgba(200, 191, 176, 0.84);
   box-shadow: var(--shadow-sm);
 }

 .process-card__step {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 2.25rem;
   height: 2.25rem;
   margin-bottom: 1rem;
   border-radius: 50%;
   background: rgba(140, 116, 88, 0.12);
   color: var(--accent-strong);
   font-size: 0.9rem;
   font-weight: 800;
 }

 .quote-block {
   padding: clamp(1.8rem, 4vw, 2.6rem);
   border-left: 2px solid rgba(140, 116, 88, 0.44);
   background: rgba(255, 255, 255, 0.68);
   border-radius: 0 var(--radius-md) var(--radius-md) 0;
 }

 .quote-block p {
   margin: 0;
   font-family: var(--font-display);
   font-size: clamp(1.7rem, 3vw, 2.5rem);
   line-height: 1.2;
 }

 .value-card p,
 .surface-card p,
 .process-card p {
   margin: 0;
   color: var(--text-muted);
 }

 .coverage-box,
 .cta-band {
   padding: clamp(1.8rem, 3vw, 2.2rem);
   border-radius: var(--radius-lg);
   border: 1px solid rgba(200, 191, 176, 0.84);
   background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 245, 239, 0.9));
   box-shadow: var(--shadow-sm);
 }

 .cta-band {
   display: grid;
   grid-template-columns: minmax(0, 1fr) auto;
   gap: 1.5rem;
   align-items: center;
 }

 .cta-band h2 {
   max-width: 12ch;
 }

 .anchor-nav {
   position: sticky;
   top: calc(var(--banner-height) + var(--header-height));
   z-index: 90;
   background: rgba(248, 245, 239, 0.94);
   backdrop-filter: blur(14px);
   border-block: 1px solid rgba(200, 191, 176, 0.82);
 }

 .anchor-nav__inner {
   display: flex;
   gap: 0.65rem;
   padding: 0.85rem 0;
   overflow-x: auto;
   scrollbar-width: none;
 }

 .anchor-nav__inner::-webkit-scrollbar {
   display: none;
 }

 .anchor-nav a {
   white-space: nowrap;
   padding: 0.72rem 0.95rem;
   border-radius: 999px;
   color: var(--text-muted);
   background: rgba(255, 255, 255, 0.78);
   border: 1px solid rgba(200, 191, 176, 0.78);
   font-size: 0.88rem;
   font-weight: 700;
 }

 .anchor-nav a:hover {
   color: var(--text);
   border-color: rgba(140, 116, 88, 0.4);
 }

 .detail-section {
   scroll-margin-top: calc(var(--sticky-offset) + 2rem);
 }

 .detail-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.85fr);
   gap: 1.75rem;
   align-items: center;
 }

 .detail-grid--reverse {
   grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.1fr);
 }

 .detail-copy {
   display: grid;
   gap: 1rem;
 }

 .detail-copy p {
   margin: 0;
   color: var(--text-muted);
 }

 .detail-panel {
   padding: 1.7rem;
   min-height: 18rem;
   border-radius: var(--radius-lg);
   border: 1px solid rgba(200, 191, 176, 0.84);
   background:
     radial-gradient(circle at top right, rgba(140, 116, 88, 0.16), transparent 30%),
     linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(242, 238, 231, 0.92));
   box-shadow: var(--shadow-sm);
   display: grid;
   align-content: end;
 }

 .detail-panel p {
   margin: 0;
   color: var(--text-muted);
 }

 .gallery-controls {
   display: flex;
   flex-wrap: wrap;
   gap: 0.7rem;
   margin-bottom: 1.3rem;
 }

 .filter-button {
   padding: 0.7rem 1rem;
   border-radius: 999px;
   border: 1px solid rgba(200, 191, 176, 0.84);
   background: rgba(255, 255, 255, 0.8);
   color: var(--text-muted);
   font-size: 0.9rem;
   font-weight: 800;
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }

 .filter-button.is-active,
 .filter-button:hover {
   color: var(--text);
   border-color: rgba(140, 116, 88, 0.4);
   background: rgba(140, 116, 88, 0.08);
 }

 .project-card.is-hidden {
   display: none;
 }

 .story-grid,
 .contact-layout {
   display: grid;
   grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.85fr);
   gap: 1.5rem;
 }

 .story-grid p,
 .contact-panel p,
 .contact-panel li {
   color: var(--text-muted);
 }

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

 .contact-panel {
   padding: 1.7rem;
   border-radius: var(--radius-lg);
   border: 1px solid rgba(200, 191, 176, 0.84);
   background: rgba(255, 255, 255, 0.85);
   box-shadow: var(--shadow-sm);
 }

 .contact-panel h3 {
   margin-bottom: 0.6rem;
 }

 .contact-panel + .contact-panel {
   margin-top: 1rem;
 }

 .contact-list,
 .meta-list {
   margin: 0;
   padding: 0;
   list-style: none;
   display: grid;
   gap: 0.75rem;
 }

 .contact-list li,
 .meta-list li {
   display: flex;
   justify-content: space-between;
   gap: 0.75rem;
   padding-bottom: 0.75rem;
   border-bottom: 1px solid rgba(200, 191, 176, 0.5);
 }

 .contact-list li:last-child,
 .meta-list li:last-child {
   padding-bottom: 0;
   border-bottom: 0;
 }

 .contact-list strong,
 .meta-list strong {
   color: var(--text);
 }

 .contact-list span,
 .meta-list span {
   color: var(--text-muted);
   text-align: right;
 }

 .form-card {
   padding: clamp(1.5rem, 3vw, 2rem);
   border-radius: var(--radius-lg);
   border: 1px solid rgba(200, 191, 176, 0.84);
   background: rgba(255, 255, 255, 0.88);
   box-shadow: var(--shadow-md);
 }

 .form-card h2 {
   max-width: none;
 }

 .form-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 1rem;
   margin-top: 1.5rem;
 }

 .field {
   display: grid;
   gap: 0.45rem;
 }

 .field--full {
   grid-column: 1 / -1;
 }

 .field label {
   font-size: 0.9rem;
   font-weight: 800;
   color: var(--text);
 }

 .field input,
 .field select,
 .field textarea {
   width: 100%;
   border-radius: 0.95rem;
   border: 1px solid var(--line);
   background: var(--surface-soft);
   color: var(--text);
   padding: 0.88rem 1rem;
   outline: none;
   transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
 }

 .field input:focus,
 .field select:focus,
 .field textarea:focus {
   border-color: rgba(140, 116, 88, 0.52);
   box-shadow: 0 0 0 4px rgba(140, 116, 88, 0.12);
   background: #fff;
 }

 .field textarea {
   min-height: 11rem;
   resize: vertical;
 }

 .field-note {
   margin-top: 1rem;
   font-size: 0.88rem;
   color: var(--text-soft);
 }

 .map-frame {
   width: 100%;
   height: 22rem;
   border: 0;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-sm);
 }

 .site-footer {
   background: linear-gradient(180deg, #171c21 0%, #101418 100%);
   color: rgba(255, 255, 255, 0.82);
   padding-top: 3rem;
 }

 .footer-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.75fr)) minmax(0, 1fr);
   gap: 1.4rem;
   padding-bottom: 2rem;
 }

 .footer-brand {
   display: grid;
   gap: 1rem;
 }

 .footer-brand__row {
   display: inline-flex;
   align-items: center;
   gap: 1rem;
 }

 .footer-brand__mark {
   width: 4.4rem;
   height: 4.4rem;
   border-radius: 50%;
 }

 .footer-brand__name {
   display: grid;
   gap: 0.2rem;
 }

 .footer-brand__name strong {
   color: #fff;
   font-size: 1.05rem;
   font-weight: 800;
 }

 .footer-brand__name span,
 .footer-brand p {
   color: rgba(255, 255, 255, 0.66);
 }

 .footer-group h3 {
   margin-bottom: 0.9rem;
   font-size: 1rem;
   color: #fff;
 }

 .footer-group ul {
   margin: 0;
   padding: 0;
   list-style: none;
   display: grid;
   gap: 0.55rem;
 }

 .footer-group a {
   color: rgba(255, 255, 255, 0.7);
   font-weight: 600;
 }

 .footer-group a:hover {
   color: #fff;
 }

 .footer-meta {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding: 1rem 0 1.6rem;
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 0.9rem;
   font-size: 0.86rem;
   color: rgba(255, 255, 255, 0.58);
 }

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

 @media (max-width: 1080px) {
   .hero__grid,
   .story-grid,
   .contact-layout,
   .detail-grid,
   .detail-grid--reverse,
   .footer-grid,
   .cta-band {
     grid-template-columns: 1fr;
   }

   .footer-grid {
     gap: 1.75rem;
   }

   .hero-mark {
     width: min(20rem, 42vw);
   }
 }

 @media (max-width: 920px) {
   .desktop-nav,
   .header-actions .phone-link,
   .header-actions .button--primary {
     display: none;
   }

   .menu-toggle {
     display: inline-flex;
   }

   .mobile-nav.is-open {
     display: block;
   }

   .header-inner {
     grid-template-columns: auto auto;
     justify-content: space-between;
   }

   .stat-band,
   .grid-4,
   .project-grid {
     grid-template-columns: repeat(2, minmax(0, 1fr));
   }

   .grid-3,
   .grid-2,
   .service-split,
   .process-grid,
   .form-grid {
     grid-template-columns: 1fr;
   }
 }

 @media (max-width: 640px) {
   :root {
     --wrapper: min(100vw - 1.25rem, 100%);
     --banner-height: 3.1rem;
     --header-height: 4.75rem;
   }

   body {
     padding-top: calc(var(--banner-height) + var(--header-height));
   }

   .demo-banner {
     flex-wrap: wrap;
     text-align: center;
     line-height: 1.35;
     gap: 0.2rem;
     padding: 0.35rem 0.75rem;
     align-content: center;
   }

   .brand__tag {
     display: none;
   }

   .brand__mark {
     width: 3.45rem;
     height: 3.45rem;
   }

   h1 {
     max-width: 9ch;
   }

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

   .button-row {
     align-items: stretch;
   }

   .hero-panel,
   .service-panel,
   .coverage-box,
   .cta-band,
   .contact-panel,
   .form-card,
   .detail-panel {
     padding: 1.35rem;
   }

   .stat-band,
   .project-grid {
     grid-template-columns: 1fr;
   }

   .contact-list li,
   .meta-list li {
     grid-template-columns: 1fr;
     display: grid;
   }

   .contact-list span,
   .meta-list span {
     text-align: left;
   }

   .footer-meta {
     flex-direction: column;
   }
 }
