:root {
    --cream:       #f8f0c4;  /* page background */
    --paper:       #fdecd1;  /* card background */
    --lemon:       #F6C43A;  /* brand yellow */
    --lemon-deep:  #DDA315;  /* darker yellow, used for borders/hover */
    --leaf:        #28cf8c;  /* brand green */
    --leaf-deep:   #aaba65;  /* footer */
    --ink:         #2A2418;  /* main text color (warm near-black) */
    --ink-soft:    #6B6152;  /* muted text color */

    /* --font-head: "Pangolin", cursive; */
    /* --font-body: "Pangolin", cursive; */
    --font-head: "Fredoka", sans-serif;
    --font-body: "Nunito Sans", sans-serif;

    --max-width: 1250px;
    --radius: 20px;
  }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

/* img, svg { display: block; max-width: 100%; } */

a { 
  color: inherit; 
  text-decoration: none; 
  font-size: 1.2rem;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 300;
  line-height: 1.15;
}









.container {
    max-width: var(--max-width);
    margin: 100px auto;
    /* padding: 10px auto; */
    /* display: flex; */
  }


  /* section { padding: 60px 0; } */

  .section-heading { max-width: 560px; margin-bottom: 48px; }
  .section-heading h2 { font-size: clamp(2.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
  .section-heading p { color: var(--ink-soft); font-size: 1.5rem; }

  /* ============================================
     3. HEADER
     ============================================ */
  header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(42, 36, 24, 0.1);
  }

  .nav-row {
    /* max-width: var(--max-width); */
    margin: 0 auto;
    padding: 20px 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #ebd190;
  }

.brand_name {
  font-family: "Rubik Dirt", system-ui;
  font-size: 2.2rem;
  letter-spacing: .3rem;
  font-weight: 500;
  /* display: flex; */
  /* align-items: center; */
  /* gap: 8px; */
  padding-left: 200px;
  /* margin: 0 200px; */
}
  .logo svg { width: 28px; height: 28px; }

  .nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
  }
  .nav-links a:hover { color: var(--leaf-deep); }

  /* Hide the middle nav links on small screens to keep the header simple —
     no hamburger menu needed, just fewer things shown. */
  @media (max-width: 900px) {
    .nav-row {
      padding: 14px 20px;
      justify-content: center;
      gap: 24px;
    }
    .brand_name {
      padding-left: 0;
      font-size: 1.7rem;
      letter-spacing: .16rem;
      text-align: center;
    }
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 1rem; }
  }

  @media (max-width: 720px) {
    .nav-links { display: none; }
    .brand_name { font-size: 1.45rem; letter-spacing: .12rem; }
  }

  @media (max-width: 420px) {
    .nav-row { padding: 12px 14px; }
    .brand_name { font-size: 1.2rem; letter-spacing: .1rem; }
  }

  /* ============================================
     4. HERO
     ============================================ */


.hero {
    display: flex;
    align-items: center;
    gap: 0;

    width: 100%;
    max-width: 1300px;
    height: 650px;

    margin: 0 auto;
    padding: 40px 0;
    box-sizing: border-box;
}

.hero .text {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 30px;
}

.hero-slideshow {
    position: relative;

    flex: 1;
    width: 100%;
    /* max-width: 550px; */

    aspect-ratio: 4 / 3;

    overflow: hidden;
    min-width: 0;
}


.slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    /* -webkit-mask-image: radial-gradient(
        ellipse at center,
        black 45%,
        rgba(0, 0, 0, 0.9) 55%,
        rgba(0, 0, 0, 0.6) 68%,
        rgba(0, 0, 0, 0.25) 82%,
        transparent 100%
    ); */

    /* mask-image: radial-gradient(
        ellipse at center,
        black 70%,
        rgba(0, 0, 0, 0.9) 75%,
        rgba(0, 0, 0, 0.6) 82%,
        rgba(0, 0, 0, 0.25) 90%,
        transparent 100%
    ); */


    mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,0.4) 8%,
            black 18%,
            black 82%,
            rgba(0,0,0,0.4) 97%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,0.4) 8%,
            black 18%,
            black 82%,
            rgba(0,0,0,0.4) 97%,
            transparent 100%
        );

    mask-composite: intersect;

    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}






  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    
  }

  .hero p {
    font-size: 1.7rem;
    color: var(--ink-soft);
    max-width: 46ch;
    margin-bottom: 20px;
  }

  .hero-actions { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap; }





@media (max-width: 900px) {

    .hero {
        flex-direction: column;
        height: auto;
        gap: 28px;
        padding: 28px 20px 10px;
        text-align: center;
    }

    .hero .text {
        flex: none;
        width: 100%;
        align-items: center;
        padding-right: 0;
        gap: 14px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 4px;
    }

    .hero p {
        font-size: 1.15rem;
        max-width: 42ch;
        margin-bottom: 4px;
    }

    .hero-actions {
        justify-content: center;
    }

    /* Picture first, pitch underneath */
    .hero-slideshow {
        order: -1;
        flex: none;
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {

    .hero {
        padding: 20px 16px 6px;
        gap: 22px;
    }

    .hero h1 { font-size: 1.65rem; }
    .hero p  { font-size: 1.05rem; }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}


/* horizontal_line */
.section-divider {
    display: flex;
    align-items: center;
    gap: 15px;

    width: 50%;
    margin: 0 auto;
    padding: 0;

    color: #355e3b;
}
.first_line{
    padding-top: 4%;
}

.section-divider::before,
.section-divider::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #355e3b;
}

.section-divider span {
    font-size: 20px;
}




  /* Reusable button styles */
  .btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.2rem;
    padding: 14px 26px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .btn:hover { transform: translateY(-2px); }

  .btn-primary {
    background: var(--leaf);
    color: var(--cream);
  }
  .btn-primary:hover { background: var(--leaf-deep); }

  .btn-secondary {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
  }
  .btn-secondary:hover { background: var(--ink); color: var(--cream); }

  .btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
  }
  .btn:disabled:hover { transform: none; }






/* hanger button on the left */
/* .hanger-left {
    position: fixed;
    top: 0;
    left: 1%;
    z-index: 1000;

    width: 220px;
    height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    /* background-color: red; */
/* } */

/* .hanger-chain-left {
  max-width: 180px;
  max-height: 120px;
  /* flex-grow: 2; */
  /* opacity: 0.8; */
/* }  */ 
.logopic {
  /* width: 80%; */
  /* height: 80%; */
  max-width: 10%;
  position: fixed;
  top: 120px;
  left: 50px;
  z-index: 1000;
  opacity: 0.9;
  filter: drop-shadow(13px 14px 4px rgba(0, 0, 0, 0.25));
}




/* hanger button on the right */
.hanger {
    position: fixed;
    top: 0;
    right: 50px;
    z-index: 1000;

    width: 220px;
    height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.hanger-chain {
  max-width: 180px;
  max-height: 120px;
  /* flex-grow: 2; */
  opacity: 0.8;
}

.hanger-board{
  /* flex-grow: 1; */
    padding:20px 10px;
    /* box-shadow: 4px 5px 0 rgba(53, 94, 59, 0.25); */

    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;

    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;

    background: #2F6B4F;
    color: var(--cream);
      filter: drop-shadow(13px 14px 4px rgba(0, 0, 0, 0.25));

}

.hanger-board:hover {
    transform: translateY(-3px);
    /* box-shadow: 6px 8px 0 rgba(53, 94, 59, 0.25); */
    background:#24553A;
}










  /* ============================================
     5. PRODUCTS (#lemons)
     ============================================ */

     #lemons .container{
      display: flex;
      align-items: center;
      gap: 50px;
    }
    
    .warehouse-heading h2{
      text-align: center;
      /* padding-right: 20px */
      
    }

  .products-grid {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    gap: 24px;
}

  .product-card {
    background: var(--paper);
    border: 1px solid rgba(42, 36, 24, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  /* Each card gets its own colored top band via a data attribute —
     change the colors below to change each variety's accent. */
  .product-card .band { height: 25px; }
  .product-card[data-variety="classic"] .band { background: var(--lemon); }
  .product-card[data-variety="meyer"]   .band { background: var(--leaf); }
  .product-card[data-variety="organic"] .band { background: var(--lemon-deep); }

  .product-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

  .product-card .slice-icon { width: 42px; height: 42px; color: var(--ink-soft); margin-bottom: 16px; }
  .product-card[data-variety="classic"] .slice-icon { color: var(--lemon-deep); }
  .product-card[data-variety="meyer"]   .slice-icon { color: var(--leaf); }
  .product-card[data-variety="organic"] .slice-icon { color: var(--ink-soft); }

  .product-card h3 { font-size: 2.3rem; margin-bottom: 8px; }
  .product-card .desc { color: var(--ink-soft); font-size: 1.5rem; margin-bottom: 20px; flex: 1; }

  .product-card .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(42, 36, 24, 0.1);
  }
  .product-card .price { font-family: var(--font-head); font-weight: 400; font-size: 1.3rem; }
  .product-card .price span { font-family: var(--font-body); font-weight: 400; font-size: 1.3rem; color: var(--ink-soft); }

  .order-this {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--leaf);
    cursor: pointer;
    font-size: 1.3rem;
  }
  .order-this:hover { text-decoration: underline; }

  @media (max-width: 900px) {
    #lemons .container {
      flex-direction: column;
      align-items: stretch;
      gap: 24px;
    }

    .warehouse-heading { margin-bottom: 0; }

    .products-grid { flex-direction: column; }

    .product-card .band { height: 14px; }
    .product-card .body { padding: 22px; }
    .product-card h3 { font-size: 1.55rem; }
    .product-card .desc { font-size: 1.05rem; margin-bottom: 16px; }
    .product-card .price,
    .product-card .price span,
    .order-this { font-size: 1.05rem; }
  }






  /* ============================================
     5b. STATS (#stats)
     ============================================ */
  #stats { padding: 0; }

  .stats-strip {
    background: var(--paper);
    border: 1px solid rgba(42, 36, 24, 0.1);
    border-radius: var(--radius);
    padding: 40px 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
  }

  .stat { display: flex; flex-direction: column; gap: 4px; }

  .stat-number {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--leaf-deep);
  }

  .stat-label {
    color: var(--ink-soft);
    font-size: 1.1rem;
  }

  @media (max-width: 900px) {
    .stats-strip { padding: 28px 20px; gap: 20px; }
    .stat-label { font-size: 1rem; }
  }

  @media (max-width: 700px) {
    .stats-strip {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 22px;
    }
    /* A hairline between stacked stats so they don't read as one blob */
    .stat + .stat {
      border-top: 1px solid rgba(42, 36, 24, 0.12);
      padding-top: 22px;
    }
  }





  /* ============================================
     6. WHY US (#why)
     ============================================ */

  #why .container{
    display: flex;
    /* justify-content: space-between; */
    gap: 30px;
  }
/* video {
    width: 30%;
    display: block;

    -webkit-mask-image:
        linear-gradient(to right, transparent, black 10%, black 90%, transparent),
        linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);

    -webkit-mask-composite: intersect;
    mask-image:
        linear-gradient(to right, transparent, black 10%, black 90%, transparent),
        linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);

    mask-composite: intersect;
} */

video {
    width: 30%;
    display: block;

    -webkit-mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,0.4) 8%,
            black 18%,
            black 82%,
            rgba(0,0,0,0.4) 92%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,0.4) 8%,
            black 18%,
            black 82%,
            rgba(0,0,0,0.4) 92%,
            transparent 100%
        );

    -webkit-mask-composite: intersect;

    mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,0.4) 8%,
            black 18%,
            black 82%,
            rgba(0,0,0,0.4) 92%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,0.4) 8%,
            black 18%,
            black 82%,
            rgba(0,0,0,0.4) 92%,
            transparent 100%
        );

    mask-composite: intersect;
}


.why-list {
    display: flex;
    align-self: center;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    /* gap: 32px; */
}

.why-item{
  display: flex;
  flex-direction: column;
  gap:80px;
}
  .why-item h3 { font-size: 2.15rem; margin-bottom: 16px; }

  .why-points { list-style: none; display: grid; gap: 14px; }
  .why-points li { color: var(--ink-soft); font-size: 1.35rem; }
  .why-points strong { color: var(--ink); }

  @media (max-width: 900px) {
    #why .container {
      flex-direction: column;
      gap: 28px;
    }

    .why-list { display: block; width: 100%; }

    video {
      width: 100%;
      max-width: 420px;
      align-self: center;
    }

    .why-item { gap: 24px; }
    .why-item h3 { font-size: 1.6rem; margin-bottom: 12px; }
    .why-points { gap: 12px; }
    .why-points li { font-size: 1.05rem; }
  }



  /* ============================================
     6b. QUOTES (#quotes)
     ============================================ */

  #quotes .container{
    display: flex;
    flex-direction: column;
  } 

  .quotes-header{
    align-self: center;
    text-align: center;
    white-space: nowrap;
  }

  .quotes-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 320px);
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
  }

  .quote-card {
    background: var(--paper);
    border: 1px solid rgba(42, 36, 24, 0.1);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-snap-align: start;
  }

  .quote-stars { color: var(--lemon-deep); font-size: 1.1rem; letter-spacing: 2px; }

  .quote-card blockquote {
    color: var(--ink);
    font-size: 1.2rem;
    flex: 1;
  }

  .quote-card figcaption { color: var(--ink-soft); font-size: 0.95rem; }
  .quote-card figcaption span { display: block; }

  @media (max-width: 900px) {
    /* The heading is nowrap by default, which forces a sideways scroll on phones */
    .quotes-header { white-space: normal; }
  }

  @media (max-width: 700px) {
    .quotes-track {
      grid-auto-columns: minmax(220px, 85%);
      gap: 14px;
      scroll-snap-type: x mandatory;
    }
    .quote-card { padding: 20px; }
    .quote-card blockquote { font-size: 1.05rem; }
  }

  /* ============================================
     6c. BLOG (#blog)
     ============================================ */
  #blog .container{
    display: flex;
    flex-direction: column;
    text-align: center;
    }

  .blog-heading{
    align-self: center;
    text-align: center;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .blog-card {
    background: var(--paper);
    border: 1px solid rgba(42, 36, 24, 0.1);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .blog-meta { color: var(--ink-soft); font-size: 0.9rem; }
  .blog-card h3 { font-size: 1.6rem; }
  .blog-card p { color: var(--ink-soft); font-size: 1.15rem; flex: 1; }

  .blog-link { color: var(--leaf); font-weight: 600; }
  .blog-link:hover { text-decoration: underline; }

  @media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr; gap: 18px; }
    .blog-card { padding: 22px; }
    .blog-card h3 { font-size: 1.35rem; }
    .blog-card p { font-size: 1.05rem; }
  }

  /* Blog post page (blog.html) */
  .blog-post-list { display: grid; gap: 64px; max-width: 720px; margin: 0 auto; }
  .blog-post { scroll-margin-top: 100px; }
  .blog-post h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; }
  .blog-post .blog-meta { margin-bottom: 20px; }
  .blog-post p { color: var(--ink-soft); font-size: 1.2rem; margin-bottom: 16px; }
  .back-link { color: var(--leaf); font-weight: 600; display: inline-block; margin-bottom: 32px; }
  .back-link:hover { text-decoration: underline; }





  /* ============================================
     7. ORDER (#order)
     ============================================ */
  #order { background: var(--paper); }

  #order .container {
    display: flex;
    justify-content: space-between;
    /* grid-template-columns: 0.9fr 1.1fr; */
    gap: 60px;
  }

  #order .order-desc {
     /* color: var(--ink-soft);  */
     /* margin-bottom: 28px;  */
     /* max-width: 40ch; */
     display:flex ;
     flex-direction: column;
     justify-content: center;
     flex: 1;
     align-items: center;
     gap: 60px;
     padding-bottom: 150px;
     padding-right: 50px;
     /* margin-bottom: 100px; */
    }

  .order-desc p{
    font-size: 1.3rem;
    text-align:center;
  }




  .order-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--cream);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(164, 216, 22, 0.935);
  }

  .order-form label {
    /* display: block; */
    /* font-weight: 500; */
    font-size: 1.2rem;
    /* margin-bottom: 6px; */
  }

  .order-form input,
  .order-form select,
  .order-form textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 12px;
    border: 1px solid rgba(42, 36, 24, 0.25);
    border-radius: 6px;
    background: var(--paper);
    color: var(--ink);
  }


  .form-row-2 { 
    display: flex;
    gap: 16px; }


  .order-total {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--leaf-deep);
  }

  .order-actions { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; }

  .order-actions .btn {
     flex: 1; 
     font-size: 1rem;;
     /* width: 50px; } */
  }



  .order-status {
    font-size: 1rem;
    min-height: 1.4em;
  }
  .order-status[data-state="success"] { color: var(--leaf-deep); }
  .order-status[data-state="error"] { color: #b3452c; }
  .order-status[data-state="muted"] { color: var(--ink-soft); }

  @media (max-width: 900px) {
    #order .container {
      flex-direction: column;
      gap: 26px;
    }

    #order .order-desc {
      padding: 0 0 4px;
      gap: 16px;
    }

    .order-desc h1 { font-size: 1.9rem; text-align: center; }
    .order-desc p { font-size: 1.05rem; }

    .order-form { padding: 22px; gap: 14px; }
    .order-form label { font-size: 1rem; }
    .order-form input,
    .order-form select,
    .order-form textarea {
      font-size: 1rem;   /* 16px — stops iOS zooming in on focus */
    }
    .order-form textarea { min-height: 90px; }
  }

  @media (max-width: 600px) {
    .form-row-2 { flex-direction: column; gap: 14px; }
    .order-form { padding: 18px; }
    .order-actions { flex-direction: column; gap: 12px; }
    .order-actions .btn { width: 100%; }
  }







  /* FOOTER */
  .footer-row {
    background: var(--leaf-deep);
    color: var(--cream);
    padding: 25px;

    /* max-height: 150px; */

    display: flex;
    justify-content: space-evenly;
    /* align-items: flex-start; */
    flex-wrap: wrap;
    gap: 450px;
  }


  @media (max-width: 900px) {
    /* The 450px desktop gap leaves a huge hole once the columns wrap */
    .footer-row {
      gap: 40px;
      justify-content: flex-start;
      padding: 28px 22px 96px;
    }
  }

  @media (max-width: 600px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      padding: 28px 20px 96px;
    }
    footer .contact { text-align: center; }
    .footer_fhalf,
    .footer_shalf {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
  }




  /* ============================================
     9. MOBILE POLISH (global)
     ============================================ */

  @media (max-width: 900px) {
    body { overflow-x: hidden; }

    .container {
      margin: 60px auto;
      padding: 0 20px;
    }

    .section-heading {
      max-width: 100%;
      margin-bottom: 26px;
      text-align: center;
      align-self: center;
    }
    .section-heading h2 { font-size: 1.85rem; }
    .section-heading p { font-size: 1.05rem; }

    .section-divider { width: 78%; }
    .first_line { padding-top: 10%; }

    .btn { font-size: 1.05rem; padding: 13px 22px; }

    .blog-post-list { gap: 40px; }
    .blog-post p { font-size: 1.05rem; }

    /* Logo shrinks into the corner of the sticky bar instead of
       floating over the hero */
    .logopic {
      max-width: none;
      width: 46px;
      top: 8px;
      left: 12px;
      filter: drop-shadow(3px 4px 3px rgba(0, 0, 0, 0.22));
    }

    /* The hanging sign becomes a floating order pill at the bottom,
       where a thumb can actually reach it */
    .hanger {
      top: auto;
      bottom: 14px;
      left: 0;
      right: 0;
      width: 100%;
      height: auto;
      padding: 0 20px;
      pointer-events: none;        /* taps pass through to the page… */
    }
    .hanger-chain { display: none; }
    .hanger-board {
      pointer-events: auto;        /* …except on the button itself */
      width: 100%;
      max-width: 330px;
      text-align: center;
      padding: 14px 20px;
      font-size: 0.95rem;
      letter-spacing: .04rem;
      filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
    }
  }

  @media (max-width: 480px) {
    .container {
      margin: 44px auto;
      padding: 0 16px;
    }

    .section-heading h2 { font-size: 1.6rem; }
    .section-divider { width: 86%; }

    .logopic { width: 38px; top: 9px; left: 10px; }
    .hanger-board { max-width: 290px; font-size: 0.9rem; }
  }