    :root {
      --paper: #f7f2eb;
      --paper-2: #eee5da;
      --ink: #181512;
      --ink-soft: #514943;
      --muted: #817469;
      --line: rgba(24, 21, 18, 0.14);
      --white: #fffaf4;
      --oak: #b77a36;
      --accent: #f2b347;
      --sage: #6f806a;
      --clay: #a85d43;
      --charcoal: #1d1a17;
      --shadow: 0 24px 80px rgba(24, 21, 18, 0.14);
      --nav-h: 74px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .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;
    }

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

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

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

    ::selection {
      background: var(--accent);
      color: var(--ink);
    }

    .site-nav {
      position: fixed;
      z-index: 100;
      top: 0;
      left: 0;
      right: 0;
      height: var(--nav-h);
      padding: 0 6vw;
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
      transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
    }

    .site-nav.is-scrolled {
      background: rgba(247, 242, 235, 0.92);
      color: var(--ink);
      border-bottom-color: var(--line);
      box-shadow: 0 14px 48px rgba(24, 21, 18, 0.08);
      backdrop-filter: blur(18px);
    }

    .site-nav-inner {
      position: relative;
      width: min(1180px, 100%);
      height: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      min-width: max-content;
    }

    .brand-logo-stack {
      position: relative;
      display: block;
      width: 244px;
      aspect-ratio: 816 / 176;
    }

    .brand-logo {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: left center;
      transition: opacity 240ms ease;
    }

    .brand-logo--dark {
      opacity: 0;
    }

    .site-nav.is-scrolled .brand-logo--light {
      opacity: 0;
    }

    .site-nav.is-scrolled .brand-logo--dark {
      opacity: 1;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 28px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      opacity: 0.86;
      transition: opacity 180ms ease, color 180ms ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 5px;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 220ms ease;
    }

    .nav-links a:hover {
      opacity: 1;
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .nav-cta {
      min-height: 42px;
      padding: 0 18px;
      border: 1px solid currentColor;
      border-radius: 4px;
    }

    .nav-cta::after {
      display: none;
    }

    .menu-toggle {
      position: relative;
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid currentColor;
      border-radius: 4px;
      background:
        linear-gradient(currentColor 0 0) center / 18px 1px no-repeat,
        transparent;
      color: inherit;
      cursor: pointer;
      transition: background-size 180ms ease, border-color 180ms ease, color 180ms ease;
    }

    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      position: absolute;
      left: 50%;
      width: 18px;
      height: 1px;
      background: currentColor;
      transition: transform 180ms ease, opacity 180ms ease;
      transform: translateX(-50%);
    }

    .menu-toggle::before {
      top: 15px;
    }

    .menu-toggle::after {
      bottom: 15px;
    }

    .menu-toggle.is-open {
      background-size: 0 1px, auto;
    }

    .menu-toggle.is-open::before {
      transform: translateX(-50%) translateY(6px) rotate(45deg);
    }

    .menu-toggle.is-open::after {
      transform: translateX(-50%) translateY(-6px) rotate(-45deg);
    }

    .hero {
      position: relative;
      min-height: 94vh;
      display: grid;
      align-items: end;
      padding: 128px 6vw 56px;
      color: #fff;
      overflow: hidden;
      isolation: isolate;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(90deg, rgba(12, 10, 8, 0.82) 0%, rgba(12, 10, 8, 0.58) 42%, rgba(12, 10, 8, 0.18) 100%),
        linear-gradient(0deg, rgba(12, 10, 8, 0.72) 0%, rgba(12, 10, 8, 0.08) 46%);
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: -2;
      overflow: hidden;
      background: var(--charcoal);
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.05);
      animation: heroDrift 18s ease-out forwards;
    }

    @keyframes heroDrift {
      from {
        transform: scale(1.1) translateY(18px);
      }
      to {
        transform: scale(1.02) translateY(0);
      }
    }

    .hero-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 720px) minmax(260px, 360px);
      gap: 54px;
      align-items: end;
    }

    .eyebrow {
      margin: 0 0 18px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      display: inline-block;
      width: 42px;
      height: 1px;
      background: var(--accent);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    .hero h1 {
      margin: 0;
      max-width: 760px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 76px;
      line-height: 0.98;
      font-weight: 400;
      letter-spacing: 0;
    }

    .hero h1 span {
      display: block;
      color: var(--accent);
      font-style: italic;
    }

    .hero-copy {
      max-width: 600px;
      margin: 28px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 19px;
      line-height: 1.72;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .action-row-offset {
      margin-top: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 24px;
      border-radius: 4px;
      border: 1px solid transparent;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--accent);
      color: var(--ink);
    }

    .btn-primary:hover {
      background: #ffd06f;
    }

    .btn-ghost {
      border-color: rgba(255, 255, 255, 0.56);
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }

    .light .btn-ghost,
    .btn-ghost.dark-text {
      border-color: var(--line);
      color: var(--ink);
      background: transparent;
    }

    .proof {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 50px;
      max-width: 640px;
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .proof-item {
      min-height: 108px;
      padding: 22px;
      background: rgba(24, 21, 18, 0.32);
      backdrop-filter: blur(10px);
    }

    .proof-value {
      display: block;
      margin-bottom: 8px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 34px;
      line-height: 1;
      color: #fff;
    }

    .proof-label {
      color: rgba(255, 255, 255, 0.74);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-panel {
      margin-left: auto;
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 8px;
      padding: 26px;
      background: rgba(24, 21, 18, 0.34);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
    }

    .hero-panel strong {
      display: block;
      margin-bottom: 14px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 28px;
      font-weight: 400;
      color: var(--accent);
    }

    .hero-panel p {
      margin: 0;
      color: rgba(255, 255, 255, 0.76);
      font-size: 15px;
    }

    .panel-flow {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .panel-flow div {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.78);
    }

    .section {
      padding: 104px 6vw;
    }

    .section-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
      gap: 64px;
      align-items: end;
      margin-bottom: 52px;
    }

    .kicker {
      margin: 0 0 14px;
      color: var(--oak);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .section h2 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 52px;
      line-height: 1.06;
      font-weight: 400;
      letter-spacing: 0;
    }

    .section h2 em {
      color: var(--oak);
      font-style: italic;
    }

    .lead {
      margin: 0;
      color: var(--ink-soft);
      font-size: 18px;
      line-height: 1.76;
    }

    .material-copy {
      margin-top: 24px;
    }

    .partner-copy {
      margin-top: 20px;
    }

    .contact-copy {
      margin-top: 22px;
    }

    .light {
      background: var(--white);
    }

    .warm {
      background: var(--paper);
    }

    .dark {
      background: var(--charcoal);
      color: #fff;
    }

    .dark .kicker,
    .dark h2 em {
      color: var(--accent);
    }

    .dark .lead,
    .dark p {
      color: rgba(255, 255, 255, 0.72);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .service-card {
      min-height: 270px;
      padding: 30px 26px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: #fff;
      transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
    }

    .service-card:hover {
      position: relative;
      z-index: 1;
      background: #fffaf4;
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .service-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      margin-bottom: 28px;
      border-radius: 4px;
      background: var(--paper-2);
      color: var(--oak);
      font-weight: 800;
      font-size: 13px;
    }

    .service-card h3 {
      margin: 0 0 14px;
      font-size: 21px;
      line-height: 1.22;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .project-card {
      position: relative;
      min-height: 420px;
      border-radius: 8px;
      overflow: hidden;
      background: var(--charcoal);
      box-shadow: 0 16px 48px rgba(24, 21, 18, 0.12);
    }

    .project-card.large {
      grid-column: span 2;
    }

    .project-card img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      transition: transform 620ms ease, filter 620ms ease;
    }

    .project-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(12, 10, 8, 0.76), rgba(12, 10, 8, 0.08) 58%);
    }

    .project-card:hover img {
      transform: scale(1.055);
      filter: saturate(1.08);
    }

    .project-copy {
      position: absolute;
      z-index: 1;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 28px;
      color: #fff;
    }

    .project-copy span {
      display: block;
      margin-bottom: 8px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .project-copy h3 {
      margin: 0 0 10px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 30px;
      font-weight: 400;
      line-height: 1.1;
    }

    .project-copy p {
      max-width: 560px;
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 15px;
    }

    .about-layout {
      display: grid;
      grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1fr);
      gap: 76px;
      align-items: center;
    }

    .about-photo {
      position: relative;
      min-height: 640px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      min-height: 640px;
      object-fit: cover;
    }

    .year-badge {
      position: absolute;
      right: 24px;
      bottom: 24px;
      min-width: 136px;
      padding: 18px 20px;
      border-radius: 8px;
      background: var(--accent);
      color: var(--ink);
    }

    .year-badge strong {
      display: block;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 40px;
      line-height: 1;
      font-weight: 400;
    }

    .year-badge span {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .about-copy p {
      color: var(--ink-soft);
      font-size: 17px;
      line-height: 1.82;
    }

    .quote {
      margin: 34px 0;
      padding: 26px 0 26px 28px;
      border-left: 3px solid var(--accent);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 26px;
      line-height: 1.36;
      color: var(--ink);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .process-step {
      min-height: 250px;
      padding: 30px;
      background: rgba(255, 255, 255, 0.055);
      transition: background 200ms ease, transform 200ms ease;
    }

    .process-step:hover {
      background: rgba(255, 255, 255, 0.09);
      transform: translateY(-4px);
    }

    .process-step span {
      display: block;
      margin-bottom: 44px;
      color: var(--accent);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 40px;
      line-height: 1;
    }

    .process-step h3 {
      margin: 0 0 14px;
      font-size: 22px;
      color: #fff;
    }

    .process-step p {
      margin: 0;
      font-size: 15px;
      line-height: 1.7;
    }

    .material-layout {
      display: grid;
      grid-template-columns: minmax(300px, 0.72fr) minmax(320px, 1fr);
      gap: 64px;
      align-items: start;
    }

    .swatches {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .swatch {
      --swatch: linear-gradient(135deg, #bdb3a7, #f3ede5);
      min-height: 150px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .swatch::before {
      content: "";
      display: block;
      height: 56px;
      border-radius: 4px;
      background: var(--swatch);
      border: 1px solid rgba(24, 21, 18, 0.12);
    }

    .swatch strong {
      display: block;
      margin-top: 16px;
      font-size: 15px;
    }

    .swatch span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 13px;
    }

    .swatch-oak {
      --swatch: linear-gradient(135deg, #b9824b, #e0b171 48%, #7a4e2d);
    }

    .swatch-compact {
      --swatch: linear-gradient(135deg, #2a2a28, #5a5650);
    }

    .swatch-laminate {
      --swatch: linear-gradient(135deg, #f5f1e9, #c8bfb2);
    }

    .swatch-matte {
      --swatch: linear-gradient(135deg, #6f806a, #a4ac8a);
    }

    .swatch-metal {
      --swatch: linear-gradient(135deg, #191714, #4a423b);
    }

    .swatch-fitting {
      --swatch: linear-gradient(135deg, #cfc7bb, #fffaf4);
    }

    .d38-block {
      display: grid;
      grid-template-columns: minmax(320px, 1fr) 280px;
      gap: 48px;
      align-items: center;
      padding: 48px;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 18px 70px rgba(24, 21, 18, 0.08);
      border: 1px solid var(--line);
    }

    .d38-mark {
      display: grid;
      place-items: center;
      min-height: 220px;
      border-radius: 8px;
      background: var(--charcoal);
      color: #fff;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 72px;
      letter-spacing: 0.02em;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: minmax(300px, 0.78fr) minmax(340px, 1fr);
      gap: 76px;
      align-items: start;
    }

    .contact-list {
      display: grid;
      gap: 16px;
      margin-top: 34px;
    }

    .contact-person {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 16px;
      align-items: center;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }

    .avatar {
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 4px;
      background: var(--paper-2);
      color: var(--oak);
      font-weight: 800;
    }

    .contact-person strong {
      display: block;
      font-size: 17px;
    }

    .contact-person span,
    .contact-person a {
      display: block;
      color: var(--muted);
      font-size: 14px;
    }

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

    .channel {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 42px;
      padding: 0 14px;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: #fff;
      font-size: 14px;
      transition: transform 180ms ease, border-color 180ms ease;
    }

    .channel:hover {
      transform: translateY(-2px);
      border-color: rgba(24, 21, 18, 0.3);
    }

    .channel::before {
      content: "";
      display: block;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--dot);
    }

    .channel-whatsapp {
      --dot: #25d366;
    }

    .channel-viber {
      --dot: #7360f2;
    }

    .channel-email {
      --dot: var(--clay);
    }

    .contact-address {
      margin-top: 30px;
      color: var(--muted);
    }

    .contact-form {
      display: grid;
      gap: 16px;
      padding: 34px;
      border-radius: 8px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 18px 70px rgba(24, 21, 18, 0.08);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    label {
      display: block;
      margin-bottom: 8px;
      color: var(--ink-soft);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: var(--paper);
      color: var(--ink);
      outline: none;
      transition: border-color 180ms ease, background 180ms ease;
    }

    input,
    select {
      height: 50px;
      padding: 0 14px;
    }

    textarea {
      min-height: 128px;
      padding: 14px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--oak);
      background: #fff;
    }

    .form-note {
      display: none;
      padding: 16px;
      border-radius: 4px;
      background: rgba(111, 128, 106, 0.14);
      color: #3f513b;
      font-weight: 700;
    }

    .form-note.is-visible {
      display: block;
    }

    footer {
      padding: 42px 6vw;
      background: #12100e;
      color: rgba(255, 255, 255, 0.68);
      font-size: 14px;
    }

    .footer-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .footer-logo {
      display: inline-flex;
      margin-bottom: 14px;
    }

    .footer-logo img {
      width: 214px;
      height: auto;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 {
      transition-delay: 90ms;
    }

    .delay-2 {
      transition-delay: 180ms;
    }

    .delay-3 {
      transition-delay: 270ms;
    }

    .delay-4 {
      transition-delay: 360ms;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    @media (max-width: 1100px) {
      .hero h1 {
        font-size: 58px;
      }

      .hero-inner,
      .section-head,
      .about-layout,
      .material-layout,
      .contact-layout {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        max-width: 520px;
        margin-left: 0;
      }

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

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

    @media (max-width: 820px) {
      :root {
        --nav-h: 68px;
      }

      .site-nav {
        padding: 0 22px;
      }

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

      .brand-logo-stack {
        width: 210px;
      }

      .menu-toggle {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        display: grid;
        gap: 2px;
        padding: 14px;
        background: rgba(247, 242, 235, 0.97);
        color: var(--ink);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
      }

      .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links a {
        min-height: 44px;
        padding: 0 10px;
      }

      .hero {
        min-height: 92vh;
        padding: 112px 22px 34px;
      }

      .hero h1 {
        font-size: 44px;
        line-height: 1.04;
      }

      .hero-copy,
      .lead {
        font-size: 16px;
      }

      .proof {
        grid-template-columns: 1fr;
      }

      .proof-item {
        min-height: auto;
        padding: 18px;
      }

      .section {
        padding: 76px 22px;
      }

      .section h2 {
        font-size: 38px;
      }

      .services-grid,
      .process-grid,
      .gallery-grid,
      .swatches,
      .form-row,
      .d38-block {
        grid-template-columns: 1fr;
      }

      .project-card,
      .project-card.large {
        grid-column: auto;
      }

      .project-card,
      .project-card img {
        min-height: 360px;
      }

      .about-photo,
      .about-photo img {
        min-height: 440px;
      }

      .contact-form,
      .d38-block {
        padding: 24px;
      }

      .footer-inner {
        display: grid;
        align-items: start;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      .brand-logo-stack {
        width: 180px;
      }

      .hero h1 {
        font-size: 38px;
      }

      .hero-actions {
        display: grid;
      }

      .btn {
        width: 100%;
      }

      .service-card {
        min-height: auto;
      }

      .footer-logo img {
        width: 176px;
      }
    }
