:root {
        --ink: #171717;
        --charcoal: #20221f;
        --paper: #f7f4ee;
        --white: #ffffff;
        --muted: #686865;
        --line: #d8d2c8;
        --moss: #8cc53e;
        --clay: #8cc53e;
        --gold: #8cc53e;
        --shadow: 0 24px 70px rgba(23, 23, 23, 0.16);
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        overflow-x: hidden;
      }

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

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

      a {
        color: inherit;
      }

      .site-header {
        position: fixed;
        inset: 0 0 auto;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 18px clamp(18px, 4vw, 58px);
        color: var(--white);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
      }

      .brand {
        display: flex;
        align-items: center;
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;
      }

      .brand img {
        width: auto;
        height: 68px;
        max-width: 288px;
        object-fit: contain;
      }

      .brand img.is-hidden {
        display: none;
      }

      .nav {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 14px;
        font-weight: 750;
      }

      .nav a {
        text-decoration: none;
      }

      .site-search {
        position: relative;
        width: min(300px, 24vw);
        min-width: 210px;
      }

      .site-search label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
      }

      .site-search-row {
        display: grid;
        grid-template-columns: 1fr auto;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.38);
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.92);
      }

      .site-search input {
        min-height: 42px;
        border: 0;
        border-radius: 0;
        background: transparent;
      }

      .site-search button {
        min-height: 42px;
        padding: 0 12px;
        border: 0;
        color: var(--white);
        background: var(--gold);
        font: inherit;
        font-weight: 900;
        cursor: pointer;
      }

      .site-search-results {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        z-index: 30;
        display: none;
        width: min(420px, 92vw);
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 6px;
        color: var(--ink);
        background: var(--white);
        box-shadow: var(--shadow);
      }

      .site-search-results.is-visible {
        display: grid;
      }

      .site-search-results button,
      .site-search-results p {
        display: grid;
        gap: 4px;
        margin: 0;
        padding: 12px;
        border: 0;
        border-bottom: 1px solid var(--line);
        color: inherit;
        background: var(--white);
        font: inherit;
        text-align: left;
      }

      .site-search-results button {
        cursor: pointer;
      }

      .site-search-results button:hover {
        background: var(--paper);
      }

      .site-search-results span {
        color: var(--gold);
        font-size: 12px;
        font-weight: 950;
      }

      .site-search-results strong {
        font-size: 14px;
      }

      .button {
        display: inline-flex;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        padding: 0 18px;
        border: 1px solid currentColor;
        border-radius: 4px;
        font-weight: 850;
        text-decoration: none;
      }

      .button.primary {
        border-color: var(--gold);
        color: var(--white);
        background: var(--gold);
      }

      .button.dark {
        border-color: var(--ink);
        color: var(--white);
        background: var(--ink);
      }

      .button.light {
        border-color: rgba(255, 255, 255, 0.76);
        color: var(--white);
      }

      .hero {
        min-height: 92vh;
        color: var(--white);
        background: #171717;
      }

      .hero-stage {
        position: relative;
        min-height: 92vh;
        display: grid;
        align-items: end;
        overflow: hidden;
        padding: clamp(118px, 14vw, 172px) clamp(20px, 6vw, 76px) clamp(46px, 7vw, 90px);
      }

      .hero-stage::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
          linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.12) 62%, rgba(0, 0, 0, 0.22)),
          linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.01) 48%);
      }

      .hero-slides {
        position: absolute;
        inset: 0;
      }

      .hero-slides img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transform: scale(1.04);
        animation: heroFade 40s infinite;
      }

      .hero-slides img:nth-child(1) { animation-delay: 0s; }
      .hero-slides img:nth-child(2) { animation-delay: 5s; }
      .hero-slides img:nth-child(3) { animation-delay: 10s; }
      .hero-slides img:nth-child(4) { animation-delay: 15s; }
      .hero-slides img:nth-child(5) { animation-delay: 20s; }
      .hero-slides img:nth-child(6) { animation-delay: 25s; }
      .hero-slides img:nth-child(7) { animation-delay: 30s; }
      .hero-slides img:nth-child(8) { animation-delay: 35s; }

      @keyframes heroFade {
        0%,
        11% {
          opacity: 1;
          transform: scale(1);
        }

        16%,
        100% {
          opacity: 0;
          transform: scale(1.04);
        }
      }

      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1040px;
        opacity: 0.75;
      }

      .eyebrow {
        margin: 0 0 14px;
        color: var(--clay);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
      }

      .hero .eyebrow {
        color: var(--gold);
      }

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

      h1 {
        max-width: 1050px;
        margin-bottom: 26px;
        font-size: clamp(48px, 8vw, 116px);
        line-height: 0.93;
        letter-spacing: 0;
      }

      h2 {
        margin-bottom: 0;
        font-size: clamp(34px, 5.6vw, 76px);
        line-height: 0.98;
        letter-spacing: 0;
      }

      h3 {
        font-size: 25px;
        line-height: 1.04;
        letter-spacing: 0;
      }

      .hero-copy {
        max-width: 720px;
        color: rgba(255, 255, 255, 0.82);
        font-size: clamp(18px, 1.8vw, 24px);
        line-height: 1.38;
      }

      .hero-actions,
      .section-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 28px;
      }

      .hero-proof {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1px;
        margin-top: clamp(42px, 6vw, 78px);
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(255, 255, 255, 0.12);
      }

      .proof-item {
        min-height: 112px;
        padding: 18px;
        background: rgba(0, 0, 0, 0.22);
        backdrop-filter: blur(8px);
      }

      .proof-item strong {
        display: block;
        margin-bottom: 8px;
      }

      .proof-item span {
        color: rgba(255, 255, 255, 0.68);
        line-height: 1.35;
      }

      section {
        border-bottom: 1px solid var(--line);
      }

      .section-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: clamp(52px, 7vw, 96px) clamp(18px, 4vw, 58px);
      }

      .section-head {
        display: grid;
        grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.38fr);
        gap: 34px;
        align-items: end;
        margin-bottom: 34px;
      }

      .section-head p,
      .copy {
        color: var(--muted);
        font-size: 18px;
        line-height: 1.48;
      }

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

      .intro-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.42fr);
        gap: 36px;
        align-items: start;
      }

      .story-panel {
        padding: 28px;
        border-left: 5px solid var(--clay);
        background: var(--paper);
      }

      .story-panel p {
        margin-bottom: 0;
        color: var(--muted);
        font-size: 18px;
        line-height: 1.48;
      }

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

      .path-card,
      .price-card,
      .step-card,
      .design-card {
        border: 1px solid var(--line);
        border-radius: 6px;
        background: var(--white);
        overflow: hidden;
      }

      .path-card {
        min-height: 390px;
        display: grid;
        grid-template-rows: auto 1fr;
        width: 100%;
        padding: 0;
        color: inherit;
        font: inherit;
        text-align: left;
        text-decoration: none;
        cursor: pointer;
        transition:
          transform 180ms ease,
          box-shadow 180ms ease;
      }

      .path-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
      }

      .path-card img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
      }

      .path-body {
        display: grid;
        align-content: space-between;
        gap: 18px;
        padding: 20px;
      }

      .path-body h3,
      .price-card h3,
      .step-card h3 {
        margin-bottom: 10px;
      }

      .path-body p,
      .price-card p,
      .step-card p,
      .design-card p {
        margin-bottom: 0;
        color: var(--muted);
        line-height: 1.42;
      }

      .path-link {
        color: var(--clay);
        font-weight: 900;
      }

      .featured {
        background: #ebe5da;
      }

      .featured-layout {
        display: grid;
        grid-auto-flow: dense;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
      }

      .design-card {
        min-height: 0;
        transition:
          transform 180ms ease,
          box-shadow 180ms ease;
      }

      .featured .design-card {
        cursor: pointer;
      }

      .featured .design-card:hover,
      .featured .design-card:focus {
        outline: none;
        transform: translateY(-4px);
        box-shadow: var(--shadow);
      }

      .design-card.feature {
        grid-column: span 2;
      }

      .design-card.wide {
        grid-column: span 2;
      }

      .design-card img {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: cover;
      }

      .design-card.feature img {
        aspect-ratio: 16 / 10;
        height: auto;
      }

      .design-card.wide img {
        aspect-ratio: 16 / 9;
        height: auto;
      }

      .design-meta {
        padding: 16px;
      }

      .product-number {
        display: inline-flex;
        margin-bottom: 10px;
        padding: 5px 8px;
        border-radius: 3px;
        color: var(--white);
        background: var(--charcoal);
        font-size: 12px;
        font-weight: 900;
      }

      .design-meta strong {
        display: block;
        margin-bottom: 5px;
        font-size: 17px;
      }

      .pricing {
        color: var(--white);
        background: var(--charcoal);
      }

      .pricing .section-head p {
        color: rgba(255, 255, 255, 0.72);
      }

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

      .price-card {
        min-height: 245px;
        padding: 24px;
        border-color: rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.07);
      }

      .price-card p {
        color: rgba(255, 255, 255, 0.72);
      }

      .price {
        display: block;
        margin-bottom: 18px;
        color: var(--gold);
        font-size: clamp(28px, 3.4vw, 42px);
        font-weight: 950;
        line-height: 1;
      }

      .qualifier-note {
        margin-top: 18px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, 0.74);
        background: rgba(255, 255, 255, 0.05);
        line-height: 1.45;
      }

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

      .step-card {
        min-height: 235px;
        padding: 20px;
      }

      .step-number {
        display: grid;
        width: 42px;
        height: 42px;
        margin-bottom: 22px;
        place-items: center;
        border-radius: 50%;
        color: var(--white);
        background: var(--moss);
        font-weight: 900;
      }

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

      .lead-layout {
        display: grid;
        grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.46fr);
        gap: 38px;
        align-items: start;
      }

      .lead-image-rotator {
        position: relative;
        min-height: 360px;
        margin-top: 34px;
        overflow: hidden;
        border-radius: 6px;
        background: var(--paper);
      }

      .lead-image-rotator figure {
        position: absolute;
        inset: 0;
        margin: 0;
        opacity: 0;
        animation: leadImageFade 36s infinite;
      }

      .lead-image-rotator img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .lead-image-rotator span {
        position: absolute;
        left: 16px;
        bottom: 16px;
        padding: 7px 10px;
        border-radius: 3px;
        color: var(--white);
        background: rgba(0, 0, 0, 0.78);
        font-size: 13px;
        font-weight: 950;
      }

      .lead-image-rotator figure:nth-child(1) { animation-delay: 0s; }
      .lead-image-rotator figure:nth-child(2) { animation-delay: 6s; }
      .lead-image-rotator figure:nth-child(3) { animation-delay: 12s; }
      .lead-image-rotator figure:nth-child(4) { animation-delay: 18s; }
      .lead-image-rotator figure:nth-child(5) { animation-delay: 24s; }
      .lead-image-rotator figure:nth-child(6) { animation-delay: 30s; }

      @keyframes leadImageFade {
        0%,
        13% {
          opacity: 1;
        }

        18%,
        100% {
          opacity: 0;
        }
      }

      .form-card {
        display: grid;
        gap: 12px;
        padding: 24px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: var(--paper);
      }

      label {
        display: grid;
        gap: 7px;
        color: #3b3b39;
        font-size: 13px;
        font-weight: 850;
      }

      input,
      select,
      textarea {
        width: 100%;
        min-height: 46px;
        padding: 0 12px;
        border: 1px solid #bbb2a5;
        border-radius: 4px;
        font: inherit;
        background: var(--white);
      }

      .gallery-filter {
        display: grid;
        min-width: min(280px, 100%);
        gap: 7px;
        color: #3b3b39;
        font-size: 13px;
        font-weight: 850;
      }

      textarea {
        min-height: 104px;
        padding-top: 12px;
        resize: vertical;
      }

      .form-card .button {
        width: 100%;
        margin-top: 4px;
      }

      .website-field {
        position: absolute;
        left: -10000px;
        width: 1px;
        height: 1px;
        overflow: hidden;
      }

      .form-message {
        display: none;
        margin: 0;
        padding: 12px 14px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.35;
        background: #efebe3;
      }

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

      .form-message.is-success {
        color: #244a12;
        background: rgba(140, 197, 62, 0.2);
      }

      .form-message.is-error {
        color: #7b1f1a;
        background: #f6dedb;
      }

      .lead-form button[disabled] {
        cursor: wait;
        opacity: 0.68;
      }

      .site-footer {
        color: var(--white);
        background: #151614;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1.2fr repeat(3, 1fr);
        gap: 28px;
      }

      .footer-grid p,
      .footer-grid a {
        color: rgba(255, 255, 255, 0.68);
        line-height: 1.55;
        text-decoration: none;
      }

      .popup {
        position: fixed;
        right: 22px;
        bottom: 22px;
        z-index: 40;
        width: min(420px, calc(100vw - 44px));
        padding: 22px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        color: var(--white);
        background: #181917;
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(18px);
        transition:
          opacity 220ms ease,
          transform 220ms ease;
      }

      .popup.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .popup-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 50%;
        color: var(--white);
        background: rgba(255, 255, 255, 0.12);
        font-size: 20px;
        cursor: pointer;
      }

      .popup h3 {
        margin: 12px 36px 10px 0;
      }

      .popup p {
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.42;
      }

      .popup input,
      .popup textarea {
        border-color: rgba(255, 255, 255, 0.2);
      }

      .popup .button {
        width: 100%;
        margin-top: 10px;
      }

      .gallery-modal {
        position: fixed;
        inset: 0;
        z-index: 60;
        display: none;
        align-items: stretch;
        justify-content: center;
        padding: clamp(12px, 3vw, 36px);
        background: rgba(0, 0, 0, 0.72);
      }

      .gallery-modal.is-visible {
        display: flex;
      }

      .gallery-panel {
        width: min(1280px, 100%);
        max-height: 100%;
        overflow: auto;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        background: var(--paper);
        box-shadow: var(--shadow);
      }

      .gallery-header {
        position: sticky;
        top: 0;
        z-index: 2;
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 18px;
        padding: 22px;
        border-bottom: 1px solid var(--line);
        background: rgba(247, 244, 238, 0.94);
        backdrop-filter: blur(10px);
      }

      .gallery-header-main {
        flex: 1 1 auto;
      }

      .gallery-header-tools {
        display: flex;
        flex: 0 0 auto;
        align-items: start;
        gap: 14px;
      }

      .gallery-header h3 {
        margin: 0 0 8px;
        font-size: clamp(28px, 4vw, 48px);
      }

      .gallery-header p {
        max-width: 740px;
        margin: 0;
        color: var(--muted);
        line-height: 1.45;
      }

      .gallery-close {
        flex: 0 0 auto;
        width: 42px;
        height: 42px;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: var(--white);
        font-size: 24px;
        cursor: pointer;
      }

      .gallery-content {
        padding: 22px;
      }

      .gallery-feature {
        display: none;
      }

      .gallery-grid {
        display: grid;
        grid-auto-flow: dense;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 12px;
      }

      .gallery-thumb {
        position: relative;
        aspect-ratio: 1 / 1;
        min-height: 0;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: var(--white);
        cursor: pointer;
      }

      .gallery-thumb.is-feature {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16 / 10;
      }

      .gallery-thumb.is-wide {
        grid-column: span 2;
        aspect-ratio: 16 / 9;
      }

      .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 180ms ease;
      }

      .gallery-thumb:hover img {
        transform: scale(1.035);
      }

      .gallery-thumb span {
        position: absolute;
        left: 10px;
        bottom: 10px;
        padding: 5px 8px;
        border-radius: 3px;
        color: var(--white);
        background: rgba(0, 0, 0, 0.78);
        font-size: 12px;
        font-weight: 900;
      }

      .image-viewer {
        position: fixed;
        inset: 0;
        z-index: 80;
        display: none;
        align-items: center;
        justify-content: center;
        padding: clamp(16px, 4vw, 46px);
        background: rgba(0, 0, 0, 0.82);
      }

      .image-viewer.is-visible {
        display: flex;
      }

      .image-viewer-panel {
        position: relative;
        width: min(1120px, 100%);
        max-height: 100%;
        overflow: hidden;
        border-radius: 8px;
        background: var(--white);
      }

      .image-viewer img {
        width: 100%;
        max-height: calc(100vh - 170px);
        object-fit: contain;
        background: #111;
      }

      .image-viewer-meta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        padding: 16px;
      }

      .image-viewer-close {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(0, 0, 0, 0.14);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.92);
        font-size: 24px;
        cursor: pointer;
      }

      .product-page {
        background: var(--paper);
      }

      .product-header {
        background: rgba(23, 23, 23, 0.94);
      }

      .product-header .brand {
        color: var(--white);
        text-decoration: none;
      }

      .product-main {
        padding-top: 86px;
      }

      .product-detail {
        border-bottom: 0;
      }

      .product-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.44fr);
        gap: clamp(24px, 4vw, 56px);
        align-items: center;
      }

      .product-media {
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
      }

      .product-media img {
        width: 100%;
        aspect-ratio: 16 / 11;
        height: auto;
        object-fit: cover;
      }

      .product-copy h1 {
        color: var(--ink);
        font-size: clamp(44px, 5vw, 78px);
      }

      .product-copy .hero-copy {
        color: var(--muted);
      }

      .category-hero {
        border-bottom: 1px solid var(--line);
        background: var(--paper);
      }

      .category-hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
        gap: clamp(24px, 4vw, 56px);
        align-items: center;
      }

      .category-copy h1 {
        color: var(--ink);
        font-size: clamp(44px, 6vw, 86px);
        line-height: 0.95;
      }

      .category-copy .hero-copy {
        max-width: 760px;
        color: var(--muted);
      }

      .category-gallery-section {
        background: var(--paper);
      }

      .category-gallery a {
        display: block;
        color: inherit;
        text-decoration: none;
      }

      @media (max-width: 1080px) {
        .nav a:not(.button) {
          display: none;
        }

        .site-header {
          display: grid;
          grid-template-columns: minmax(0, 1fr) auto;
          gap: 14px;
          align-items: center;
        }

        .site-search {
          grid-column: 1 / -1;
          width: 100%;
        }

        .section-head,
        .intro-grid,
        .lead-layout,
        .path-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

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

        .design-card.feature,
        .design-card.wide {
          grid-column: span 1;
          grid-row: span 1;
        }

        .design-card.feature img {
          aspect-ratio: 1 / 1;
          height: auto;
        }

        .pricing-grid,
        .process-grid,
        .hero-proof,
        .footer-grid,
        .product-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (max-width: 880px) {
        .section-head,
        .intro-grid,
        .lead-layout,
        .pricing-grid,
        .process-grid,
        .footer-grid,
        .product-grid,
        .category-hero-grid {
          grid-template-columns: 1fr;
        }

        .section-head {
          gap: 16px;
          align-items: start;
        }

        .lead-image-rotator {
          min-height: auto;
          aspect-ratio: 16 / 10;
        }

        .product-main {
          padding-top: 118px;
        }
      }

      @media (max-width: 680px) {
        .site-header {
          position: absolute;
          display: grid;
          grid-template-columns: 1fr;
          gap: 10px;
          padding: 12px 14px 16px;
          background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.28));
        }

        .brand {
          justify-content: center;
        }

        .nav {
          width: 100%;
          justify-content: center;
        }

        .nav .button {
          width: 100%;
          min-height: 40px;
          padding: 0 12px;
          font-size: 13px;
        }

        .brand img {
          height: 48px;
          max-width: min(260px, 82vw);
        }

        .site-search {
          min-width: 0;
        }

        .site-search input {
          min-width: 0;
          font-size: 16px;
        }

        .site-search button {
          padding: 0 14px;
          font-size: 14px;
        }

        .site-search-results {
          left: 0;
          right: 0;
          width: 100%;
        }

        .hero-stage {
          min-height: auto;
          padding: 390px 16px 32px;
        }

        .hero-stage::before {
          background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.02) 30%, rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.82) 82%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.04) 62%, rgba(0, 0, 0, 0.18));
        }

        .hero-slides img {
          object-position: center center;
          filter: saturate(1.12) brightness(1.12);
          transform: none;
        }

        .hero-content {
          opacity: 0.88;
        }

        h1 {
          margin-bottom: 18px;
          font-size: clamp(38px, 12vw, 52px);
          line-height: 0.98;
        }

        h2 {
          font-size: clamp(32px, 10vw, 46px);
          line-height: 1;
        }

        h3 {
          font-size: 22px;
        }

        .hero-copy,
        .section-head p,
        .copy,
        .story-panel p {
          font-size: 16px;
          line-height: 1.45;
        }

        .hero-proof {
          margin-top: 28px;
        }

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

        .section-inner {
          padding: 44px 16px;
        }

        .story-panel,
        .form-card,
        .price-card,
        .step-card {
          padding: 18px;
        }

        .path-body,
        .design-meta {
          padding: 14px;
        }

        .hero-actions .button,
        .section-actions .button {
          width: 100%;
        }

        .section-head,
        .intro-grid,
        .lead-layout,
        .path-grid,
        .featured-layout,
        .pricing-grid,
        .process-grid,
        .hero-proof,
        .footer-grid,
        .product-grid,
        .category-hero-grid {
          grid-template-columns: 1fr;
        }

        .design-card.feature,
        .design-card.wide {
          grid-column: span 1;
        }

        .design-card.feature img,
        .design-card.wide img {
          aspect-ratio: 16 / 10;
        }

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

        .lead-image-rotator {
          aspect-ratio: 4 / 3;
          margin-top: 22px;
        }

        .product-main {
          padding-top: 160px;
        }

        .product-copy h1 {
          font-size: clamp(38px, 12vw, 52px);
        }

        .product-media img {
          aspect-ratio: 4 / 3;
        }

        .category-copy h1 {
          font-size: clamp(38px, 12vw, 52px);
        }

        .category-copy .hero-copy {
          max-width: none;
        }

        .category-gallery .gallery-thumb,
        .category-gallery .gallery-thumb.is-feature,
        .category-gallery .gallery-thumb.is-wide {
          grid-column: span 1;
          aspect-ratio: 16 / 10;
        }

        .popup {
          right: 12px;
          bottom: 12px;
          max-height: calc(100vh - 24px);
          overflow: auto;
          width: calc(100vw - 24px);
          padding: 18px;
        }

        .gallery-modal {
          padding: 0;
        }

        .gallery-panel {
          width: 100%;
          max-height: 100vh;
          border-radius: 0;
        }

        .gallery-header,
        .gallery-header-tools {
          display: grid;
          gap: 12px;
        }

        .gallery-header {
          padding: 16px;
        }

        .gallery-header-tools {
          width: 100%;
          grid-template-columns: minmax(0, 1fr) auto;
          align-items: end;
        }

        .gallery-filter {
          min-width: 0;
        }

        .gallery-content {
          padding: 12px;
        }

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

        .gallery-thumb.is-feature {
          grid-column: span 2;
        }

        .gallery-thumb.is-wide {
          grid-column: span 2;
        }

        .image-viewer {
          padding: 10px;
        }

        .image-viewer-panel {
          width: 100%;
          max-height: calc(100vh - 20px);
        }

        .image-viewer img {
          max-height: calc(100vh - 118px);
        }
      }

      @media (max-width: 430px) {
        .hero-stage {
          padding-top: 390px;
        }

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

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

        .gallery-thumb.is-feature,
        .gallery-thumb.is-wide {
          grid-column: span 1;
          aspect-ratio: 16 / 10;
        }
      }
