/* ============================================================
   SCHOW'S ESTATE SALES — WEBSITE STYLES
   Color Palette: Green Heritage
   ============================================================ */
/* ============================================================
       SCHOW'S ESTATE SALES — WEBSITE STYLES
       Color Palette: Green Heritage (confirmed March 2026)
       ============================================================ */
    :root {
      --deep-forest:    #1E2C1A;
      --antique-sage:   #3B6645;
      --warm-amber:     #C89A28;
      --amber-on-light: #7a5c00; /* WCAG AA — amber text on cream/white backgrounds */
      --natural-cream:  #F2EFE3;
      --dusty-sage:     #6A8A6A;
      --white:          #FFFFFF;
      --text-dark:      #1E2C1A;
      --text-mid:       #3B4A36;
      --shadow:         rgba(30,44,26,0.18);
    }

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

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--natural-cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ── TYPOGRAPHY ── */
    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

    .section-eyebrow {
      font-family: 'Lato', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      /* WCAG AA compliant amber on light backgrounds — 5.2:1 contrast on cream */
      color: var(--amber-on-light);
      display: block;
      margin-bottom: 0.6rem;
    }
    /* Restore bright amber for eyebrows on dark-background sections */
    #gallery-section .section-eyebrow,
    #consignment .section-eyebrow {
      color: var(--warm-amber);
    }

    .section-title {
      font-size: clamp(1.9rem, 4vw, 2.9rem);
      line-height: 1.18;
      color: var(--deep-forest);
      margin-bottom: 1rem;
    }

    .section-title--light { color: var(--natural-cream); }

    .section-body {
      font-size: 1.05rem;
      line-height: 1.78;
      color: var(--text-mid);
      max-width: 600px;
    }
    .section-body--light { color: rgba(242,239,227,0.93); }

    .amber-rule {
      width: 52px;
      height: 3px;
      background: var(--warm-amber);
      margin: 1rem 0 1.5rem;
    }
    .amber-rule--center { margin-left: auto; margin-right: auto; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-block;
      padding: 0.82rem 2rem;
      font-family: 'Lato', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.25s ease;
      border: 2px solid transparent;
    }
    .btn-primary {
      background: var(--warm-amber);
      color: var(--deep-forest);
      border-color: var(--warm-amber);
    }
    .btn-primary:hover {
      background: transparent;
      color: var(--warm-amber);
    }
    .btn-outline {
      background: transparent;
      color: var(--natural-cream);
      border-color: var(--natural-cream);
    }
    .btn-outline:hover {
      background: var(--natural-cream);
      color: var(--deep-forest);
    }
    .btn-outline-dark {
      background: transparent;
      color: var(--deep-forest);
      border-color: var(--deep-forest);
    }
    .btn-outline-dark:hover {
      background: var(--deep-forest);
      color: var(--natural-cream);
    }
    .btn-sage {
      background: var(--antique-sage);
      color: var(--natural-cream);
      border-color: var(--antique-sage);
    }
    .btn-sage:hover {
      background: var(--deep-forest);
      border-color: var(--deep-forest);
    }

    /* ── UTILITY ── */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
    .text-center { text-align: center; }
    .text-amber { color: var(--warm-amber); }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       NAVIGATION
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0.9rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
      background: transparent;
    }
    #navbar.scrolled {
      background: var(--deep-forest);
      box-shadow: 0 2px 18px var(--shadow);
      padding: 0.55rem 1.5rem;
    }

    .nav-logo { display: flex; align-items: center; gap: 0.85rem; }
    .nav-logo .logo-svg { width: 52px; height: 52px; flex-shrink: 0; transition: width 0.3s, height 0.3s; }
    #navbar.scrolled .nav-logo .logo-svg { width: 42px; height: 42px; }
    .nav-logo-text { display: flex; flex-direction: column; }
    .nav-logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--natural-cream);
      line-height: 1.1;
    }
    .nav-logo-sub {
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--warm-amber);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(242,239,227,0.94);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--warm-amber); }

    .nav-phone {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--warm-amber);
      letter-spacing: 0.05em;
      white-space: nowrap;
    }
    .nav-phone small {
      display: block;
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(242,239,227,0.82);
      font-weight: 400;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--natural-cream);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* Mobile nav */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--deep-forest);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: var(--natural-cream);
      transition: color 0.2s;
    }
    .mobile-nav a:hover { color: var(--warm-amber); }
    .mobile-nav .close-btn {
      position: absolute;
      top: 1.2rem; right: 1.5rem;
      font-size: 2rem;
      color: var(--natural-cream);
      background: none;
      border: none;
      cursor: pointer;
    }
    .mobile-nav .mobile-phone {
      font-size: 1.1rem;
      color: var(--warm-amber);
      font-weight: 700;
      margin-top: 1rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       HERO
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 640px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('images/gallery-interior-1.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      transform: scale(1.08);
      transition: transform 0.1s linear;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(30,44,26,0.72) 0%,
        rgba(30,44,26,0.58) 50%,
        rgba(30,44,26,0.80) 100%
      );
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 1.5rem;
    }
    .hero-logo {
      width: 160px;
      height: 160px;
      margin: 0 auto 1.6rem;
      filter: drop-shadow(0 4px 18px rgba(0,0,0,0.4));
      animation: fadeDown 1s ease both;
    }
    .hero-schowoff {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 0.95rem;
      color: var(--warm-amber);
      letter-spacing: 0.1em;
      margin-bottom: 0.6rem;
      animation: fadeDown 1s 0.2s ease both;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 6vw, 4rem);
      font-weight: 700;
      color: var(--natural-cream);
      line-height: 1.12;
      margin-bottom: 1rem;
      animation: fadeDown 1s 0.35s ease both;
    }
    .hero-tagline {
      font-size: 1.1rem;
      font-weight: 300;
      font-style: italic;
      color: rgba(242,239,227,0.94);
      margin-bottom: 2.2rem;
      animation: fadeDown 1s 0.5s ease both;
    }
    .hero-ctas {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 1s 0.7s ease both;
    }
    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: rgba(242,239,227,0.55);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    .hero-scroll::after {
      content: '';
      display: block;
      width: 1px;
      height: 36px;
      background: rgba(242,239,227,0.35);
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       TWO PATHS SPLIT
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #two-paths {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 480px;
    }
    .path-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      display: flex;
      align-items: flex-end;
    }
    .path-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s ease;
    }
    .path-card:hover .path-bg { transform: scale(1.06); }
    .path-overlay {
      position: absolute;
      inset: 0;
      transition: background 0.4s ease;
    }
    .path-card--gallery .path-bg {
      background-image: url('images/gallery-interior-2.jpg');
    }
    .path-card--gallery .path-overlay {
      background: linear-gradient(180deg, rgba(30,44,26,0.25) 0%, rgba(30,44,26,0.82) 100%);
    }
    .path-card--sales .path-bg {
      background-image: url('images/decor-tiffany-lamp.jpg');
    }
    .path-card--sales .path-overlay {
      background: linear-gradient(180deg, rgba(59,102,69,0.2) 0%, rgba(30,44,26,0.88) 100%);
    }
    .path-card:hover .path-overlay {
      background: linear-gradient(180deg, rgba(30,44,26,0.1) 0%, rgba(30,44,26,0.92) 100%);
    }
    .path-content {
      position: relative;
      z-index: 2;
      padding: 3rem 2.5rem;
      width: 100%;
    }
    .path-icon {
      font-size: 2.2rem;
      margin-bottom: 0.8rem;
    }
    .path-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--warm-amber);
      margin-bottom: 0.5rem;
    }
    .path-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      color: var(--natural-cream);
      margin-bottom: 0.75rem;
      line-height: 1.2;
    }
    .path-desc {
      font-size: 0.92rem;
      line-height: 1.65;
      color: rgba(242,239,227,0.93);
      margin-bottom: 1.3rem;
      max-width: 340px;
    }
    .path-divider {
      position: relative;
    }
    .path-divider::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%);
      width: 2px;
      height: 60%;
      background: rgba(242,239,227,0.25);
      z-index: 3;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       AMBER BANNER
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .amber-banner {
      background: var(--warm-amber);
      padding: 1.1rem 1.5rem;
      text-align: center;
    }
    .amber-banner p {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.05rem;
      color: var(--deep-forest);
    }
    .amber-banner strong { font-style: normal; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       ABOUT SECTION
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #about {
      padding: 4.5rem 0;
      background: var(--natural-cream);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }
    .about-image {
      position: sticky;
      top: 88px; /* clears the fixed nav bar */
      align-self: start;
    }
    .about-image img {
      width: 100%;
      height: auto;           /* show the full portrait naturally */
      max-height: 80vh;
      object-fit: cover;
      object-position: top center;
      border-radius: 2px;
      box-shadow: 12px 16px 40px var(--shadow);
    }

    /* About section — compact two-column callouts */
    .about-callouts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin: 1.4rem 0 1.2rem;
    }
    .about-callout {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      padding: 1rem 1rem 1rem 0.9rem;
      background: rgba(30,44,26,0.04);
      border-radius: 2px;
      border-top: 2px solid var(--warm-amber);
    }
    .callout-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
    .about-callout strong {
      font-family: 'Lato', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--antique-sage);
      display: block;
      margin-bottom: 0.3rem;
    }
    .about-callout p {
      font-size: 0.84rem;
      line-height: 1.55;
      color: var(--text-mid);
      margin: 0;
    }
    .about-badge {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      width: 110px;
      height: 110px;
      background: var(--deep-forest);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px var(--shadow);
    }
    .about-badge span:first-child {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--warm-amber);
      line-height: 1;
    }
    .about-badge span:last-child {
      font-size: 0.58rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--natural-cream);
      text-align: center;
      padding: 0 8px;
      line-height: 1.3;
      margin-top: 3px;
    }
    .about-text blockquote {
      border-left: 3px solid var(--warm-amber);
      padding-left: 1.2rem;
      margin: 1.8rem 0;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--antique-sage);
      line-height: 1.55;
    }
    .about-sig {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.3rem;
      color: var(--antique-sage);
      margin-top: 1.5rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       PARALLAX DIVIDER
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .parallax-divider {
      position: relative;
      height: 360px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .parallax-divider .parallax-bg {
      position: absolute;
      inset: -60px;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
    .parallax-divider .parallax-overlay {
      position: absolute;
      inset: 0;
      background: rgba(30,44,26,0.74);
    }
    .parallax-divider .parallax-content {
      position: relative;
      z-index: 2;
      padding: 0 1.5rem;
    }
    .parallax-divider h2 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--natural-cream);
      margin-bottom: 0.8rem;
    }
    .parallax-divider p {
      font-size: 1rem;
      color: rgba(242,239,227,0.93);
      max-width: 520px;
      margin: 0 auto 1.8rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       BROAD STREET GALLERY
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #gallery-section {
      padding: 6rem 0;
      background: var(--deep-forest);
    }
    .gallery-header { text-align: center; margin-bottom: 3.5rem; }
    .gallery-header .section-title--light { margin-bottom: 0.5rem; }

    .gallery-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      margin-bottom: 4rem;
    }
    .info-block { color: var(--natural-cream); }
    .info-block h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--warm-amber);
      margin-bottom: 1rem;
    }
    .info-row {
      display: flex;
      gap: 0.8rem;
      margin-bottom: 0.75rem;
      font-size: 0.95rem;
      align-items: flex-start;
    }
    .info-row .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
    .info-row a { color: var(--warm-amber); }
    .info-row a:hover { text-decoration: underline; }

    .hours-table { margin-top: 0.5rem; }
    .hours-row {
      display: flex;
      justify-content: space-between;
      padding: 0.4rem 0;
      border-bottom: 1px solid rgba(242,239,227,0.1);
      font-size: 0.9rem;
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-today {
      color: var(--warm-amber);
      font-weight: 700;
    }

    .consignment-cta-box {
      background: rgba(242,239,227,0.07);
      border: 1px solid rgba(200,154,40,0.4);
      border-radius: 2px;
      padding: 1.6rem;
      margin-top: 1.5rem;
    }
    .consignment-cta-box h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--warm-amber);
      margin-bottom: 0.6rem;
    }
    .consignment-cta-box p {
      font-size: 0.88rem;
      color: rgba(242,239,227,0.93);
      line-height: 1.65;
      margin-bottom: 1rem;
    }

    /* Events grid */
    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-bottom: 3rem;
    }
    .event-card {
      background: rgba(242,239,227,0.06);
      border: 1px solid rgba(242,239,227,0.14);
      border-top: 3px solid var(--warm-amber);
      padding: 1.5rem;
      transition: background 0.25s;
    }
    .event-card:hover { background: rgba(242,239,227,0.1); }
    .event-date {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--warm-amber);
      margin-bottom: 0.5rem;
    }
    .event-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--natural-cream);
      margin-bottom: 0.5rem;
    }
    .event-desc {
      font-size: 0.87rem;
      color: rgba(242,239,227,0.88);
      line-height: 1.6;
    }
    .event-add-note {
      font-size: 0.8rem;
      font-style: italic;
      color: rgba(242,239,227,0.6);
      text-align: center;
      padding: 1rem;
      border: 1px dashed rgba(242,239,227,0.25);
    }

    /* Map */
    .map-wrapper {
      width: 100%;
      height: 340px;
      border: 2px solid rgba(200,154,40,0.35);
      overflow: hidden;
    }
    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(20%) contrast(1.05);
    }
    .map-label {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      background: rgba(200,154,40,0.15);
      border: 1px solid rgba(200,154,40,0.25);
      border-top: none;
    }
    .map-label span { font-size: 0.85rem; color: var(--natural-cream); }
    .map-label strong { color: var(--warm-amber); }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       ESTATE SALES ON THE ROAD
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #estate-sales {
      padding: 6rem 0;
      background: var(--natural-cream);
    }
    .sales-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .sales-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }
    .sale-card {
      background: white;
      border-radius: 2px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(30,44,26,0.08);
      transition: transform 0.28s, box-shadow 0.28s;
      border-bottom: 3px solid var(--warm-amber);
    }
    .sale-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(30,44,26,0.14);
    }
    .sale-card-img {
      height: 200px;
      object-fit: cover;
      width: 100%;
    }
    .sale-card-body { padding: 1.4rem; }
    .sale-status {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.28rem 0.65rem;
      border-radius: 20px;
      margin-bottom: 0.75rem;
    }
    .sale-status--upcoming { background: rgba(59,102,69,0.1); color: var(--antique-sage); }
    .sale-status--this-week { background: rgba(200,154,40,0.15); color: #8a6800; }
    .sale-card-date {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--warm-amber);
      letter-spacing: 0.05em;
      margin-bottom: 0.35rem;
    }
    .sale-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--deep-forest);
      margin-bottom: 0.4rem;
    }
    .sale-card-address {
      font-size: 0.85rem;
      color: var(--dusty-sage);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }
    .sale-card-desc {
      font-size: 0.87rem;
      line-height: 1.62;
      color: var(--text-mid);
      margin-bottom: 1.1rem;
    }
    .sale-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 1rem;
    }
    .tag {
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 0.22rem 0.6rem;
      background: rgba(30,44,26,0.07);
      color: var(--antique-sage);
      border-radius: 2px;
    }

    .what-to-expect {
      background: var(--deep-forest);
      padding: 3.5rem;
      border-radius: 2px;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 3rem;
      align-items: center;
      margin-top: 1rem;
    }
    .wte-left h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--natural-cream);
      margin-bottom: 0.8rem;
    }
    .wte-left p {
      font-size: 0.92rem;
      color: rgba(242,239,227,0.9);
      line-height: 1.65;
    }
    .wte-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.4rem;
    }
    .wte-item {
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
    }
    .wte-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .wte-item h4 {
      font-family: 'Lato', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--warm-amber);
      margin-bottom: 0.3rem;
    }
    .wte-item p {
      font-size: 0.84rem;
      line-height: 1.55;
      color: rgba(242,239,227,0.9);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       PHOTO GALLERY
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #photo-gallery {
      padding: 6rem 0;
      background: #f7f4ec;
    }
    .gallery-grid {
      columns: 4 220px;
      gap: 0.8rem;
      margin-top: 2.5rem;
    }
    .gallery-item {
      break-inside: avoid;
      margin-bottom: 0.8rem;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }
    .gallery-item img {
      width: 100%;
      display: block;
      transition: transform 0.4s ease;
    }
    .gallery-item:hover img { transform: scale(1.04); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(30,44,26,0);
      transition: background 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .gallery-item:hover .gallery-overlay {
      background: rgba(30,44,26,0.3);
    }
    .gallery-overlay span {
      font-size: 1.8rem;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-overlay span { opacity: 1; }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      box-shadow: 0 0 60px rgba(0,0,0,0.5);
    }
    .lightbox-close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      font-size: 2.2rem;
      color: white;
      cursor: pointer;
      background: none;
      border: none;
      line-height: 1;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       CONSIGNMENT SECTION
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #consignment {
      padding: 6rem 0;
      background: var(--antique-sage);
      position: relative;
      overflow: hidden;
    }
    #consignment::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      border: 2px solid rgba(242,239,227,0.08);
      border-radius: 50%;
    }
    #consignment::after {
      content: '';
      position: absolute;
      bottom: -120px; left: -60px;
      width: 500px; height: 500px;
      border: 2px solid rgba(242,239,227,0.06);
      border-radius: 50%;
    }
    .consignment-inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }
    .consignment-inner .section-title--light { margin-bottom: 0.5rem; }
    .consignment-inner .section-body--light {
      margin: 0 auto 2.5rem;
    }
    .consignment-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin: 2rem 0 2.8rem;
      text-align: left;
    }
    .cf-item {
      background: rgba(242,239,227,0.1);
      padding: 1.3rem;
      border-radius: 2px;
    }
    .cf-item .cf-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
    .cf-item h4 {
      font-family: 'Lato', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--warm-amber);
      margin-bottom: 0.3rem;
    }
    .cf-item p {
      font-size: 0.84rem;
      color: rgba(242,239,227,0.93);
      line-height: 1.55;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       CONTACT SECTION
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #contact {
      padding: 5rem 0;
      background: var(--natural-cream);
    }
    .contact-centered {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }
    .contact-methods {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 0.5rem;
    }
    .contact-method {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1.8rem 1rem;
      background: white;
      border-radius: 2px;
      box-shadow: 0 4px 20px rgba(30,44,26,0.08);
      border-bottom: 3px solid var(--warm-amber);
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      gap: 0.4rem;
      min-height: 44px; /* touch target */
    }
    .contact-method:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(30,44,26,0.14);
    }
    .cm-icon { font-size: 1.8rem; }
    .cm-label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--dusty-sage);
      margin-top: 0.3rem;
    }
    .cm-value {
      font-family: 'Playfair Display', serif;
      font-size: 0.9rem;
      color: var(--deep-forest);
      font-weight: 600;
      text-align: center;
      line-height: 1.35;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       FOOTER
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #footer {
      background: var(--deep-forest);
      padding: 4rem 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(242,239,227,0.1);
    }
    .footer-brand { }
    .footer-logo-wrap {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      margin-bottom: 1rem;
    }
    .footer-logo-wrap .logo-svg { width: 64px; height: 64px; }
    .footer-brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--natural-cream);
      line-height: 1.2;
    }
    .footer-brand-sub {
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--warm-amber);
    }
    .footer-tagline {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 0.9rem;
      color: rgba(242,239,227,0.78);
      line-height: 1.55;
      margin-bottom: 1rem;
    }

    .footer-col-heading {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--warm-amber);
      margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.55rem; }
    .footer-col ul a {
      font-size: 0.87rem;
      color: rgba(242,239,227,0.82);
      transition: color 0.2s;
    }
    .footer-col ul a:hover { color: var(--natural-cream); }
    .footer-col p {
      font-size: 0.87rem;
      color: rgba(242,239,227,0.82);
      line-height: 1.7;
    }
    .footer-col .footer-phone {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--warm-amber);
      display: block;
      margin-bottom: 0.4rem;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.4rem 0;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .footer-bottom p {
      font-size: 0.76rem;
      color: rgba(242,239,227,0.6);
    }
    .footer-bottom .schowoff-credit {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: rgba(200,154,40,0.75);
      font-size: 0.78rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       ADA / WCAG 2.1 AA — ACCESSIBILITY
       Skip link · Focus styles · Touch targets
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

    /* Skip to main content — WCAG 2.4.1 */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 0;
      padding: 0.9rem 1.5rem;
      background: var(--warm-amber);
      color: var(--deep-forest);
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 0.92rem;
      letter-spacing: 0.05em;
      z-index: 9999;
      border-radius: 0 0 4px 0;
      text-decoration: none;
      transition: top 0.15s;
    }
    .skip-link:focus {
      top: 0;
    }

    /* Focus visible — WCAG 2.4.7 */
    *:focus-visible {
      outline: 3px solid var(--warm-amber);
      outline-offset: 3px;
      border-radius: 2px;
    }
    /* Remove default focus ring (replaced by focus-visible) */
    *:focus:not(:focus-visible) {
      outline: none;
    }
    /* Touch targets minimum 44×44px — WCAG 2.5.5 */
    .btn,
    .hamburger,
    .lightbox-close,
    .mobile-nav a,
    .nav-links a,
    .gallery-item,
    .footer-col ul a,
    .contact-method {
      min-height: 44px;
      min-width: 44px;
      display: inline-flex;
      align-items: center;
    }
    .contact-method { display: flex; flex-direction: column; }
    /* Keep list-item links looking right */
    .footer-col ul a,
    .nav-links a {
      display: inline-flex;
      align-items: center;
      padding-top: 0.35rem;
      padding-bottom: 0.35rem;
    }

    /* prefers-reduced-motion — WCAG 2.3.3 */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      html { scroll-behavior: auto; }
      .hero-bg,
      .parallax-bg {
        background-attachment: scroll !important;
      }
      .hero-bg { transform: none !important; }
      .reveal {
        opacity: 1 !important;
        transform: none !important;
      }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SCROLL ANIMATIONS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: 0.12s; }
    .reveal-delay-2 { transition-delay: 0.24s; }
    .reveal-delay-3 { transition-delay: 0.36s; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       RESPONSIVE — Desktop → Tablet → Mobile → Small Phone
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

    /* ── Large Desktop 1280px+ ── */
    @media (min-width: 1280px) {
      /* Give the about grid a bit more breathing room on wide screens */
      .about-grid { grid-template-columns: 5fr 6fr; gap: 4.5rem; }
    }

    /* ── Tablet 1024px ── */
    @media (max-width: 1024px) {
      .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      /* Un-stick image when it stacks above text in single-column layout */
      .about-image { position: relative; top: auto; }
      .about-image img { height: auto; max-height: 60vh; object-position: top center; }
      .about-callouts { grid-template-columns: 1fr 1fr; }
      .gallery-info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .contact-methods { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .what-to-expect { grid-template-columns: 1fr; gap: 2rem; }
    }

    /* ── Mobile 768px ── */
    @media (max-width: 768px) {
      #two-paths { grid-template-columns: 1fr; }
      .path-divider::after { display: none; }
      .nav-links, .nav-phone { display: none; }
      .hamburger { display: flex; }
      .hero-logo { width: 120px; height: 120px; }
      .footer-grid { grid-template-columns: 1fr; }
      .consignment-features { grid-template-columns: 1fr; }
      .wte-grid { grid-template-columns: 1fr; }
      .sales-header { flex-direction: column; align-items: flex-start; }
      .what-to-expect { padding: 2.5rem; }
      #about { padding: 3.5rem 0; }
      #estate-sales { padding: 4rem 0; }
      #photo-gallery { padding: 4rem 0; }
      #consignment { padding: 4rem 0; }
      #contact { padding: 3.5rem 0; }
      .gallery-grid { columns: 2 140px; }
      .about-badge { bottom: -0.8rem; right: -0.5rem; width: 88px; height: 88px; }
      .about-badge span:first-child { font-size: 1.3rem; }
      .about-callouts { grid-template-columns: 1fr; }
      .contact-methods { grid-template-columns: repeat(2, 1fr); }
      /* iOS Safari: background-attachment:fixed causes blank parallax images
         — gracefully degrade to scroll on all touch/mobile devices */
      .parallax-bg { background-attachment: scroll; }
      /* Amber banner wraps gracefully on phone */
      .amber-banner { flex-direction: column; gap: 0.5rem; text-align: center; }
      .amber-banner .btn { align-self: center; }
    }

    /* ── Small Phone 480px ── */
    @media (max-width: 480px) {
      .container { padding: 0 1rem; }
      .hero-logo { width: 100px; height: 100px; }
      .hero-title { font-size: 2rem; }
      .hero-schowoff { font-size: 0.82rem; }
      .hero-tagline { font-size: 0.95rem; }
      .hero-ctas { flex-direction: column; align-items: center; gap: 0.8rem; }
      .hero-ctas .btn { width: 100%; max-width: 280px; justify-content: center; }
      .section-title { font-size: 1.75rem; }
      .path-content { padding: 2rem 1.25rem; }
      .path-title { font-size: 1.3rem; }
      .what-to-expect { padding: 1.8rem 1.25rem; }
      .parallax-divider { height: 300px; }
      .parallax-divider h2 { font-size: 1.6rem; }
      .gallery-grid { columns: 1; }
      .sale-card-body { padding: 1rem; }
      .footer-grid { gap: 1.5rem; }
      .footer-logo-wrap .logo-svg { width: 48px; height: 48px; }
      .about-badge { display: none; }
      .contact-methods { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .contact-method { padding: 1.4rem 0.8rem; }
      .map-wrapper { height: 260px; }
      .amber-banner p { font-size: 0.9rem; }
      #gallery-section { padding: 3.5rem 0; }
    }

    /* ── Narrow Phone 375px ── */
    @media (max-width: 375px) {
      html { font-size: 15px; }
      .hero-logo { width: 88px; height: 88px; }
      .hero-title { font-size: 1.8rem; }
      .section-title { font-size: 1.55rem; }
      .nav-logo-name { font-size: 1rem; }
      .nav-logo-sub { font-size: 0.55rem; }
      .nav-logo .logo-svg { width: 44px; height: 44px; }
      .path-content { padding: 1.5rem 1rem; }
      .events-grid { grid-template-columns: 1fr; }
      .sale-card-title { font-size: 1.1rem; }
      .consignment-features { gap: 1rem; }
      .cf-item { padding: 1rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
      /* On the narrowest common phone size, 1-column contact cards fit better */
      .contact-methods { grid-template-columns: 1fr; }
    }

    /* ── Smallest Phone 320px ── */
    @media (max-width: 320px) {
      html { font-size: 14px; }
      .container { padding: 0 0.75rem; }
      .hero-logo { width: 76px; height: 76px; }
      .hero-title { font-size: 1.6rem; }
      .hero-ctas .btn { font-size: 0.72rem; padding: 0.75rem 1.2rem; }
      .section-title { font-size: 1.4rem; }
      .btn { padding: 0.75rem 1.2rem; font-size: 0.72rem; }
      .path-content { padding: 1.2rem 0.85rem; }
      .path-title { font-size: 1.15rem; }
      .what-to-expect { padding: 1.3rem 1rem; }
      .wte-icon { font-size: 1.15rem; }
      .parallax-divider h2 { font-size: 1.4rem; }
      .map-wrapper { height: 220px; }
      .gallery-item { margin-bottom: 0.5rem; }
      .footer-logo-wrap { gap: 0.6rem; }
      .footer-logo-wrap .logo-svg { width: 40px; height: 40px; }
      .mobile-nav a { font-size: 1.3rem; }
    }