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

    :root {
      --teal:       #1a7a7a;
      --teal-light: #2da0a0;
      --teal-deep:  #0f5555;
      --gold:       #c9a84c;
      --navy:       #112240;
      --white:      #ffffff;
      --off-white:  #f7fbfb;
      --text:       #1c2b2b;
      --text-muted: #4a6060;
      --border:     rgba(26,122,122,0.15);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ─── TYPOGRAPHY ─── */
    .display { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }
    .display-lg { font-size: clamp(3rem, 6vw, 6rem); }
    .display-md { font-size: clamp(2rem, 4vw, 3.5rem); }
    .display-sm { font-size: clamp(1.4rem, 2.5vw, 2rem); }
    .label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
    .body-lg { font-size: 1.05rem; line-height: 1.75; }
    .body { font-size: 0.95rem; line-height: 1.7; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.4rem 4vw;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 2px 24px rgba(26,122,122,0.1); }

    .nav-logo {
      display: flex; align-items: center; gap: 0.75rem; text-decoration: none;
    }
    .nav-logo-svg { width: 42px; height: 42px; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text span:first-child {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 600; color: var(--teal);
      letter-spacing: 0.04em;
    }
    .nav-logo-text span:last-child {
      font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--text-muted); font-weight: 500;
    }

    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
      text-decoration: none; color: var(--text-muted); font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--teal); }

    .nav-cta {
      background: var(--teal); color: var(--white);
      padding: 0.55rem 1.4rem; border-radius: 2px;
      font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
      text-decoration: none; font-weight: 600;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--teal-deep); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      background: var(--navy);
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(135deg, rgba(11,34,64,0.96) 0%, rgba(15,85,85,0.85) 50%, rgba(26,122,122,0.6) 100%);
    }

    /* Animated water ripple */
    .hero-water {
      position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
      overflow: hidden;
    }
    .wave {
      position: absolute; bottom: 0; left: -10%; width: 120%;
      border-radius: 50%;
      opacity: 0.08;
    }
    .wave1 {
      height: 160px; background: var(--teal-light);
      animation: wave 8s ease-in-out infinite;
    }
    .wave2 {
      height: 130px; background: #4dd4d4;
      animation: wave 10s ease-in-out 1s infinite reverse;
    }
    .wave3 {
      height: 100px; background: var(--white);
      animation: wave 12s ease-in-out 0.5s infinite;
    }
    @keyframes wave {
      0%, 100% { transform: translateX(0) scaleY(1); }
      50% { transform: translateX(-5%) scaleY(1.1); }
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 8rem 4vw 6rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }

    .hero-eyebrow {
      color: var(--gold); margin-bottom: 1.5rem;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .hero-eyebrow::before {
      content: ''; display: block; width: 2rem; height: 1px; background: var(--gold);
    }

    .hero h1 { color: var(--white); margin-bottom: 1.5rem; }
    .hero h1 em { color: var(--teal-light); font-style: italic; }

    .hero-sub {
      color: rgba(255,255,255,0.72); margin-bottom: 2.5rem; font-size: 1rem; line-height: 1.8;
    }

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

    .btn-primary {
      background: var(--teal); color: var(--white);
      padding: 0.9rem 2rem; border-radius: 2px;
      font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
      text-decoration: none; font-weight: 600;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); }

    .btn-outline {
      border: 1px solid rgba(255,255,255,0.35); color: var(--white);
      padding: 0.9rem 2rem; border-radius: 2px;
      font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
      text-decoration: none; font-weight: 600;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.08); transform: translateY(-1px); }

    .hero-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
      padding: 2.5rem; background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
      backdrop-filter: blur(8px);
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300;
      color: var(--teal-light); line-height: 1;
    }
    .stat-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.4rem; }

    /* ─── SECTION BASE ─── */
    section { padding: 6rem 4vw; }
    .container { max-width: 1200px; margin: 0 auto; }

    .section-eyebrow {
      color: var(--teal); margin-bottom: 1rem;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .section-eyebrow::before {
      content: ''; display: block; width: 1.5rem; height: 1px; background: var(--teal);
    }

    .section-header { max-width: 640px; }
    .section-header h2 { margin-bottom: 1.25rem; }
    .section-header p { color: var(--text-muted); }

    /* ─── SERVICES ─── */
    .services { background: var(--off-white); }

    .services-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5px; margin-top: 4rem;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .service-card {
      background: var(--white); padding: 2.5rem;
      transition: background 0.25s;
      position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--teal); transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }
    .service-card:hover { background: #f0fafa; }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 48px; height: 48px; margin-bottom: 1.5rem;
      color: var(--teal);
    }

    .service-card h3 {
      font-family: 'Cormorant Garamond', serif; font-weight: 600;
      font-size: 1.4rem; margin-bottom: 0.75rem; color: var(--text);
    }
    .service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

    .service-tag {
      display: inline-block; margin-top: 1.25rem;
      font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--teal); font-weight: 600;
      padding: 0.3rem 0.75rem; border: 1px solid var(--teal);
      border-radius: 1px;
    }

    /* ─── ECOFINISH FEATURE ─── */
    .ecofinish-section {
      background: var(--navy);
      color: var(--white);
      position: relative; overflow: hidden;
    }
    .ecofinish-section::before {
      content: 'ECO'; position: absolute;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20rem; font-weight: 300;
      color: rgba(255,255,255,0.02);
      right: -4rem; top: 50%; transform: translateY(-50%);
      pointer-events: none;
    }

    .eco-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }

    .eco-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--gold); color: var(--navy);
      padding: 0.4rem 1rem; border-radius: 1px;
      font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .eco-grid h2 { color: var(--white); margin-bottom: 1.25rem; }
    .eco-grid p { color: rgba(255,255,255,0.7); margin-bottom: 1rem; line-height: 1.8; }

    .eco-benefits {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0;
    }
    .eco-benefit {
      display: flex; align-items: flex-start; gap: 0.6rem;
    }
    .eco-benefit-check {
      width: 18px; height: 18px; border-radius: 50%;
      background: rgba(45,160,160,0.2); border: 1px solid var(--teal-light);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 0.1rem;
    }
    .eco-benefit-check svg { width: 10px; height: 10px; color: var(--teal-light); }
    .eco-benefit span { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.4; }

    .eco-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--teal-light); font-size: 0.8rem; letter-spacing: 0.1em;
      text-transform: uppercase; text-decoration: none; font-weight: 600;
      transition: gap 0.2s;
    }
    .eco-link:hover { gap: 0.8rem; }

    /* Colors showcase */
    .colors-showcase {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 4px; padding: 2rem;
    }
    .colors-showcase h4 {
      font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
      color: rgba(255,255,255,0.6); margin-bottom: 1.5rem;
      font-style: italic;
    }
    .color-swatches { display: flex; flex-wrap: wrap; gap: 0.75rem; }

    .swatch {
      position: relative; border-radius: 3px; cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .swatch:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }

    .swatch-block {
      width: 72px; height: 72px; border-radius: 3px 3px 0 0;
      object-fit: cover; display: block;
    }
    .swatch { width: 72px; }
    .swatch-name {
      font-size: 0.55rem; letter-spacing: 0.05em; text-transform: uppercase;
      text-align: center; padding: 0.3rem 0.2rem;
      background: rgba(255,255,255,0.08); border-radius: 0 0 3px 3px;
      color: rgba(255,255,255,0.65); line-height: 1.2; width: 72px;
    }

    /* ─── GALLERY ─── */
    .gallery-section { background: var(--white); }

    .gallery-tabs {
      display: flex; gap: 0; margin: 3rem 0 2rem; border-bottom: 1px solid var(--border);
      overflow-x: auto; -webkit-overflow-scrolling: touch;
    }
    .gallery-tab {
      padding: 0.75rem 1.5rem; cursor: pointer; border: none; background: none;
      font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
      color: var(--text-muted); border-bottom: 2px solid transparent;
      margin-bottom: -1px; white-space: nowrap; transition: color 0.2s;
      font-family: 'Inter', sans-serif;
    }
    .gallery-tab.active {
      color: var(--teal); border-bottom-color: var(--teal);
    }
    .gallery-tab:hover { color: var(--teal); }

    .gallery-pane { display: none; }
    .gallery-pane.active { display: block; }

    .gallery-pane-title {
      font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
      font-style: italic; color: var(--text-muted); margin-bottom: 1.5rem;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1rem;
    }

    .gallery-item {
      position: relative; overflow: hidden; border-radius: 2px;
      background: var(--off-white); aspect-ratio: 4/3;
    }

    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img { transform: scale(1.05); }

    .gallery-item-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(17,34,64,0.8) 0%, transparent 60%);
      opacity: 0; transition: opacity 0.3s;
      z-index: 1;
      display: flex; align-items: flex-end; padding: 1.25rem;
    }
    .gallery-item:hover .gallery-item-overlay { opacity: 1; }
    .gallery-item-overlay span {
      color: var(--white); font-size: 0.8rem; font-weight: 500;
    }

    .gallery-placeholder {
      background: linear-gradient(135deg, var(--off-white) 0%, rgba(26,122,122,0.08) 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 0.5rem; color: var(--text-muted);
    }
    .gallery-placeholder svg { width: 36px; height: 36px; opacity: 0.4; }
    .gallery-placeholder span { font-size: 0.8rem; opacity: 0.6; }

    /* ─── SERVICE AREA ─── */
    .service-area { background: var(--off-white); }
    .area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }

    .area-map {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 4px; padding: 2.5rem; text-align: center;
      position: relative; overflow: hidden;
    }
    .area-map::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(26,122,122,0.04) 0%, rgba(45,160,160,0.08) 100%);
    }

    .texas-svg { position: relative; z-index: 1; }

    .area-list { display: flex; flex-direction: column; gap: 1rem; }
    .area-region {
      padding: 1.25rem 1.5rem;
      background: var(--white); border: 1px solid var(--border); border-radius: 2px;
      border-left: 3px solid var(--teal);
    }
    .area-region h4 {
      font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--teal); font-weight: 600; margin-bottom: 0.5rem;
    }
    .area-region p { font-size: 0.9rem; color: var(--text-muted); }

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

    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem;
    }
    .why-item { text-align: center; padding: 2rem 1.5rem; }
    .why-icon {
      width: 56px; height: 56px; margin: 0 auto 1.25rem;
      background: linear-gradient(135deg, rgba(26,122,122,0.1), rgba(45,160,160,0.15));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      color: var(--teal);
    }
    .why-icon svg { width: 24px; height: 24px; }
    .why-item h3 {
      font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600;
      margin-bottom: 0.75rem;
    }
    .why-item p { font-size: 0.9rem; color: var(--text-muted); }

    /* ─── CONTACT ─── */
    .contact-section { background: var(--teal-deep); color: var(--white); }

    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

    .contact-section h2 { color: var(--white); margin-bottom: 1rem; }
    .contact-section .lead { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; }

    .contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
    .contact-item { display: flex; align-items: flex-start; gap: 1rem; }
    .contact-item-icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--teal-light);
    }
    .contact-item-icon svg { width: 18px; height: 18px; }
    .contact-item-text { }
    .contact-item-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.25rem; }
    .contact-item-value { font-size: 1rem; color: var(--white); }
    .contact-item-value a { color: var(--teal-light); text-decoration: none; }

    .contact-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; padding: 2.5rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group:last-child { margin-bottom: 0; }
    .form-group label {
      display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; font-weight: 600;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 0.75rem 1rem;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      border-radius: 2px; color: var(--white); font-family: 'Inter', sans-serif;
      font-size: 0.9rem; transition: border-color 0.2s;
      -webkit-appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none; border-color: var(--teal-light);
    }
    .form-group select option { background: var(--teal-deep); }
    .form-group textarea { resize: vertical; min-height: 100px; }

    .btn-submit {
      width: 100%; padding: 0.9rem;
      background: var(--teal); color: var(--white);
      border: none; border-radius: 2px; cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
      transition: background 0.2s;
    }
    .btn-submit:hover { background: var(--teal-light); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--navy); color: rgba(255,255,255,0.5);
      padding: 3rem 4vw;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-logo { display: flex; align-items: center; gap: 0.6rem; }
    .footer-logo span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; color: rgba(255,255,255,0.75);
    }
    footer p { font-size: 0.8rem; }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.75rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--teal-light); }

    /* ─── MOBILE ─── */
    @media (max-width: 768px) {
      .hero-content { grid-template-columns: 1fr; gap: 3rem; }
      .hero-stats { grid-template-columns: repeat(2, 1fr); }
      nav .nav-links { display: none; }
      .eco-grid { grid-template-columns: 1fr; gap: 3rem; }
      .area-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .form-row { grid-template-columns: 1fr; }
      section { padding: 4rem 5vw; }
    }

    /* ─── SCROLL ANIMATION ─── */
    .fade-up {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible {
      opacity: 1; transform: translateY(0);
    }

    /* exclusive dealer banner */
    .exclusive-banner {
      background: linear-gradient(90deg, var(--gold) 0%, #e2b84f 100%);
      color: var(--navy); padding: 0.75rem 4vw;
      text-align: center; font-size: 0.75rem;
      letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
    }
  /* ─── LIGHTBOX ─── */
  .lightbox-overlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.93); align-items: center; justify-content: center;
    cursor: zoom-out;
  }
  .lightbox-overlay.open { display: flex; }

  .lightbox-inner {
    position: relative; max-width: 90vw; max-height: 90vh;
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  }
  .lightbox-inner img {
    max-width: 90vw; max-height: 82vh;
    object-fit: contain; border-radius: 3px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.8);
    cursor: default;
  }
  .lightbox-caption {
    color: rgba(255,255,255,0.65); font-size: 0.85rem;
    letter-spacing: 0.05em; text-align: center;
  }
  .lightbox-close {
    position: absolute; top: -2.5rem; right: 0;
    background: none; border: none; color: rgba(255,255,255,0.6);
    font-size: 1.8rem; cursor: pointer; line-height: 1;
    transition: color 0.2s;
  }
  .lightbox-close:hover { color: var(--white); }

  .lightbox-prev, .lightbox-next {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 1.5rem; cursor: pointer;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; z-index: 10000;
  }
  .lightbox-prev { left: 1.5rem; }
  .lightbox-next { right: 1.5rem; }
  .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.18); }

  /* make gallery items show pointer cursor */
  /* ─── AFTER BADGE ─── */
  .gallery-after-badge {
    position: absolute; top: 0.75rem; left: 0.75rem;
    background: #1a7a7a;
    color: #fff;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    pointer-events: none;
    z-index: 10;
  }
  /* ─── DURING BADGE ─── */
  .gallery-during-badge {
    position: absolute; top: 0.75rem; left: 0.75rem;
    background: #c9a84c;
    color: #112240;
    z-index: 10;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    pointer-events: none;
  }
  /* ─── BEFORE BADGE ─── */
  .gallery-before-badge {
    position: absolute; top: 0.75rem; left: 0.75rem;
    background: #8b0000;
    color: #fff;
    z-index: 10;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    pointer-events: none;
  }
  /* ─── FINISH TAG ─── */
  .gallery-finish-tag {
    position: absolute; bottom: 0.75rem; left: 0.75rem;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    pointer-events: none;
  }
  .gallery-item:not(.gallery-placeholder) { cursor: zoom-in; }
