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

  :root {
    --ink: #0a2440;
    --ink-mid: #2d4a73;
    --ink-light: #6f7f99;
    --paper: #f6f7fa;
    --paper-dark: #eaeef4;
    --paper-mid: #dde4ed;
    --gold: #c8922a;
    --gold-light: #e3b65c;
    --red: #b03020;
    --white: #ffffff;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }

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

  a, button { -webkit-tap-highlight-color: transparent; }

  body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 88px;
    background: var(--ink);
    border-bottom: 2px solid var(--gold);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .nav-logo img {
    height: 64px;
    width: auto;
    display: block;
    background: var(--white);
    border-radius: 4px;
    padding: 8px 18px;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    background: var(--gold);
    color: var(--ink) !important;
    padding: 0.45rem 1.25rem;
    border-radius: 2px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--gold-light) !important; color: var(--ink) !important; }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 88px;
    left: 0; right: 0;
    z-index: 99;
    background: var(--ink);
    border-bottom: 2px solid var(--gold);
    padding: 0.5rem 0 1.25rem;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .mobile-menu a:active { color: var(--gold-light); }

  .mobile-menu .mobile-cta {
    margin: 1rem 1.5rem 0;
    background: var(--gold);
    color: var(--ink);
    text-align: center;
    border-radius: 3px;
    border-bottom: none;
    font-weight: 600;
  }

  section { scroll-margin-top: 90px; }

  /* ── HERO ── */
  #hero {
    margin-top: 88px;
    min-height: calc(100vh - 88px);
    min-height: calc(100svh - 88px);
    background: var(--ink);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-texture {
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(200,146,42,0.07) 39px, rgba(200,146,42,0.07) 40px),
      repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(200,146,42,0.07) 39px, rgba(200,146,42,0.07) 40px);
    pointer-events: none;
  }

  .hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--gold);
  }

  .hero-h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 2rem;
  }

  .hero-h1 em {
    font-style: normal;
    color: var(--gold);
    display: block;
  }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(253,250,245,0.65);
    max-width: 440px;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-primary:active { background: var(--gold-light); transform: translateY(1px); }

  .btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
    cursor: pointer;
  }

  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .btn-outline:active { border-color: var(--gold); color: var(--gold); transform: translateY(1px); }

  .hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    max-width: 460px;
  }

  .print-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 16px 16px 0 var(--gold);
    position: relative;
  }

  .print-card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .print-card-title {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }

  .print-samples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .sample {
    aspect-ratio: 1;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .s1 { background: var(--ink); color: var(--gold); }
  .s2 { background: var(--gold); color: var(--ink); }
  .s3 { background: var(--paper-mid); color: var(--ink-mid); }
  .s4 { background: var(--red); color: var(--white); }
  .s5 { background: var(--paper-dark); color: var(--ink); border: 1px solid var(--paper-mid); }
  .s6 { background: var(--ink-mid); color: var(--white); }

  .hero-stats {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
  }

  .hero-stat {
    flex: 1;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    margin-right: 1.5rem;
  }

  .hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

  .hero-stat-num {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
  }

  /* ── MARQUEE BAND ── */
  .marquee-band {
    background: var(--gold);
    overflow: hidden;
    padding: 0.8rem 0;
    border-top: 2px solid var(--gold-light);
    border-bottom: 2px solid var(--ink);
  }

  .marquee-track {
    display: flex;
    animation: marquee 22s linear infinite;
    width: max-content;
  }

  .marquee-item {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    white-space: nowrap;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }

  .marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ink);
    display: inline-block;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── SECTIONS SHARED ── */
  section { padding: 6rem 5rem; }

  .section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--gold);
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.25rem;
  }

  .section-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink-mid);
    max-width: 600px;
  }

  /* ── ABOUT ── */
  #about {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-left {}

  .about-right {
    position: relative;
  }
  .about-photo {
    margin: 0 0 1.75rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: -12px 12px 0 var(--gold);
    position: relative;
  }
  .about-photo img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
  .about-photo figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    background: linear-gradient(transparent, rgba(10,36,64,0.9));
    color: var(--white); font-family: var(--sans);
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 2.25rem 1.1rem 0.9rem;
  }

  .about-ink-block {
    background: var(--ink);
    border-radius: 4px;
    padding: 3rem;
    color: var(--white);
    position: relative;
  }

  .about-ink-block::before {
    content: '"';
    font-family: var(--serif);
    font-size: 8rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    line-height: 1;
  }

  .about-quote {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }

  .about-quote-source {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }

  .pillar {
    background: var(--paper);
    border-radius: 3px;
    padding: 1.25rem;
    border-left: 3px solid var(--gold);
  }

  .pillar-title {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
  }

  .pillar-body {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--ink-light);
  }

  /* ── SERVICES ── */
  #services {
    background: var(--paper);
  }

  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 4rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: 4px;
    overflow: hidden;
  }

  .service-card {
    background: var(--white);
    padding: 2.25rem;
    transition: background 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
  }

  .service-card:hover { background: var(--paper); }
  .service-card:hover::after { transform: scaleX(1); }

  .service-icon {
    width: 44px;
    height: 44px;
    background: var(--ink);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
  }

  .service-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
  }

  .service-name {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
  }

  .service-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--ink-light);
    margin-bottom: 1rem;
  }

  .service-items {
    list-style: none;
  }

  .service-items li {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-mid);
    padding: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .service-items li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* ── PROCESS ── */
  #process {
    background: var(--ink);
    color: var(--white);
  }

  #process .section-title { color: var(--white); }
  #process .section-body { color: rgba(255,255,255,0.55); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(12.5% + 1.5rem);
    right: calc(12.5% + 1.5rem);
    height: 1px;
    background: rgba(200,146,42,0.3);
    z-index: 0;
  }

  .process-step {
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 auto 1.5rem;
    background: var(--ink);
  }

  .step-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
  }

  .step-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
  }

  /* ── TERRITORY ── */
  #territory {
    background: var(--paper-dark);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
  }

  .territory-map {
    position: relative;
  }

  .map-frame {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: -12px 12px 0 var(--gold);
  }

  .map-svg {
    width: 100%;
    max-width: 360px;
    display: block;
    margin: 0 auto;
  }

  .territory-list {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .territory-item {
    background: var(--ink);
    border-radius: 3px;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--gold);
  }

  .territory-city {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
  }

  .territory-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
  }

  /* ── WHY US ── */
  #why {
    background: var(--white);
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
  }

  .why-card {
    padding-top: 1.25rem;
    border-top: 2px solid var(--paper-dark);
  }

  .why-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.45;
    line-height: 1;
    display: block;
    margin-bottom: 0.75rem;
  }

  .why-title {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .why-body {
    font-size: 0.83rem;
    line-height: 1.7;
    color: var(--ink-light);
  }

  /* ── TESTIMONIALS ── */
  #testimonials {
    background: var(--paper);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .testimonial {
    background: var(--white);
    border-radius: 4px;
    padding: 2rem;
    border-top: 3px solid var(--gold);
  }

  .testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--ink-mid);
    font-style: italic;
    margin-bottom: 1.5rem;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
  }

  .author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
  }

  .author-role {
    font-size: 0.75rem;
    color: var(--ink-light);
  }

  /* ── CONTACT ── */
  #contact {
    background: var(--ink);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  #contact .section-title { color: var(--white); }
  #contact .section-body { color: rgba(255,255,255,0.55); }

  .contact-details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .contact-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(200,146,42,0.15);
    border: 1px solid rgba(200,146,42,0.3);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
  }

  .contact-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
  }

  .contact-value {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
  }

  .contact-form {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem;
  }

  .form-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.75rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ink-mid);
    margin-bottom: 0.4rem;
  }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--paper);
    border: 1px solid var(--paper-mid);
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
  }

  .form-textarea { min-height: 90px; resize: vertical; }

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

  /* ── FOOTER ── */
  footer {
    background: #061a30;
    padding: 1.25rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid var(--gold);
  }

  .footer-logo {
    display: flex;
    align-items: center;
  }

  .footer-logo img {
    height: 48px;
    width: auto;
    display: block;
    background: var(--white);
    border-radius: 4px;
    padding: 6px 14px;
  }

  .footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
  }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .fade-up { animation: fadeUp 0.7s ease both; }
  .delay-1 { animation-delay: 0.15s; }
  .delay-2 { animation-delay: 0.3s; }
  .delay-3 { animation-delay: 0.45s; }

  /* ── RESPONSIVE BASICS ── */
  @media (max-width: 960px) {
    section { padding: 4rem 1.5rem; }
    nav { padding: 0 1rem; padding-left: max(1rem, env(safe-area-inset-left)); padding-right: max(1rem, env(safe-area-inset-right)); }
    .nav-links { display: none; }
    .nav-toggle { display: flex; padding: 0.9rem; margin-right: -0.4rem; justify-content: center; }
    .nav-logo img { height: 48px; padding: 5px 12px; }
    nav { height: 72px; }
    #hero { margin-top: 72px; min-height: calc(100vh - 72px); min-height: calc(100svh - 72px); grid-template-columns: 1fr; }
    .mobile-menu { top: 72px; max-height: calc(100vh - 72px); max-height: calc(100dvh - 72px); }
    section { scroll-margin-top: 76px; }
    .hero-left { padding: 3rem 1.5rem; }
    .hero-right { display: none; }
    .hero-stats { gap: 0; padding-top: 1.5rem; }
    .hero-stat { padding-right: 0.9rem; margin-right: 0.9rem; }
    .hero-stat-num { font-size: 1.7rem; }
    .hero-stat-label { font-size: 0.7rem; }
    #about, #territory, #contact { grid-template-columns: 1fr; gap: 2.5rem; }
    .territory-map { order: 2; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
    .process-steps::before { display: none; }
    .process-step { text-align: left; display: flex; gap: 1.25rem; align-items: flex-start; padding: 0; }
    .step-num { margin: 0; flex-shrink: 0; width: 3.25rem; height: 3.25rem; font-size: 1rem; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .services-header { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
    .territory-list { grid-template-columns: 1fr; }
    .map-frame { box-shadow: -6px 6px 0 var(--gold); padding: 1.5rem; }
    .about-photo { box-shadow: -6px 6px 0 var(--gold); }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; padding-left: max(1.5rem, env(safe-area-inset-left)); padding-right: max(1.5rem, env(safe-area-inset-right)); }
  }

  @media (max-width: 600px) {
    section { padding: 3rem 1.25rem; }
    .hero-h1 { font-size: clamp(2.5rem, 11vw, 3.25rem); }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 1.5rem; }
    /* 16px+ inputs prevent iOS Safari from auto-zooming on focus */
    .form-input, .form-select, .form-textarea { font-size: 1rem; padding: 0.8rem 0.9rem; }
    .about-ink-block { padding: 2rem 1.5rem; }
    .about-pillars { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; padding: 1rem 2rem; }
    .hero-stats { flex-direction: column; gap: 1.25rem; }
    .hero-stat { border-right: none; margin-right: 0; padding-right: 0; display: flex; align-items: baseline; gap: 0.75rem; }
    .hero-stat-num { font-size: 1.6rem; min-width: 4.5rem; }
    .hero-stat-label { font-size: 0.8rem; }
    .footer-links { gap: 0.5rem; }
    .footer-links a { display: inline-block; padding: 0.9rem 0.75rem; line-height: 1.4; }
  }

  /* ── REDUCED MOTION ── */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .marquee-track { animation: none; }
    .fade-up, .delay-1, .delay-2, .delay-3 { animation: none; }
    .btn-primary, .btn-primary:hover, .btn-primary:active,
    .btn-outline:active { transform: none; }
  }

  /* ===== SERVICES DROPDOWN ===== */
  .nav-item { position: relative; }
  .nav-item.has-dropdown > a { display: inline-flex; align-items: center; gap: 0.4rem; }
  .nav-caret { transition: transform 0.2s ease; opacity: 0.85; flex-shrink: 0; }
  .nav-item.has-dropdown:hover .nav-caret,
  .nav-item.has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
  .nav-dropdown {
    position: absolute; top: calc(100% + 0.75rem); left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 210px; list-style: none; margin: 0; padding: 0.5rem;
    background: var(--ink);
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 24px 48px -20px rgba(0,0,0,0.55);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
  }
  .nav-dropdown::before { content: ''; position: absolute; top: -0.85rem; left: 0; right: 0; height: 0.85rem; }
  .nav-item.has-dropdown:hover .nav-dropdown,
  .nav-item.has-dropdown:focus-within .nav-dropdown {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown li { list-style: none; }
  .nav-dropdown a {
    display: block; padding: 0.7rem 1rem; border-radius: 6px;
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500; color: rgba(255,255,255,0.8); white-space: nowrap;
    text-decoration: none; transition: background 0.18s ease, color 0.18s ease;
  }
  .nav-dropdown a:hover { background: rgba(255,255,255,0.07); color: var(--gold-light); }
  .nav-dropdown a[aria-current="page"] { color: var(--gold); }
  /* Mobile nested sub-item */
  .mobile-menu .mobile-sub {
    padding-left: 2.75rem; font-size: 0.82rem;
    color: rgba(255,255,255,0.7); text-transform: uppercase;
  }
  .mobile-menu .mobile-sub::before { content: '\21B3'; margin-right: 0.6rem; color: var(--gold); opacity: 0.9; }
  .mobile-menu .mobile-sub[aria-current="page"] { color: var(--gold-light); }

/* ===== SERVICES PAGE ===== */
  #svc-hero {
    margin-top: 88px;
    background: var(--ink);
    color: var(--white);
    padding: 6rem 3rem 5rem;
    position: relative;
    overflow: hidden;
  }
  #svc-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(120deg, rgba(200,146,42,0.10), transparent 55%),
      radial-gradient(circle at 82% 18%, rgba(227,182,92,0.14), transparent 42%);
    pointer-events: none;
  }
  .svc-hero-inner { max-width: 900px; margin: 0 auto; position: relative; }
  .svc-hero-eyebrow {
    font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light);
    display: inline-flex; align-items: center; gap: 0.85rem; margin-bottom: 1.5rem;
  }
  .svc-hero-eyebrow::before { content:''; width: 34px; height: 2px; background: var(--gold); display:inline-block; }
  .svc-hero h1 {
    font-family: var(--serif); font-weight: 900; line-height: 1.04;
    font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -0.02em; margin-bottom: 1.5rem;
  }
  .svc-hero h1 em { font-style: italic; color: var(--gold-light); }
  .svc-hero p {
    font-family: var(--sans); font-weight: 300; font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.65; color: rgba(255,255,255,0.82); max-width: 640px;
  }

  #pricing { padding: 5.5rem 3rem; background: var(--paper); }
  .pricing-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
  .pricing-head .section-label { justify-content: center; }
  .pricing-head h2 {
    font-family: var(--serif); font-weight: 700; color: var(--ink);
    font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.1; margin: 0.5rem 0 1rem;
  }
  .pricing-head p { font-family: var(--sans); font-weight: 300; color: var(--ink-mid); font-size: 1.08rem; line-height: 1.6; }

  .pricing-grid {
    max-width: 1120px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
    align-items: stretch;
  }
  .price-card {
    background: var(--white); border: 1px solid var(--paper-mid); border-radius: 14px;
    padding: 2.5rem 2rem; display: flex; flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .price-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -24px rgba(10,36,64,0.35); border-color: var(--gold-light); }
  .price-card.featured {
    background: var(--ink); border-color: var(--ink);
    box-shadow: 0 26px 60px -28px rgba(10,36,64,0.7);
    position: relative;
  }
  .price-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--ink); font-family: var(--sans);
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 999px; white-space: nowrap;
  }
  .price-tier {
    font-family: var(--sans); font-weight: 600; font-size: 0.82rem;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 1rem;
  }
  .price-card.featured .price-tier { color: var(--gold-light); }
  .price-amount { font-family: var(--serif); font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 0.35rem; }
  .price-amount .curr { font-size: 1.4rem; vertical-align: 0.7rem; margin-right: 0.1rem; color: var(--ink-mid); }
  .price-amount .num { font-size: 3.1rem; }
  .price-card.featured .price-amount, .price-card.featured .price-amount .curr { color: var(--white); }
  .price-note { font-family: var(--sans); font-size: 0.9rem; color: var(--ink-light); margin-bottom: 1.75rem; }
  .price-card.featured .price-note { color: rgba(255,255,255,0.6); }
  .price-desc { font-family: var(--sans); font-weight: 300; font-size: 0.98rem; line-height: 1.55; color: var(--ink-mid); margin-bottom: 1.5rem; }
  .price-card.featured .price-desc { color: rgba(255,255,255,0.8); }

  .price-features { list-style: none; margin: 0 0 2rem; padding: 0; flex-grow: 1; }
  .price-features li {
    font-family: var(--sans); font-size: 0.94rem; color: var(--ink-mid);
    padding: 0.55rem 0 0.55rem 1.7rem; position: relative; border-bottom: 1px solid var(--paper-dark);
  }
  .price-features li:last-child { border-bottom: none; }
  .price-features li::before {
    content: ''; position: absolute; left: 0; top: 0.78rem;
    width: 9px; height: 9px; border-radius: 50%; background: var(--gold);
  }
  .price-card.featured .price-features li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.12); }
  .price-card.featured .price-features li::before { background: var(--gold-light); }

  .price-cta {
    display: block; text-align: center; font-family: var(--sans); font-weight: 600;
    font-size: 0.95rem; letter-spacing: 0.02em; padding: 0.95rem 1.5rem; border-radius: 8px;
    text-decoration: none; transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  }
  .price-cta.solid { background: var(--gold); color: var(--ink); }
  .price-cta.solid:hover { background: var(--gold-light); transform: translateY(-1px); }
  .price-cta.solid:active { transform: translateY(1px); }
  .price-cta.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--paper-mid); }
  .price-cta.ghost:hover { border-color: var(--gold); color: var(--gold); }
  .price-card.featured .price-cta.ghost { color: var(--white); border-color: rgba(255,255,255,0.3); }
  .price-card.featured .price-cta.ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

  .pricing-foot {
    max-width: 760px; margin: 3.5rem auto 0; text-align: center;
    font-family: var(--sans); font-weight: 300; color: var(--ink-mid); font-size: 1rem; line-height: 1.6;
  }
  .pricing-foot a { color: var(--gold); text-decoration: none; font-weight: 500; border-bottom: 1px solid transparent; }
  .pricing-foot a:hover { border-bottom-color: var(--gold); }

  @media (max-width: 960px) {
    #svc-hero { margin-top: 72px; padding: 4rem 1.5rem 3.5rem; }
    #pricing { padding: 4rem 1.5rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 440px; }
    .price-card.featured { order: -1; }
  }
  @media (max-width: 600px) {
    #svc-hero { padding: 3rem 1.25rem 2.75rem; }
    #pricing { padding: 3rem 1.25rem; }
    .price-card { padding: 2.25rem 1.5rem; }
  }
  @media (prefers-reduced-motion: reduce) {
    .price-card, .price-card:hover, .price-cta:hover, .price-cta:active { transform: none; }
  }

/* ===== PRODUCTS PAGE ===== */
  #products { padding: 5rem 3rem; background: var(--paper); }
  .products-head { max-width: 1120px; margin: 0 auto 2.5rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
  .products-head h2 { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: clamp(1.8rem,3.5vw,2.6rem); line-height: 1.1; margin-top: 0.4rem; }
  .products-tools { display: flex; align-items: center; gap: 1.5rem; }
  .products-count { font-family: var(--sans); font-size: 0.9rem; color: var(--ink-light); }
  .products-sort { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--sans); font-size: 0.85rem; color: var(--ink-mid); }
  .products-sort select { font-family: var(--sans); font-size: 0.9rem; color: var(--ink); background: var(--white); border: 1px solid var(--paper-mid); border-radius: 6px; padding: 0.55rem 0.75rem; }
  .product-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
  .product-card { background: var(--white); border: 1px solid var(--paper-mid); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
  .product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -22px rgba(10,36,64,.35); border-color: var(--gold-light); }
  .product-thumb { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; }
  .product-thumb svg { width: 38%; height: 38%; }
  .product-thumb.has-photo { padding: 0; }
  .product-thumb.has-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .tile-navy { background: var(--ink); color: var(--gold-light); }
  .tile-gold { background: var(--gold); color: var(--ink); }
  .tile-light { background: var(--paper-mid); color: var(--ink-mid); }
  .tile-red  { background: var(--red); color: #fff; }
  .product-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
  .product-name { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 1.2rem; line-height: 1.2; margin-bottom: 0.3rem; }
  .product-spec { font-family: var(--sans); font-weight: 300; font-size: 0.86rem; color: var(--ink-light); margin-bottom: 1rem; }
  .product-price { font-family: var(--sans); color: var(--ink); font-weight: 600; font-size: 1.05rem; margin-top: auto; margin-bottom: 1.1rem; }
  .product-price .from { font-weight: 400; color: var(--ink-light); font-size: 0.8rem; margin-right: 0.25rem; }
  .product-price .unit { font-weight: 400; color: var(--ink-light); font-size: 0.8rem; margin-left: 0.2rem; }
  .product-cta { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; font-family: var(--sans); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em; padding: 0.75rem 1rem; border-radius: 7px; background: var(--ink); color: #fff; transition: background .2s ease, transform .15s ease; }
  .product-card:hover .product-cta { background: var(--ink-mid); }
  .products-foot { max-width: 1120px; margin: 2.75rem auto 0; text-align: center; font-family: var(--sans); font-weight: 300; color: var(--ink-mid); }
  .products-foot a { color: var(--gold); text-decoration: none; font-weight: 500; border-bottom: 1px solid transparent; }
  .products-foot a:hover { border-bottom-color: var(--gold); }

  @media (max-width: 960px) {
    #products { padding: 3.5rem 1.5rem; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  }
  @media (max-width: 600px) {
    #products { padding: 3rem 1.25rem; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .product-body { padding: 1.1rem 1.1rem 1.3rem; }
    .product-name { font-size: 1.05rem; }
    .products-tools { width: 100%; justify-content: space-between; gap: 0.75rem; }
  }
  @media (max-width: 380px) { .product-grid { grid-template-columns: 1fr; } }
  @media (prefers-reduced-motion: reduce) {
    .product-card, .product-card:hover, .product-cta { transform: none; }
  }

  /* ===== PRODUCT DETAIL PAGE ===== */
  .breadcrumb {
    /* reset inherited base nav {} styles (this is a <nav> element) */
    position: static; height: auto; z-index: auto;
    background: transparent; border: none; display: block;
    max-width: 1120px; margin: 88px auto 0; padding: 1.75rem 3rem 0;
    font-family: var(--sans); font-size: 0.82rem; color: var(--ink-light);
  }
  .breadcrumb a { color: var(--ink-mid); text-decoration: none; }
  .breadcrumb a:hover { color: var(--gold); }
  .breadcrumb .sep { margin: 0 0.5rem; opacity: 0.45; }
  .breadcrumb .current { color: var(--ink); }

  #product-detail {
    max-width: 1120px; margin: 0 auto; padding: 2rem 3rem 5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start;
  }
  .pd-media {
    position: relative; border-radius: 6px; overflow: hidden;
    box-shadow: -12px 12px 0 var(--gold);
  }
  .pd-media img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }

  .pd-eyebrow {
    font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
    display: inline-flex; align-items: center; gap: 0.75rem;
  }
  .pd-eyebrow::before { content:''; width: 28px; height: 2px; background: var(--gold); display: inline-block; }
  .pd-title {
    font-family: var(--serif); font-weight: 700; color: var(--ink);
    font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.08; margin: 0.6rem 0 1rem;
  }
  .pd-desc { font-family: var(--sans); font-weight: 300; color: var(--ink-mid); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.75rem; }
  .pd-specs { list-style: none; margin: 0 0 2rem; padding: 0; border-top: 1px solid var(--paper-mid); }
  .pd-specs li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--paper-mid); font-family: var(--sans); font-size: 0.92rem; }
  .pd-specs .k { color: var(--ink-light); }
  .pd-specs .v { color: var(--ink); font-weight: 500; text-align: right; }

  /* ----- configurator ----- */
  .pd-config { background: var(--paper); border: 1px solid var(--paper-mid); border-radius: 10px; padding: 1.75rem; }
  .pd-config-label { font-family: var(--sans); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 0.9rem; }
  .qty-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.1rem; }
  .qty-chip { font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--ink-mid); background: var(--white); border: 1px solid var(--paper-mid); border-radius: 999px; padding: 0.5rem 1rem; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
  .qty-chip:hover { border-color: var(--gold); color: var(--ink); }
  .qty-chip.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

  /* option selector (finish, etc.) — same pill look as quantity chips */
  .opt-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
  .opt-chip { font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--ink-mid); background: var(--white); border: 1px solid var(--paper-mid); border-radius: 999px; padding: 0.5rem 1rem; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
  .opt-chip:hover { border-color: var(--gold); color: var(--ink); }
  .opt-chip.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

  .qty-control { display: flex; align-items: stretch; width: 200px; max-width: 100%; margin-bottom: 1.5rem; }
  .qty-btn { width: 52px; flex-shrink: 0; background: var(--white); border: 1px solid var(--paper-mid); color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s, border-color .15s; }
  .qty-btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
  .qty-btn.minus { border-radius: 8px 0 0 8px; }
  .qty-btn.plus { border-radius: 0 8px 8px 0; }
  .qty-input { flex: 1; min-width: 0; text-align: center; font-family: var(--sans); font-size: 1.1rem; font-weight: 600; color: var(--ink); background: var(--white); border: 1px solid var(--paper-mid); border-left: none; border-right: none; -moz-appearance: textfield; }
  .qty-input:focus { outline: 2px solid var(--gold-light); outline-offset: -2px; }
  .qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

  .pd-price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.3rem; }
  .pd-price { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 2.6rem; line-height: 1; }
  .pd-price-unit { font-family: var(--sans); font-size: 0.9rem; color: var(--ink-light); }
  .pd-price-note { font-family: var(--sans); font-size: 0.8rem; color: var(--ink-light); margin-bottom: 1.5rem; }

  .pd-cta { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; background: var(--gold); color: var(--ink); font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; font-size: 0.95rem; padding: 1rem 1.5rem; border-radius: 8px; border: none; text-decoration: none; cursor: pointer; transition: background .2s, transform .15s; }
  .pd-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
  .pd-cta:active { transform: translateY(1px); }
  .pd-artwork-note { font-family: var(--sans); font-size: 0.85rem; color: var(--ink-mid); line-height: 1.5; margin-top: 1.25rem; padding: 0.9rem 1rem; background: rgba(200,146,42,0.08); border-left: 3px solid var(--gold); border-radius: 4px; }
  .pd-artwork-note strong { color: var(--ink); }

  @media (max-width: 960px) {
    .breadcrumb { margin-top: 72px; padding: 1.25rem 1.5rem 0; }
    #product-detail { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem 1.5rem 3.5rem; }
    .pd-media { box-shadow: -6px 6px 0 var(--gold); }
  }
  @media (max-width: 600px) {
    .breadcrumb { padding: 1.25rem 1.25rem 0; }
    #product-detail { padding: 1.25rem 1.25rem 3rem; }
    .pd-price { font-size: 2.2rem; }
  }
  @media (prefers-reduced-motion: reduce) {
    .pd-cta, .pd-cta:hover, .pd-cta:active { transform: none; }
    .qty-btn, .qty-chip { transition: none; }
  }

  /* ===== ARCHITECTURAL PLANS PAGE ===== */
  #arch-hero { margin-top: 88px; background: var(--ink); color: var(--white); padding: 5rem 3rem; position: relative; overflow: hidden; }
  #arch-hero::before { content:''; position:absolute; inset:0; background: linear-gradient(120deg, rgba(200,146,42,0.10), transparent 55%); pointer-events:none; }
  .arch-hero-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; position: relative; }
  .arch-eyebrow { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); display: inline-flex; align-items: center; gap: 0.85rem; }
  .arch-eyebrow::before { content:''; width: 34px; height: 2px; background: var(--gold); display:inline-block; }
  .arch-hero h1 { font-family: var(--serif); font-weight: 900; line-height: 1.05; font-size: clamp(2.3rem, 5vw, 3.7rem); letter-spacing: -0.02em; margin: 1.25rem 0; }
  .arch-hero h1 em { font-style: italic; color: var(--gold-light); }
  .arch-hero p { font-family: var(--sans); font-weight: 300; font-size: clamp(1.05rem,2vw,1.25rem); line-height: 1.6; color: rgba(255,255,255,0.82); max-width: 520px; }
  .arch-hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
  .arch-hero-media { border-radius: 6px; overflow: hidden; box-shadow: -12px 12px 0 var(--gold); }
  .arch-hero-media img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }

  #oneoff { padding: 5rem 3rem; background: var(--paper); }
  .oneoff-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
  .oneoff-text h2 { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: clamp(1.8rem,3.5vw,2.6rem); line-height:1.1; margin: 0.5rem 0 1rem; }
  .oneoff-text p { font-family: var(--sans); font-weight: 300; color: var(--ink-mid); font-size:1.05rem; line-height:1.6; margin-bottom: 1.25rem; }
  .oneoff-features { list-style:none; margin:0; padding:0; }
  .oneoff-features li { font-family: var(--sans); font-size:0.95rem; color: var(--ink-mid); padding: 0.5rem 0 0.5rem 1.6rem; position: relative; }
  .oneoff-features li::before { content:''; position:absolute; left:0; top:0.78rem; width:8px; height:8px; border-radius:50%; background: var(--gold); }

  #subscribe { padding: 5.5rem 3rem; background: var(--paper-dark); }

  @media (max-width: 960px) {
    #arch-hero { margin-top: 72px; padding: 3.5rem 1.5rem; }
    .arch-hero-inner { grid-template-columns: 1fr; gap: 2.25rem; }
    .arch-hero-media { box-shadow: -6px 6px 0 var(--gold); order: -1; }
    #oneoff { padding: 3.5rem 1.5rem; }
    .oneoff-inner { grid-template-columns: 1fr; gap: 2rem; }
    #subscribe { padding: 4rem 1.5rem; }
  }
  @media (max-width: 600px) {
    #arch-hero { padding: 3rem 1.25rem; }
    #oneoff { padding: 3rem 1.25rem; }
    #subscribe { padding: 3rem 1.25rem; }
    .arch-hero-actions .btn-primary, .arch-hero-actions .btn-outline { flex: 1; text-align: center; }
  }
