    /* ============== HERO ============== */
    .hero { min-height: 110vh; position: relative; margin-top: 0; }

    .hero-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('images/storefront.webp');
      background-size: cover;
      background-position: center 72%;
      background-repeat: no-repeat;
      background-color: #1a1a1a;
      z-index: 0;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 10, 0.15);
    }

    .hero-text-backdrop {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: min(900px, 90%);
      height: 60vh;
      background: radial-gradient(ellipse at center,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(10, 10, 10, 0.15) 70%,
        transparent 100%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      width: 100%;
      max-width: 1400px;
      padding: 0 32px;
      transition: opacity 0.1s linear, transform 0.1s linear;
      will-change: opacity, transform;
    }

    .hero-tag {
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--bone);
      margin-bottom: 32px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
      opacity: 0.9;
    }

    .hero-tag::before, .hero-tag::after {
      content: '';
      width: 60px;
      height: 1px;
      background: var(--bone);
      opacity: 0.6;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      line-height: 0.85;
      letter-spacing: 0.01em;
      color: var(--bone);
      width: 100%;
      text-shadow: 0 2px 30px rgba(0,0,0,0.6);
    }

    .hero-title .line-1 { font-size: clamp(36px, 7vw, 110px); display: block; margin-bottom: 8px; }
    .hero-title .line-2 { font-size: clamp(56px, 12vw, 200px); display: block; color: var(--bone); letter-spacing: -0.01em; line-height: 0.9; }

    /* B&W divider — solid white line instead of red/white/blue */
    .hero-title .divider {
      display: block;
      width: 120px;
      height: 2px;
      background: var(--bone);
      margin: 22px auto;
    }

    .hero-title .line-3 { font-size: clamp(20px, 3.5vw, 48px); display: block; color: var(--bone); letter-spacing: 0.1em; font-weight: 400; }

    /* "&" — italic serif, no color */
    .hero-title .amp {
      font-style: italic;
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      margin-right: 6px;
      color: var(--bone);
      opacity: 0.85;
    }

    .hero-scroll-cue {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--bone);
      opacity: 0.85;
      display: flex;
      align-items: center;
      gap: 12px;
      animation: bob 2.4s ease-in-out infinite;
      z-index: 3;
    }
    .hero-scroll-cue::after { content: '↓'; font-size: 14px; }

    @keyframes bob {
      0%, 100% { transform: translate(-50%, 0); }
      50% { transform: translate(-50%, 6px); }
    }

    .hero-corner {
      position: absolute;
      width: 60px;
      height: 60px;
      border: 2px solid var(--bone);
      z-index: 3;
      opacity: 0.7;
    }
    .hero-corner.tl { top: 100px; left: 48px; border-right: none; border-bottom: none; }
    .hero-corner.tr { top: 100px; right: 48px; border-left: none; border-bottom: none; }
    .hero-corner.bl { bottom: 48px; left: 48px; border-right: none; border-top: none; }
    .hero-corner.br { bottom: 48px; right: 48px; border-left: none; border-top: none; }

    @media (max-width: 768px) {
      .hero-corner { display: none; }
      .hero-tag::before, .hero-tag::after { width: 24px; }
      .hero-tag { font-size: 10px; letter-spacing: 0.3em; }
      .hero-content { padding: 0 16px; }
    }

    /* ============== INFO STRIP ============== */
    .info-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: var(--bone);
      border-top: none;
      border-bottom: none;
    }

    .info-cell {
      padding: 60px 40px;
      border-right: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: background 0.3s;
      position: relative;
      overflow: hidden;
    }
    .info-cell:last-child { border-right: none; }

    /* Hover slide bar in B&W */
    .info-cell::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 0;
      height: 4px;
      background: var(--ink);
      transition: width 0.4s ease;
    }
    .info-cell:hover::before { width: 100%; }
    .info-cell:hover { background: var(--paper); }

    .info-label {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--mid);
    }

    .info-value {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 0.03em;
      color: var(--ink);
      line-height: 1.1;
    }

    .info-cell a { color: inherit; text-decoration: none; }

    @media (max-width: 768px) {
      .info-strip { grid-template-columns: 1fr; }
      .info-cell { border-right: none; border-bottom: none; padding: 40px 24px; }
    }

    /* ============== SERVICES ============== */
    .services {
      padding: 140px 48px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .services-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 80px;
    }

    .services-head h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 7vw, 110px);
      line-height: 0.9;
      letter-spacing: 0.01em;
    }
    .services-head h2 em {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 400;
      color: var(--mid);
    }

    .services-head p {
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
      font-size: 17px;
      line-height: 1.7;
      color: var(--soft);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 2px solid var(--ink);
      border-bottom: 2px solid var(--ink);
    }

    .service {
      padding: 40px 28px;
      border-right: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
      position: relative;
      transition: background 0.3s;
      min-height: 240px;
    }
    .service:last-child { border-right: none; }
    .service:hover { background: var(--ink); color: var(--bone); }
    .service:hover .service-num { color: rgba(250, 250, 250, 0.5); }

    .service-num {
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.3em;
      color: var(--mid);
      transition: color 0.3s;
    }

    .service-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 0.02em;
      line-height: 1;
    }

    .service-desc {
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
      font-size: 14px;
      line-height: 1.6;
      opacity: 0.8;
      flex: 1;
    }

    @media (max-width: 900px) {
      .services-head { grid-template-columns: 1fr; gap: 24px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .services { padding: 80px 24px; }
    }
    @media (max-width: 500px) {
      .services-grid { grid-template-columns: 1fr; }
      .service { border-right: none; border-bottom: none; min-height: 180px; }
    }

    /* Shop photos row inside services section */
    .shop-photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 60px;
    }

    .shop-photo {
      position: relative;
      overflow: hidden;
      border: 2px solid var(--ink);
      aspect-ratio: 4 / 5;
      background: var(--ink);
    }

    .shop-photo img,
    .shop-photo video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }

    .shop-photo:hover img,
    .shop-photo:hover video {
      transform: scale(1.04);
    }

    .shop-photo-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 18px 22px;
      background: linear-gradient(180deg, transparent, rgba(10,10,10,0.85));
      color: var(--bone);
    }

    .shop-photo-label .tag {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(250, 250, 250, 0.7);
      margin-bottom: 4px;
    }

    .shop-photo-label .name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 0.04em;
    }

    @media (max-width: 700px) {
      /* keep the photo row a single column, but the video reel stays 2x2 */
      .shop-photos:not(.shop-reel) { grid-template-columns: 1fr; }
      .shop-reel { gap: 12px; }
      .shop-photo-label { padding: 12px 14px; }
      .shop-photo-label .name { font-size: 18px; }
    }

    /* ============== MAP ============== */
    .map-section {
      position: relative;
      background: var(--ink);
      overflow: hidden;
    }

    .map-frame {
      position: relative;
      min-height: 620px;
      background: var(--ink);
    }
    .map-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      /* desaturate to fit the B&W theme; lifts to color on hover */
      filter: grayscale(1) contrast(1.05);
      transition: filter 0.5s ease;
    }
    .map-section:hover .map-frame iframe { filter: grayscale(0); }

    /* Text card overlaid on top of the map */
    .map-head {
      position: absolute;
      top: 0; left: 0; bottom: 0;
      z-index: 2;
      width: min(520px, 88%);
      padding: 80px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: var(--bone);
      background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.82) 60%,
        rgba(10, 10, 10, 0) 100%
      );
      pointer-events: none;
    }
    /* keep the button clickable through the no-pointer overlay */
    .map-head .map-directions { pointer-events: auto; }

    .map-head h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 5.5vw, 80px);
      line-height: 0.9;
      letter-spacing: 0.01em;
      margin-bottom: 24px;
    }
    .map-head h2 em {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 400;
      color: var(--pole-red);
    }

    .map-head p {
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
      font-size: 17px;
      line-height: 1.7;
      color: rgba(250, 250, 250, 0.78);
      margin-bottom: 36px;
    }

    .map-directions {
      align-self: flex-start;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 16px 28px;
      background: var(--bone);
      color: var(--ink);
      text-decoration: none;
      border: 1.5px solid var(--bone);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: all 0.3s;
    }
    .map-directions:hover { background: transparent; color: var(--bone); }
    .map-directions span { transition: transform 0.3s; }
    .map-directions:hover span { transform: translateX(6px); }

    @media (max-width: 768px) {
      .map-frame { min-height: 520px; }
      .map-head {
        width: 100%;
        padding: 40px 24px;
        justify-content: flex-end;
        background: linear-gradient(
          0deg,
          rgba(10, 10, 10, 0.94) 0%,
          rgba(10, 10, 10, 0.82) 45%,
          rgba(10, 10, 10, 0) 100%
        );
      }
    }
