
  :root {
    --navy: #1e3044;
    --navy-deep: #142231;
    --slate: #4a6274;
    --frost: #8aabbe;
    --ice: #c5d8e3;
    --snow: #eef3f6;
    --cream: #f8f6f2;
    --warm-white: #fdfcfa;
    --sage: #7a9484;
    --sage-light: #a8c2b0;
    --cranberry: #7b2d3b;
    --cranberry-light: #a84555;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 112.5%; }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .snowflake { display: none; }
  }

  body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: var(--navy);
    background: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Focus styles */
  :focus-visible {
    outline: 2px solid var(--frost);
    outline-offset: 3px;
  }

  a:focus:not(:focus-visible),
  button:focus:not(:focus-visible) {
    outline: none;
  }

  /* ── HOURS BAR (inside nav) ── */
  .nav-hours-bar {
    height: 44px;
    background: var(--cream);
    border-bottom: 1px solid rgba(30,48,68,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .sb-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 1100px;
  }

  .sb-section {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
  }

  .sb-tag {
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .sb-tag-trees { color: var(--cranberry); }
  .sb-tag-nursery { color: var(--sage); }

  .sb-divider {
    width: 1px; height: 12px;
    background: rgba(30,48,68,0.18);
    flex-shrink: 0;
  }

  .sb-detail {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: var(--slate);
    white-space: nowrap;
  }

  .sb-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(30,48,68,0.25);
    flex-shrink: 0;
  }

  .sb-pipe {
    width: 1px; height: 20px;
    background: rgba(30,48,68,0.15);
    margin: 0 2rem;
    flex-shrink: 0;
  }

  /* hours group — flex row on desktop (same visual as before) */
  .sb-hours-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    transition: background 0.5s, box-shadow 0.5s;
  }

  nav.scrolled {
    background: rgba(253,252,250,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(30,48,68,0.06);
  }

  .nav-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    width: 100%;
    transition: padding 0.4s;
  }

  nav.scrolled .nav-main-row {
    padding: 0.7rem 3rem;
  }

  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-white);
    text-decoration: none;
    transition: color 0.4s;
  }

  nav.scrolled .nav-brand { color: var(--navy); }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding: 0.3rem 0;
  }

  nav.scrolled .nav-links a { color: var(--slate); }
  .nav-links a:hover { color: #fff; }
  nav.scrolled .nav-links a:hover { color: var(--navy); }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: currentColor;
    transition: width 0.3s;
  }
  .nav-links a:hover::after { width: 100%; }

  /* Mobile hamburger */
  .nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 160;
  }

  /* Christmas-tree shape: narrow top → wide bottom */
  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--warm-white);
    transition: all 0.35s ease;
    border-radius: 2px;
  }

  .nav-toggle span:nth-child(1) { width: 10px; }
  .nav-toggle span:nth-child(2) { width: 17px; }
  .nav-toggle span:nth-child(3) { width: 24px; }

  nav.scrolled .nav-toggle span { background: var(--navy); }

  /* Close (×) state — normalise widths before crossing */
  .nav-toggle.active span:nth-child(1) { width: 20px; transform: rotate(45deg) translate(4px, 7px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; width: 20px; }
  .nav-toggle.active span:nth-child(3) { width: 20px; transform: rotate(-45deg) translate(4px, -7px); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: calc(8vh + 130px);
    padding-bottom: 4rem;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 30%, rgba(138,171,190,0.1) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 80%, rgba(122,148,132,0.08) 0%, transparent 60%),
      linear-gradient(175deg, var(--navy-deep) 0%, #1a3048 30%, #1e3a55 55%, #243f5a 80%, var(--slate) 100%);
    z-index: 0;
  }

  .hero-glow {
    position: absolute;
    top: 18%; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 400px;
    background: radial-gradient(ellipse, rgba(197,216,227,0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: haloBreath 6s ease-in-out infinite;
  }

  @keyframes haloBreath {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.06); }
  }

  .snowfall {
    position: absolute; inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
  }

  .snowflake {
    position: absolute;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: fall linear infinite;
    will-change: transform;
  }

  @keyframes fall {
    0% { transform: translateY(-10px) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.8; }
    100% { transform: translateY(100vh) translateX(30px); opacity: 0; }
  }

  .hero-mountains {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 220px;
    z-index: 3;
    pointer-events: none;
  }

  .hero-mountains svg {
    position: absolute;
    bottom: 0; width: 100%; height: 100%;
  }

  .hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 700px;
    padding: 0 1.5rem;
  }

  .hero-logo {
    width: 320px;
    max-width: 70vw;
    filter: drop-shadow(0 8px 40px rgba(138,171,190,0.2));
    animation: logoReveal 1.6s ease-out;
    margin-bottom: 1.2rem;
  }

  @keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.93) translateY(15px); filter: blur(4px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    margin-bottom: 0.35rem;
    opacity: 0;
    animation: textFade 1s ease-out 0.4s forwards;
  }

  .hero-subtitle {
    font-size: clamp(0.7rem, 1.2vw, 0.82rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: textFade 1s ease-out 0.6s forwards;
  }

  .hero-divider {
    width: 40px; height: 1px;
    background: rgba(255,255,255,0.25);
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: textFade 1s ease-out 0.7s forwards;
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
    opacity: 0;
    animation: textFade 1s ease-out 0.8s forwards;
  }

  .hero-location {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: textFade 1s ease-out 0.9s forwards;
  }

  @keyframes textFade {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* ── HERO CARDS ── */
  .hero-cards {
    position: relative;
    z-index: 6;
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: cardsUp 1s ease-out 1.1s forwards;
    width: 100%;
    max-width: 620px;
    justify-content: center;
  }

  @keyframes cardsUp {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .hero-card {
    position: relative;
    flex: 1;
    max-width: 290px;
    padding: 2.5rem 2rem 2.2rem;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-card:hover { transform: translateY(-6px); }
  .hero-card:active { transform: translateY(-2px); }

  .card-treefarm {
    background: rgba(20,34,49,0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }

  .card-treefarm:hover {
    background: rgba(20,34,49,0.5);
    border-color: rgba(138,171,190,0.25);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25), 0 0 40px rgba(138,171,190,0.06);
  }

  .card-nursery {
    background: rgba(122,148,132,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(168,194,176,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15), inset 0 0 30px rgba(122,148,132,0.05);
  }

  .card-nursery:hover {
    background: rgba(122,148,132,0.2);
    border-color: rgba(168,194,176,0.4);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 50px rgba(122,148,132,0.1);
  }

  .card-icon {
    width: 52px; height: 52px;
    margin-bottom: 1.3rem;
    opacity: 0.65;
    transition: opacity 0.4s, transform 0.4s;
  }

  .hero-card:hover .card-icon { opacity: 1; transform: translateY(-2px); }

  .card-label {
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.6rem;
  }

  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.8rem;
    transition: letter-spacing 0.4s;
  }

  .hero-card:hover .card-title { letter-spacing: 0.04em; }

  .card-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.7rem 1.6rem;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    transition: all 0.4s;
    border-radius: 3px;
    min-height: 44px;
  }

  .card-treefarm:hover .card-cta {
    background: var(--frost);
    border-color: var(--frost);
    color: var(--navy-deep);
  }

  .card-nursery:hover .card-cta {
    background: var(--sage);
    border-color: var(--sage);
    color: #fff;
  }

  .card-cta svg { width: 12px; height: 12px; transition: transform 0.3s; }
  .hero-card:hover .card-cta svg { transform: translateX(3px); }

  /* ── ABOUT SECTION ── */
  .about-section {
    background: var(--warm-white);
    padding: 6rem 3rem;
    border-top: 1px solid var(--ice);
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
  }

  .about-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-label {
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 1rem;
  }

  .about-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .about-divider {
    width: 40px; height: 1px;
    background: var(--sage-light);
    margin: 0 auto 1.8rem;
  }

  .about-text p {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--slate);
    margin-bottom: 1.2rem;
  }

  .about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ice);
    justify-content: center;
  }

  .about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--navy);
  }

  .stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--slate);
    opacity: 0.6;
  }

  .about-photo-side {
    text-align: center;
    margin-top: 3rem;
  }

  .about-photo-wrap {
    position: relative;
    display: inline-block;
    max-width: 300px;
  }

  .about-photo-wrap::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px;
    right: 10px; bottom: 10px;
    border: 1px solid var(--ice);
    border-radius: 4px;
    z-index: 0;
  }

  .about-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 4px;
    filter: grayscale(0.15) contrast(1.02);
    box-shadow: 0 8px 30px rgba(30,48,68,0.1);
  }

  .photo-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--navy);
    margin-top: 1.2rem;
  }

  .photo-subcaption {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate);
    opacity: 0.5;
    margin-top: 0.25rem;
  }

  /* ── CONTACT SECTION ── */
  .contact-section {
    background: var(--snow);
    padding: 5rem 2rem;
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
  }

  .contact-container {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1rem;
  }

  .contact-divider {
    width: 40px; height: 1px;
    background: var(--sage-light);
    margin: 0 auto 1.5rem;
  }

  .contact-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-toggle {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }

  .toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    border: 1px solid var(--ice);
    background: var(--warm-white);
    color: var(--slate);
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.35s;
    min-height: 48px;
  }

  .toggle-btn:hover { border-color: var(--frost); color: var(--navy); }

  .toggle-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
  }

  .toggle-btn svg { opacity: 0.6; }
  .toggle-btn.active svg { opacity: 1; }

  .contact-form {
    text-align: left;
    animation: formFade 0.35s ease-out;
  }

  @keyframes formFade {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .form-intro {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .form-group { margin-bottom: 1.3rem; }

  .form-group label {
    display: block;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 0.5rem;
  }

  .form-group .optional {
    letter-spacing: 0.05em;
    text-transform: none;
    opacity: 0.5;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--navy);
    padding: 0.8rem 1rem;
    border: 1px solid var(--ice);
    border-radius: 3px;
    background: var(--warm-white);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    min-height: 48px;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--frost);
    box-shadow: 0 0 0 3px rgba(138,171,190,0.12);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--slate);
    opacity: 0.35;
  }

  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a6274' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
  }

  .form-group textarea {
    resize: vertical;
    min-height: 110px;
  }

  .form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border: 1px solid var(--navy);
    background: var(--navy);
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.4s;
    margin-top: 0.5rem;
    min-height: 48px;
  }

  .form-submit:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    box-shadow: 0 4px 16px rgba(30,48,68,0.2);
  }

  .form-submit:active { transform: translateY(1px); }
  .form-submit svg { transition: transform 0.3s; }
  .form-submit:hover svg { transform: translateX(3px); }

  /* Form success state */
  .form-success {
    text-align: center;
    padding: 3rem 1rem;
    animation: formFade 0.4s ease-out;
  }

  .form-success svg { margin-bottom: 1rem; }

  .form-success h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }

  .form-success p {
    font-size: 0.9rem;
    color: var(--slate);
  }

  /* ── MAP SECTION ── */
  .map-section {
    background: var(--warm-white);
    padding: 5rem 3rem;
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
  }

  .map-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
  }

  .map-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1rem;
  }

  .map-divider {
    width: 40px; height: 1px;
    background: var(--sage-light);
    margin-bottom: 1.5rem;
  }

  .map-address {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .map-detail {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 2rem;
  }

  .map-hours { margin-bottom: 2rem; }

  .hours-label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--slate);
    opacity: 0.6;
    margin-bottom: 0.8rem;
  }

  .hours-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--slate);
    margin-bottom: 0.8rem;
  }

  .map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    border: 1px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    transition: all 0.4s;
    border-radius: 3px;
    min-height: 48px;
  }

  .map-directions-btn:hover {
    background: var(--navy);
    color: var(--warm-white);
  }

  .map-directions-btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
  .map-directions-btn:hover svg { transform: translateX(4px); }

  .map-embed {
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(30,48,68,0.08);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--snow);
    border-top: 3px solid var(--cranberry);
    padding: 4rem 3rem 0;
    content-visibility: auto;
    contain-intrinsic-size: 0 320px;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--ice);
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-logo {
    width: 140px;
    height: auto;
    opacity: 0.9;
  }

  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.55;
    margin: 0;
  }

  .footer-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.15rem;
  }

  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--ice);
    color: var(--slate);
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
  }

  .social-link:hover {
    border-color: var(--cranberry);
    color: var(--cranberry);
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-heading {
    font-family: 'Lato', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cranberry);
    margin: 0 0 0.4rem;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer-links a {
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.25s;
    display: inline-block;
    padding: 0.18rem 0;
  }

  .footer-links a:hover { color: var(--navy); }

  .footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .footer-hours p {
    font-size: 0.82rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.5;
  }

  .fh-label {
    font-size: 0.68rem !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.7rem !important;
  }

  .fh-label:first-child { margin-top: 0 !important; }

  .fh-label--trees   { color: var(--cranberry) !important; }
  .fh-label--nursery { color: var(--sage) !important; }

  .footer-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-address p {
    font-size: 0.82rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.55;
  }

  .footer-address a {
    color: var(--slate);
    text-decoration: none;
    transition: color 0.25s;
  }

  .footer-address a:hover { color: var(--navy); }

  .footer-wholesale-line {
    font-size: 0.78rem !important;
    color: var(--frost) !important;
  }

  .footer-wholesale-line a {
    color: var(--frost) !important;
  }

  .footer-wholesale-line a:hover { color: var(--slate) !important; }

  .footer-directions {
    display: inline-block;
    margin-top: 0.3rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--cranberry) !important;
    text-decoration: none;
    transition: color 0.25s;
  }

  .footer-directions:hover { color: var(--cranberry-light) !important; }

  .footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.4rem 0;
    text-align: center;
  }

  .footer-copy {
    font-size: 0.7rem;
    color: var(--frost);
    margin: 0;
  }

  .footer-copy a {
    color: var(--frost);
    text-decoration: none;
    transition: color 0.25s;
  }

  .footer-copy a:hover { color: var(--slate); }

  @media (max-width: 960px) {
    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem 3rem;
    }
    .footer-brand {
      grid-column: 1 / -1;
      flex-direction: row;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--ice);
    }
    .footer-tagline { max-width: 200px; }
  }

  @media (max-width: 600px) {
    footer { padding: 3rem 1.5rem 0; }
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-brand {
      flex-direction: column;
      border-bottom: none;
      padding-bottom: 0;
    }
    .footer-links {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 0.4rem 1.2rem;
    }
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: 0.7rem 1.5rem; }
    .nav-links { gap: 1.5rem; }
    .hero-logo { width: 260px; }
    .hero-cards { flex-direction: column; gap: 1.2rem; align-items: center; }
    .hero-card { max-width: 360px; width: 100%; }
    .about-section { padding: 4rem 2rem; }
    .about-photo-wrap { max-width: 240px; }
    .map-content { grid-template-columns: 1fr; }
    .map-info { text-align: center; }
    .map-divider { margin: 0 auto 1.5rem; }
    .map-embed { height: 300px; }
    .map-section { padding: 4rem 2rem; }
  }

  /* ── NAV OVERLAY (shared, outside media query) ── */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 16, 26, 0.58);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s ease;
  }
  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── HOURS BAR MOBILE: stack into 2 rows, tag + hours each ── */
  @media (max-width: 680px) {
    .nav-hours-bar {
      height: 78px;
      padding: 0 1rem;
      width: 100%;
      box-sizing: border-box;
    }

    .sb-inner {
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 0.28rem;
    }

    .sb-section {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.08rem;
    }

    .sb-pipe    { display: none; }
    .sb-divider { display: none; }

    .sb-tag {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
    }

    .sb-hours-wrap {
      gap: 0.4rem;
      flex-wrap: nowrap;
    }

    .sb-detail {
      font-size: 0.6rem;
      letter-spacing: 0.07em;
      color: var(--navy);
    }

    .sb-dot {
      width: 2px;
      height: 2px;
    }
  }

  @media (max-width: 600px) {
    /* Remove backdrop-filter on mobile: iOS Safari breaks position:fixed children
       when a parent has backdrop-filter applied */
    nav, nav.scrolled {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    /* Right-slide drawer */
    .nav-links {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: min(83vw, 300px);
      background: linear-gradient(158deg, #1d3348 0%, #0f1e2d 55%, #0a1520 100%);
      border-left: 1px solid rgba(255,255,255,0.06);
      box-shadow: -18px 0 70px rgba(0,0,0,0.6);
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
      padding: 5.5rem 2.2rem 3rem;
      z-index: 150;
      list-style: none;
      overflow: hidden;
      transform: translateX(110%);
      visibility: hidden;
      transition: transform 0.44s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s 0.44s;
    }

    /* Pine tree watermark */
    .nav-links::before {
      content: '🌲';
      position: absolute;
      top: -1.5rem; right: -0.5rem;
      font-size: 10rem;
      opacity: 0.055;
      pointer-events: none;
      user-select: none;
      filter: grayscale(1);
    }

    /* Brand label + divider */
    .nav-links::after {
      content: 'Sugar Plum Farms';
      position: absolute;
      top: 1.8rem; left: 2.2rem; right: 2.2rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.open {
      transform: translateX(0);
      visibility: visible;
      transition: transform 0.44s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s 0s;
    }

    /* Staggered link items */
    .nav-links li {
      width: 100%;
      opacity: 0;
      transform: translateX(20px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.open li:nth-child(1) { opacity:1; transform:none; transition-delay:0.14s; }
    .nav-links.open li:nth-child(2) { opacity:1; transform:none; transition-delay:0.20s; }
    .nav-links.open li:nth-child(3) { opacity:1; transform:none; transition-delay:0.26s; }
    .nav-links.open li:nth-child(4) { opacity:1; transform:none; transition-delay:0.32s; }
    .nav-links.open li:nth-child(5) { opacity:1; transform:none; transition-delay:0.38s; }
    .nav-links.open li:nth-child(6) { opacity:1; transform:none; transition-delay:0.44s; }
    .nav-links.open li:nth-child(7) { opacity:1; transform:none; transition-delay:0.50s; }
    .nav-links.open li:nth-child(8) { opacity:1; transform:none; transition-delay:0.56s; }

    /* Link rows */
    .nav-links a {
      display: flex;
      align-items: center;
      gap: 0;
      width: 100%;
      padding: 0.9rem 0;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.58) !important;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.22s ease, padding-left 0.22s ease;
    }

    .nav-links li:first-child a { border-top: 1px solid rgba(255,255,255,0.06); }

    /* Kill the desktop underline on mobile */
    .nav-links a::after { display: none; }

    /* Gold diamond bullet */
    .nav-links a::before {
      content: '✦';
      font-size: 0.38rem;
      color: rgba(196,168,130,0.9);
      margin-right: 0;
      max-width: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-width 0.22s ease, margin-right 0.22s ease, opacity 0.22s ease;
      flex-shrink: 0;
    }

    .nav-links a:hover {
      color: rgba(255,255,255,0.95) !important;
    }

    .nav-links a:hover::before {
      opacity: 1;
      max-width: 1rem;
      margin-right: 0.65rem;
    }

    .nav-main-row { padding: 1.4rem 1.5rem; }
    .nav-toggle { display: flex; }

    .hero { padding-top: calc(6vh + 160px); }
    .hero-logo { width: 220px; }
    .hero-cards { gap: 1rem; padding: 0 0.5rem; }
    .hero-card { padding: 2rem 1.5rem 1.8rem; }
    .card-title { font-size: 1.4rem; }

    .about-stats { flex-direction: column; align-items: center; gap: 1.5rem; }

    .form-row { grid-template-columns: 1fr; }
    .contact-toggle { flex-direction: column; align-items: center; }
    .toggle-btn { width: 100%; max-width: 300px; justify-content: center; }
    .contact-section { padding: 4rem 1.5rem; }
  }


/* Generic page content */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  line-height: 1.8;
  color: var(--slate);
}
