  :root {
    --ink: #17191C;
    --ink-soft: #4A4E54;
    --ink-faint: #8A8E94;
    --paper: #FBF9F6;
    --paper-alt: #F2EEE8;
    --line: #E4DFD6;
    --brass: #A32638;
    --brass-deep: #7E1C29;
    --navy: #14273F;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, .serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
  section { position: relative; }
  .eyebrow {
    font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--brass); margin-bottom: 20px; display: block;
  }
  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .fade-in.in-view { opacity: 1; transform: translateY(0); }

  /* Header */
  .site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 26px 0; transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
  }
  .site-header.scrolled {
    background: rgba(251,249,246,0.92); backdrop-filter: blur(14px); padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-wrap { display: flex; align-items: center; justify-content: space-between; }
  .logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; letter-spacing: 0.03em; color: var(--paper); transition: color 0.4s ease; display: flex; align-items: center; margin-right: 8px; }
  .site-header.scrolled .logo { color: var(--ink); }
  .logo img { height: 46px; width: auto; display: block; transition: height 0.4s ease; }
  .site-header.scrolled .logo img { height: 40px; }
  .footer-logo img { height: 42px; width: auto; display: block; margin-bottom: 10px; }
  .nav-links { display: flex; gap: 33px; }
  .nav-links a {
    font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(251,249,246,0.85);
    font-weight: 500; position: relative; padding-bottom: 4px;
    transition: color 0.3s ease, opacity 0.3s ease;
  }
  .site-header.scrolled .nav-links a { color: var(--ink-soft); }
  .nav-links a:hover { opacity: 0.85; }
  .nav-links a::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
    background: currentColor; opacity: 0; transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .nav-links a:hover::before { opacity: 0.5; transform: scaleX(1); }
  .nav-links a.active::before { content: none; }

  /* Nav dropdowns */
  .nav-item { position: relative; display: flex; align-items: center; gap: 3px; }
  .dropdown-toggle {
    background: none; border: none; padding: 2px; margin: 0; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: rgba(251,249,246,0.85); transition: color 0.3s ease;
  }
  .site-header.scrolled .dropdown-toggle { color: var(--ink-soft); }
  .dropdown-toggle svg { display: block; transition: transform 0.25s ease; }
  .nav-item:hover .dropdown-toggle svg,
  .nav-item:focus-within .dropdown-toggle svg,
  .nav-item.dropdown-open .dropdown-toggle svg { transform: rotate(180deg); }
  .dropdown-menu {
    position: absolute; top: 100%; left: 50%; min-width: 232px;
    background: var(--paper); border: 1px solid var(--line);
    box-shadow: 0 20px 44px rgba(20,39,63,0.16);
    padding: 10px; z-index: 60;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }
  .nav-item:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
  .dropdown-menu a {
    display: block; padding: 11px 14px; font-size: 12.5px; letter-spacing: 0.02em;
    text-transform: none; color: var(--ink-soft); font-weight: 400; white-space: nowrap;
  }
  .dropdown-menu a::before { content: none; }
  .dropdown-menu a:hover { background: var(--paper-alt); color: var(--ink); opacity: 1; }
  .nav-cta { display: flex; align-items: center; gap: 22px; }
  .nav-phone { font-size: 13px; letter-spacing: 0.04em; color: rgba(251,249,246,0.85); transition: color 0.4s ease; }
  .site-header.scrolled .nav-phone { color: var(--ink-soft); }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 30px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px solid var(--ink); cursor: pointer; white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn:active { transform: translateY(0); }
  .btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .btn-dark:hover { background: transparent; color: var(--ink); box-shadow: 0 8px 20px rgba(23,25,28,0.12); }
  .btn-light { background: transparent; color: var(--paper); border-color: rgba(251,249,246,0.5); }
  .btn-light:hover { background: rgba(251,249,246,0.1); border-color: var(--paper); }
  .btn-brass { background: var(--brass); color: #fff; border-color: var(--brass); }
  .btn-brass:hover { background: var(--brass-deep); border-color: var(--brass-deep); box-shadow: 0 10px 24px rgba(163,38,56,0.28); }
  .nav-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--paper); cursor: pointer; }
  .site-header.scrolled .nav-toggle { color: var(--ink); }

  /* Hero */
  .hero {
    min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--navy) 0%, #10161D 65%, #0B0F14 100%);
    color: var(--paper);
  }
  .hero::before {
    content: ""; position: absolute; inset: 0; opacity: 0.5;
    background:
      radial-gradient(ellipse 900px 500px at 85% 15%, rgba(163,38,56,0.16), transparent 60%),
      repeating-linear-gradient(115deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 60px);
  }
  .hero-content { position: relative; z-index: 2; padding-top: 120px; }
  .hero h1 {
    font-size: clamp(40px, 6vw, 74px); line-height: 1.05; max-width: 820px; margin-bottom: 28px; color: #fff;
  }
  .hero h1 em { color: var(--brass); font-style: normal; }
  .hero p.lead { font-size: 19px; font-weight: 300; color: rgba(251,249,246,0.75); max-width: 480px; margin-bottom: 44px; }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 90px; }
  .hero-stats { display: flex; gap: 56px; padding-top: 36px; border-top: 1px solid rgba(251,249,246,0.15); flex-wrap: wrap; }
  .hero-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--brass); }
  .hero-stat .label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(251,249,246,0.55); margin-top: 4px; }

  @media (max-width: 1140px) {
    .nav-links, .nav-phone { display: none; }
    .nav-toggle { display: block; }
    .site-header.mobile-open .nav-links {
      display: flex; flex-direction: column; gap: 0;
      position: absolute; top: 100%; left: 0; right: 0;
      background: var(--paper); padding: 8px 32px 20px; border-bottom: 1px solid var(--line);
    }
    .site-header.mobile-open .nav-links a {
      color: var(--ink-soft); padding: 14px 0; border-bottom: 1px solid var(--line);
    }
    .site-header.mobile-open .nav-links a:last-child { border-bottom: none; }

    .site-header.mobile-open .nav-item {
      flex-direction: column; align-items: stretch; gap: 0; position: relative;
      border-bottom: 1px solid var(--line);
    }
    .site-header.mobile-open .nav-item > a { border-bottom: none; padding-right: 40px; }
    .site-header.mobile-open .dropdown-toggle {
      position: absolute; right: 0; top: 6px; padding: 10px; color: var(--ink-soft);
    }
    .site-header.mobile-open .dropdown-menu {
      position: static; opacity: 1; visibility: visible; pointer-events: auto;
      transform: none; box-shadow: none; border: none; padding: 0;
      background: transparent; max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .site-header.mobile-open .nav-item.dropdown-open .dropdown-menu { max-height: 320px; }
    .site-header.mobile-open .dropdown-menu a {
      color: var(--ink-faint); padding: 10px 0 10px 14px; border-bottom: none; font-size: 13px;
    }
  }

  /* Pillars */
  .pillars { padding: 150px 0 130px; }
  .pillars-head { max-width: 620px; margin-bottom: 80px; }
  .pillars-head h2 { font-size: clamp(32px, 4vw, 46px); line-height: 1.15; }
  .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: var(--line); }
  .pillar { background: var(--paper); padding: 56px 44px; transition: background 0.4s ease; }
  .pillar:hover { background: var(--paper-alt); }
  .pillar .idx { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: var(--brass); margin-bottom: 28px; letter-spacing: 0.1em; }
  .pillar h3 { font-size: 30px; margin-bottom: 16px; }
  .pillar p { font-size: 15px; color: var(--ink-soft); font-weight: 300; line-height: 1.7; }
  @media (max-width: 860px) { .pillars-grid { grid-template-columns: 1fr; } }

  /* Services */
  .services { padding: 0 0 150px; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .service-card { border-top: 1px solid var(--ink); padding-top: 28px; }
  .service-card h3 { font-size: 24px; margin-bottom: 14px; }
  .service-card p { font-size: 14.5px; color: var(--ink-soft); font-weight: 300; margin-bottom: 18px; }
  .service-card a { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
  @media (max-width: 860px) { .services-grid { grid-template-columns: 1fr; gap: 48px; } }

  /* Feature split (Property Health Check) */
  .feature-split { position: relative; background: var(--navy); color: var(--paper); padding: 130px 0; overflow: hidden; }
  .feature-split::before {
    content: ""; position: absolute; inset: 0;
    background: url('assets/photos/landscaping-xeriscape.jpg') center/cover no-repeat;
    opacity: 0.09; z-index: 0;
  }
  .feature-split::after {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(160deg, rgba(20,39,63,0.94) 0%, rgba(11,15,20,0.97) 100%);
  }
  .feature-split .split-grid { position: relative; z-index: 1; }
  .split-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 80px; align-items: center; }
  .split-visual {
    aspect-ratio: 4/5; border-radius: 2px;
    background: linear-gradient(150deg, #2A3644 0%, #1B2530 55%, #12181F 100%);
    position: relative; overflow: hidden; border: 1px solid rgba(251,249,246,0.08);
  }
  .split-visual::after {
    content: "Property Health Check™ — real project photography to be added";
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 40px; font-size: 12px; letter-spacing: 0.05em; color: rgba(251,249,246,0.35);
    font-family: 'Inter', sans-serif;
  }
  .split-visual::before {
    content: ""; position: absolute; inset: 0;
    background: repeating-linear-gradient(135deg, rgba(163,38,56,0.05) 0px, rgba(163,38,56,0.05) 1px, transparent 1px, transparent 46px);
  }
  .split-copy h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 24px; line-height: 1.15; }
  .split-copy p.lead { font-size: 17px; color: rgba(251,249,246,0.72); font-weight: 300; margin-bottom: 36px; max-width: 460px; }
  .check-list { list-style: none; margin-bottom: 40px; }
  .check-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(251,249,246,0.1); font-size: 14.5px; font-weight: 300; color: rgba(251,249,246,0.85); }
  .check-list li:first-child { border-top: 1px solid rgba(251,249,246,0.1); }
  .check-list .mark { color: var(--brass); font-family: 'Cormorant Garamond', serif; font-size: 16px; }
  @media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; gap: 48px; } }

  /* Membership */
  .membership { padding: 150px 0; }
  .membership-head { max-width: 640px; margin: 0 auto 80px; text-align: center; }
  .membership-head h2 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 20px; }
  .membership-head p { font-size: 16px; color: var(--ink-soft); font-weight: 300; }
  .tiers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); max-width: 920px; margin: 0 auto; }
  .tier { background: var(--paper); padding: 52px 44px; scroll-margin-top: 120px; }
  .tier.signature { background: var(--ink); color: var(--paper); }
  .tier-name { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; font-weight: 600; }
  .tier h3 { font-size: 28px; margin-bottom: 14px; }
  .tier p.desc { font-size: 14.5px; font-weight: 300; margin-bottom: 30px; opacity: 0.75; }
  .tier-list { list-style: none; margin-bottom: 34px; }
  .tier-list li { font-size: 14px; font-weight: 300; padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .tier.signature .tier-list li { border-bottom: 1px solid rgba(251,249,246,0.12); }
  .tier-price { font-size: 13px; opacity: 0.6; margin-bottom: 26px; font-style: italic; }
  @media (max-width: 760px) { .tiers-grid { grid-template-columns: 1fr; } }

  /* About / trust */
  .about { padding: 0 0 150px; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual {
    aspect-ratio: 1/1; background: linear-gradient(160deg, var(--paper-alt), #E8E1D5);
    position: relative; border: 1px solid var(--line);
  }
  .about-visual::after {
    content: "North County San Diego — project photography to be added";
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 40px; font-size: 12px; color: var(--ink-faint); letter-spacing: 0.03em;
  }
  .about-copy h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 26px; line-height: 1.15; }
  .about-copy p { font-size: 16px; font-weight: 300; color: var(--ink-soft); margin-bottom: 20px; max-width: 480px; }
  .trust-row { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
  .trust-item .t-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
  .trust-item .t-val { font-size: 15px; color: var(--ink); }
  @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

  /* Contact */
  .contact { background: var(--paper-alt); padding: 130px 0; }
  .contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 80px; }
  .contact-copy h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 22px; }
  .contact-copy p { font-size: 16px; color: var(--ink-soft); font-weight: 300; margin-bottom: 36px; max-width: 420px; }
  .contact-detail { margin-bottom: 24px; }
  .contact-detail .c-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; }
  .contact-detail .c-val { font-size: 19px; font-family: 'Cormorant Garamond', serif; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 0; border: none; border-bottom: 1px solid var(--ink); background: transparent;
    font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink);
  }
  .form-group textarea { resize: vertical; min-height: 70px; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-bottom-color: var(--brass); }
  .form-success { display: none; background: var(--ink); color: var(--paper); padding: 16px 20px; font-size: 14px; margin-bottom: 20px; }
  .form-note { font-size: 12px; color: var(--ink-faint); margin-top: 18px; font-style: italic; }
  @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

  /* Footer */
  footer { background: var(--ink); color: rgba(251,249,246,0.6); padding: 64px 0 32px; font-size: 13.5px; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 44px; border-bottom: 1px solid rgba(251,249,246,0.12); flex-wrap: wrap; gap: 24px; }
  .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--paper); margin-bottom: 8px; }
  .footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
  .footer-links a { color: rgba(251,249,246,0.6); }
  .footer-links a:hover { color: var(--paper); }
  .footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; }

  /* ---- Interior page components ---- */

  /* Page hero (shorter hero for non-home pages) */
  .page-hero {
    min-height: 46vh; display: flex; align-items: flex-end; position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--navy) 0%, #10161D 65%, #0B0F14 100%);
    color: var(--paper); padding-bottom: 70px;
  }
  .page-hero::before {
    content: ""; position: absolute; inset: 0; opacity: 0.5;
    background: radial-gradient(ellipse 900px 500px at 85% 15%, rgba(163,38,56,0.16), transparent 60%);
  }
  .page-hero-content { position: relative; z-index: 2; padding-top: 120px; }
  .page-hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.1; max-width: 760px; color: #fff; }
  .page-hero p.lead { font-size: 17px; font-weight: 300; color: rgba(251,249,246,0.75); max-width: 560px; margin-top: 20px; }

  /* Active nav state */
  .nav-links a.active { opacity: 1; position: relative; }
  .nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: currentColor; opacity: 0.6; }

  /* Prose / text-heavy sections */
  .prose-section { padding: 110px 0; }
  .prose-section.alt { background: var(--paper-alt); }
  .prose-narrow { max-width: 720px; }
  .prose-narrow h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 22px; line-height: 1.15; }
  .prose-narrow p { font-size: 16.5px; font-weight: 300; color: var(--ink-soft); margin-bottom: 20px; }
  .prose-narrow ul { list-style: none; margin: 24px 0; }
  .prose-narrow ul li { font-size: 15.5px; font-weight: 300; color: var(--ink-soft); padding: 10px 0 10px 26px; position: relative; border-bottom: 1px solid var(--line); }
  .prose-narrow ul li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }
  .prose-narrow ul li:last-child { border-bottom: none; }

  /* Callout / disclaimer box */
  .callout {
    border: 1px solid var(--line); border-left: 3px solid var(--brass);
    background: var(--paper-alt); padding: 22px 26px; margin: 30px 0; font-size: 14px;
    color: var(--ink-soft); font-weight: 300; line-height: 1.65;
  }
  .callout strong { color: var(--ink); font-weight: 600; }

  /* Service detail cards (services.html) */
  .service-detail-list { display: flex; flex-direction: column; }
  .service-detail-row {
    display: grid; grid-template-columns: 0.9fr 2fr; gap: 48px; padding: 44px 0;
    border-top: 1px solid var(--line); scroll-margin-top: 120px;
  }
  .service-detail-list .service-detail-row:last-child { border-bottom: 1px solid var(--line); }
  .service-detail-row .sd-name { font-size: 26px; }
  .service-detail-row .sd-body p { font-size: 15px; color: var(--ink-soft); font-weight: 300; margin-bottom: 14px; max-width: 560px; }
  .service-detail-row .sd-body a { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
  @media (max-width: 760px) { .service-detail-row { grid-template-columns: 1fr; gap: 12px; } }

  /* City / service-area grid */
  .city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); margin-top: 20px; }
  .city-grid .city { background: var(--paper); padding: 26px 22px; font-size: 16px; font-family: 'Cormorant Garamond', serif; }
  @media (max-width: 760px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }

  /* Simple two-col intro (about, service-areas) */
  .intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  @media (max-width: 900px) { .intro-split { grid-template-columns: 1fr; gap: 40px; } }

  /* Real photos dropped into placeholder visual boxes */
  .split-visual.has-photo::after,
  .split-visual.has-photo::before,
  .about-visual.has-photo::after { content: none; }
  .split-visual.has-photo img,
  .about-visual.has-photo img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.07); transition: transform 1.2s ease;
  }
  .split-visual.has-photo.in-view img,
  .about-visual.has-photo.in-view img { transform: scale(1); }

  /* Recent Work gallery */
  .work-gallery { padding: 130px 0; background: var(--paper-alt); }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: var(--line); }
  .gallery-item { background: var(--paper); overflow: hidden; }
  .gallery-item img {
    width: 100%; height: 260px; object-fit: cover; display: block;
    transition: transform 0.6s ease;
  }
  .gallery-item:hover img { transform: scale(1.045); }
  .gallery-caption { padding: 16px 20px; font-size: 13px; letter-spacing: 0.03em; color: var(--ink-soft); }
  .gallery-wide { grid-column: span 2; }
  .craft-banner {
    display: flex; align-items: center; gap: 28px; margin-top: 4px;
    background: var(--paper); border: 1px solid var(--line); padding: 24px;
  }
  .craft-banner img { width: 140px; height: 140px; object-fit: cover; flex-shrink: 0; }
  .craft-banner p { font-size: 15px; color: var(--ink-soft); font-weight: 300; margin-top: 6px; }
  @media (max-width: 560px) { .craft-banner { flex-direction: column; align-items: flex-start; } }
  .gallery-grid-collage { grid-template-columns: repeat(2, 1fr); margin-top: 4px; }

  /* Interactive before/after slider */
  .ba-slider-wrap { margin-bottom: 4px; }
  .ba-slider {
    position: relative; overflow: hidden; aspect-ratio: 16/8; border-radius: 2px;
    cursor: ew-resize; touch-action: none; user-select: none;
    border: 1px solid var(--line);
  }
  .ba-slider img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block; pointer-events: none;
  }
  .ba-after { z-index: 1; }
  .ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
  .ba-slider-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 0; z-index: 3;
    transform: translateX(-50%); pointer-events: none;
  }
  .ba-slider-handle-line {
    position: absolute; top: 0; bottom: 0; left: 0; width: 2px; margin-left: -1px;
    background: #fff; box-shadow: 0 0 0 1px rgba(20,39,63,0.15);
  }
  .ba-slider-handle-grip {
    position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%);
    width: 46px; height: 46px; border-radius: 50%; background: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 22px rgba(20,39,63,0.3); pointer-events: auto;
    cursor: ew-resize; color: var(--navy); font-size: 15px; letter-spacing: 0.02em;
  }
  .ba-slider-handle-grip:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
  .ba-slider-label {
    position: absolute; top: 14px; z-index: 3; background: rgba(20,39,63,0.85); color: #fff;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px;
    pointer-events: none;
  }
  .ba-slider-label-before { left: 14px; }
  .ba-slider-label-after { right: 14px; }
  @media (max-width: 760px) { .ba-slider { aspect-ratio: 4/5; } }

  @media (max-width: 860px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-wide { grid-column: span 1; }
  }
