/* ===============================
   BASE VARIABLES
================================ */
:root{
  --bg:#ffffff;
  --text:#111111;
  --primary:#0B5B0F;
  --accent:#ca943b;
  --max:1200px;
  --header-pad:10px;
  --logo-h:115px;
}

/* ===============================
   GLOBAL
================================ */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Montserrat', sans-serif;
  background-color:var(--bg);
  color:var(--text);
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

h1{
  color:var(--accent);
}

h2,
h3{
  color:var(--primary);
}

p{
  color:#333;
  margin:0;
  line-height:1.7;
}

/* ===============================
   HEADER
================================ */
.site-header{
  background:var(--primary);
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  padding:var(--header-pad) 0;
}

.header-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
  gap:20px;
}

.logo{
  flex:0 0 auto;
}

.logo img{
  height:var(--logo-h);
}

.header-spacer{
  height:calc((var(--header-pad) * 2) + var(--logo-h));
}

/* ===============================
   NAVIGATION
================================ */
.site-nav{
  flex:1 1 auto;
  display:flex;
  justify-content:center;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-links li{
  display:flex;
  align-items:center;
  margin:0;
}

.nav-link,
.nav-links a,
.dropdown-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  line-height:1;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#fff;
  opacity:.92;
  transition:color .25s ease, opacity .25s ease, background .25s ease;
  margin:0;
  padding:0;
}

.nav-links a:hover,
.dropdown-toggle:hover{
  color:var(--accent);
  opacity:1;
}

.nav-link.active{
  color:var(--accent);
  font-weight:600;
}

/* ===============================
   DROPDOWN
================================ */
.dropdown{
  position:relative;
  display:flex;
  align-items:center;
  margin:0;
  padding:0;
}

.dropdown::after{
  content:"";
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  height:10px;
}

.dropdown-menu{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  min-width:280px;
  background:var(--primary);
  list-style:none;
  padding:14px 0;
  margin:0;
  border-radius:8px;
  display:none;
  z-index:2000;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

.dropdown:hover .dropdown-menu{
  display:block;
}

.dropdown-menu li{
  display:block;
  margin:0;
}

.dropdown-menu a{
  display:block;
  height:auto;
  line-height:1.2;
  padding:12px 18px;
  font-size:14px;
  color:#fff;
}

.dropdown-menu a:hover{
  background:rgba(255,255,255,.08);
  color:var(--accent);
}

/* ===============================
   HEADER ACTIONS
================================ */
.header-actions{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:12px;
}

.header-phone{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.25);
  border-radius:8px;
  color:var(--accent);
}

.header-phone:hover{
  background:rgba(255,255,255,.08);
}

.header-socials{
  display:flex;
  align-items:center;
  gap:10px;
}

.header-socials a{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:10px;
  background:rgba(255,255,255,.06);
  color:#fff;
}

.header-socials a:hover{
  background:rgba(255,255,255,.12);
}

/* ===============================
   QUOTE CART ICON
================================ */
.quote-icon{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  margin-left:10px;
  text-decoration:none;
}

.quote-cart-icon{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:linear-gradient(145deg, #0B5B0F, #0f7014);
  border:1px solid rgba(202,148,59,.6);
  color:#fff;
  box-shadow:
    0 10px 20px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.08);
  transition:
    transform .2s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.quote-cart-icon i{
  font-size:16px;
  line-height:1;
}

.quote-icon:hover .quote-cart-icon{
  transform:translateY(-2px);
  background:linear-gradient(145deg, #0f7014, #0B5B0F);
  box-shadow:
    0 14px 26px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.quote-count{
  position:absolute;
  top:-4px;
  right:-4px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ca943b;
  color:#fff;
  font-size:10px;
  font-weight:700;
  line-height:1;
  border:2px solid #0B5B0F;
  box-shadow:0 4px 10px rgba(0,0,0,.16);
}

/* ===============================
   HAMBURGER
================================ */
.hamburger{
  display:none;
  width:46px;
  height:46px;
  padding:0;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background:rgba(255,255,255,.06);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  position:relative;
  transition:background .25s ease, border-color .25s ease;
}

.hamburger:hover{
  background:rgba(255,255,255,.12);
}

.hamburger span{
  position:absolute;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:transform .25s ease, opacity .2s ease, top .25s ease;
}

.hamburger span:nth-child(1){
  top:16px;
}

.hamburger span:nth-child(2){
  top:22px;
}

.hamburger span:nth-child(3){
  top:28px;
}

.hamburger.is-active span:nth-child(1){
  top:22px;
  transform:rotate(45deg);
}

.hamburger.is-active span:nth-child(2){
  opacity:0;
}

.hamburger.is-active span:nth-child(3){
  top:22px;
  transform:rotate(-45deg);
}

/* ===============================
   SECTIONS
================================ */
.section{
  padding:40px 0;
}

.section.alt{
  background:#f5f5f5;
}

.section-title{
  text-align:center;
  font-size:32px;
  font-weight:600;
  margin-bottom:40px;
}

/* ===============================
   HERO SLIDER
================================ */
.hero-slider{
  position:relative;
  height:clamp(520px, 72vh, 760px);
  overflow:hidden;
  border-bottom:1px solid rgba(0,0,0,.08);
  background:#000;
}

.hero-slider-track{
  position:relative;
  height:100%;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  transform:scale(1.02);
  transition:opacity 450ms ease, transform 900ms ease;
}

.hero-slide.is-active{
  opacity:1;
  transform:scale(1);
  z-index:1;
}

.hero-slide-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.65) 100%
  );
}

.hero-slide-content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
  padding:26px 0;
  color:#fff;
}

.hero-slide-content h1{
  margin:0 0 10px;
  font-weight:800;
  letter-spacing:.04em;
  font-size:clamp(30px, 4vw, 60px);
  color:#fff;
}

.hero-slide-content p{
  margin:0 0 14px;
  max-width:820px;
  color:rgba(255,255,255,.85);
  font-weight:300;
}

.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.45);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:10;
}

.hero-arrow.prev{ left:20px; }
.hero-arrow.next{ right:20px; }

.hero-arrow:hover{
  background:rgba(0,0,0,.75);
}

.slide-one{ background-position:center 50%; }
.slide-two{ background-position:center 5%; }
.slide-three{ background-position:center 40%; }

/* ===============================
   HERITAGE
================================ */
.heritage{
  background:#ffffff;
  text-align:center;
  padding-top:60px;
  padding-bottom:100px;
}

.heritage h2{
  font-size:36px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--primary);
}

.heritage p{
  max-width:750px;
  margin:20px auto 0;
  font-size:18px;
  line-height:1.8;
}

/* ===============================
   TOP IMAGE
================================ */
.heritage-image{
  margin-top:50px;
  width:100%;
  overflow:hidden;
}

.heritage-image img{
  width:100%;
  height:465px;
  object-fit:cover;
  object-position:center 75%;
}

/* ===============================
   GRID
================================ */
.heritage-gallery{
  display:grid;
  grid-template-columns:1.9fr 1.55fr 1.55fr;
  grid-template-rows:210px 210px;
  gap:10px;
  margin-top:14px;
  padding:0 30px;
}

.heritage-gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.heritage-gallery img:nth-child(1){
  object-position:center 30%;
}

.heritage-gallery img:nth-child(4){
  object-position:center 60%;
}

.heritage-gallery img:nth-child(2){
  object-position:center 45%;
}

.heritage-gallery img:nth-child(3){
  object-position:center 45%;
}

.heritage-gallery img:nth-child(5){
  object-position:center 55%;
}

.heritage-gallery img:nth-child(6){
  object-position:center 55%;
}

/* ===============================
   MOBILE FIX
================================ */
@media (max-width:600px){
  .heritage{
    padding-top:40px;
    padding-bottom:60px;
  }

  .heritage h2{
    font-size:28px;
  }

  .heritage p{
    font-size:16px;
    line-height:1.7;
  }

  .heritage-image img{
    height:240px;
    object-fit:cover;
    object-position:center 75%;
  }

  .heritage-gallery{
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
    gap:10px;
    padding:0 16px;
  }

  .heritage-gallery img{
    height:180px;
  }
}

.gold-divider{
  width:630px;
  max-width:100%;
  height:1px;
  background:var(--accent);
  margin:35px auto;
}

.section-divider{
  width:120px;
  height:1px;
  background:var(--accent);
  margin:30px auto;
  opacity:.85;
}

/* ===============================
   WHY CHOOSE
================================ */
.why-choose{
  padding:70px 0;
  text-align:center;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
  margin-top:35px;
}

.why-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  padding:30px 24px;
  border-radius:8px;
  transition:all .25s ease;
}

.why-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.why-icon{
  width:52px;
  height:52px;
  margin:0 auto 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(202,148,59,.12);
  color:var(--accent);
  font-size:20px;
}

.why-card h3{
  margin:0 0 10px;
  font-size:16px;
}

.why-card p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:rgba(0,0,0,.7);
}

.why-cta{
  margin-top:35px;
}

/* ===============================
   SERVICES / PRODUCT GRID
================================ */
.services-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
  margin-top:30px;
}

.service-item{
  padding-bottom:20px;
  border-bottom:1px solid rgba(0,0,0,.10);
}

.service-item h2{
  margin:0 0 10px;
  font-size:18px;
  font-weight:600;
  letter-spacing:.04em;
}

.service-item p{
  margin:0;
  line-height:1.7;
  color:rgba(0,0,0,.70);
}

.note{
  margin-top:10px;
  padding-left:12px;
  border-left:3px solid var(--accent);
  font-size:14px;
  color:rgba(0,0,0,.75);
}

.service-item .note{
  margin-top:18px;
}

.service-item:nth-last-child(-n+2){
  border-bottom:none;
}

.services-cta{
  margin-top:48px;
}

/* ===============================
   CONTACT
================================ */
.contact-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:34px;
  align-items:start;
}

.contact-form-wrap{
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:12px;
  padding:20px;
}

.contact-form h2{
  margin:0 0 14px;
  font-size:16px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.contact-form label{
  display:block;
  margin:12px 0;
  font-size:13px;
  letter-spacing:.02em;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  margin-top:6px;
  padding:12px;
  border:1px solid rgba(0,0,0,.16);
  border-radius:10px;
  font-family:inherit;
  font-size:14px;
  outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:rgba(202,148,59,.65);
}

.form-note{
  margin-top:12px;
  font-size:12px;
  color:rgba(0,0,0,.65);
  line-height:1.5;
}

.muted{
  color:rgba(0,0,0,.65);
}

/* ===============================
   MAP
================================ */
.map-embed{
  margin-top:14px;
  border:1px solid rgba(0,0,0,.10);
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}

.map-embed iframe{
  width:100%;
  height:420px;
  border:0;
}

.map-wrap{
  margin-top:18px;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  position:relative;
}

.map-wrap::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2px;
  background:rgba(202,148,59,.65);
  z-index:2;
}

.map-wrap iframe{
  display:block;
  width:100%;
  height:420px;
  border:0;
}

.map-link{
  display:block;
  padding:12px 14px;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:var(--accent);
  background:rgba(255,255,255,.92);
  border-top:1px solid rgba(0,0,0,.08);
}

.map-link:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

/* ===============================
   ASSOCIATIONS
================================ */
.associations-logos{
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid rgba(202,148,59,.35);
  display:flex;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
}

.logo-ncta{
  max-height:150px;
  width:auto;
}

.logo-pnwcta{
  max-height:80px;
  width:auto;
}

/* ===============================
   PRESS
================================ */
.press-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  margin-top:30px;
}

.press-card{
  position:relative;
  padding:20px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.press-card::after{
  content:"";
  position:absolute;
  bottom:-20px;
  left:0;
  width:100%;
  height:1px;
  background:rgba(202,148,59,.5);
}

.press-card::before{
  content:"";
  position:absolute;
  right:-20px;
  top:0;
  width:1px;
  height:100%;
  background:rgba(202,148,59,.5);
}

.press-img-1{ max-height:180px; width:auto; }
.press-img-2{ max-height:180px; width:auto; }
.press-img-3{ max-height:90px; width:auto; }
.press-img-4{ max-height:150px; width:auto; }
.press-img-5{ max-height:150px; width:auto; }

/* ===============================
   LIGHTBOX
================================ */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.88);
  z-index:5000;
}

.lightbox.active{
  display:flex;
}

.lightbox-image{
  max-width:90vw;
  max-height:85vh;
  display:block;
}

.lightbox-close{
  position:absolute;
  top:20px;
  right:30px;
  background:none;
  border:none;
  color:#fff;
  font-size:42px;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:none;
  border:none;
  color:#fff;
  font-size:48px;
  cursor:pointer;
  padding:10px;
}

.lightbox-prev{ left:20px; }
.lightbox-next{ right:20px; }

.lightbox-caption{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  color:#fff;
  font-size:14px;
  letter-spacing:.04em;
  background:rgba(0,0,0,.55);
  padding:10px 16px;
  border-radius:6px;
  max-width:80%;
  text-align:center;
}

/* ===============================
   GALLERIES
================================ */
.work-gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:30px;
  margin-bottom:50px;
}

.work-gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  object-position:center 70%;
  border-radius:6px;
  cursor:pointer;
}

.work-gallery img:nth-child(1){ object-position:center 20%; }
.work-gallery img:nth-child(2){ object-position:center 35%; }
.work-gallery img:nth-child(3){ object-position:center 75%; }
.work-gallery img:nth-child(4){ object-position:center 70%; }
.work-gallery img:nth-child(5){ object-position:center 78%; }
.work-gallery img:nth-child(6){ object-position:center 68%; }
.work-gallery img:nth-child(7){ object-position:center 75%; }
.work-gallery img:nth-child(8){ object-position:center 72%; }

.work-item{
  overflow:hidden;
  border-radius:6px;
}

.work-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.caption{
  margin-top:8px;
  font-size:13px;
  color:#555;
  line-height:1.4;
}

.lv-image img{
  object-position:center 80% !important;
}

.retail-gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:30px;
}

.retail-gallery img{
  width:100%;
  height:240px;
  object-fit:cover;
  object-position:center 70%;
  border-radius:6px;
}

.netting-gallery img{
  width:100%;
  height:340px;
  object-fit:contain;
  background:#fff;
}

.work-group-title{
  margin:50px 0 10px;
  font-size:24px;
  font-weight:600;
  color:var(--primary);
}

.work-sub{
  margin-bottom:18px;
  font-size:14px;
  color:#666;
  max-width:600px;
}

/* ===============================
   FOOTER
================================ */
.site-footer{
  background:#0B5B0F;
  color:#fff;
  margin-top:80px;
}

.footer-gold-bar{
  height:3px;
  width:100%;
  background:#ca943b;
}

.footer-main{
  display:grid;
  grid-template-columns:220px 1fr;
  column-gap:56px;
  align-items:start;
  padding:48px 0;
}

.footer-logo{
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
}

.footer-logo img{
  width:auto;
  height:64px;
}

.footer-columns{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  column-gap:48px;
  align-items:start;
}

.footer-column{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
}

.footer-column h3{
  margin:0 0 14px;
  padding:0;
  font-size:14px;
  line-height:1;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#ca943b;
}

.footer-column a{
  display:block;
  margin:0 0 10px;
  font-size:13px;
  line-height:1.35;
  color:#fff;
  letter-spacing:.03em;
  transition:color .2s ease;
}

.footer-column a:hover{
  color:#ca943b;
}

.footer-social-column{
  align-items:flex-start;
}

.footer-social{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  margin-top:2px;
}

.footer-social a{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.22);
  border-radius:8px;
  background:rgba(255,255,255,.06);
  transition:all .2s ease;
}

.footer-social a:hover{
  background:rgba(255,255,255,.12);
  color:#ca943b;
}

.footer-bottom{
  text-align:center;
  padding:16px 0;
  border-top:1px solid rgba(255,255,255,.15);
  font-size:13px;
  color:#d8d8d8;
}

/* ===============================
   PRODUCT HEROES
================================ */
.page-hero{
  background:#f5f5f5;
  padding:70px 0;
}

.page-hero h1{
  margin-bottom:12px;
}

.page-hero p{
  max-width:700px;
}

.trees-hero,
.wreath-hero,
.roping-hero,
.westcoast-hero,
.blankets-hero,
.branches-hero,
.netting-hero,
.tree-stands-hero,
.retail-hero{
  position:relative;
  height:400px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.trees-hero-bg,
.wreath-hero-bg,
.roping-hero-bg,
.westcoast-hero-bg,
.blankets-hero-bg,
.branches-hero-bg,
.netting-hero-bg,
.tree-stands-hero-bg,
.retail-hero-bg{
  position:absolute;
  inset:0;
  background-repeat:no-repeat;
}

.trees-hero-overlay,
.wreath-hero-overlay,
.roping-hero-overlay,
.westcoast-hero-overlay,
.blankets-hero-overlay,
.branches-hero-overlay,
.netting-hero-overlay,
.tree-stands-hero-overlay,
.retail-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.30) 50%,
    rgba(0,0,0,.70) 100%
  );
}

.trees-hero-content,
.wreath-hero-content,
.roping-hero-content,
.westcoast-hero-content,
.blankets-hero-content,
.branches-hero-content,
.netting-hero-content,
.tree-stands-hero-content,
.retail-hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  max-width:700px;
}

.trees-hero-content h1,
.wreath-hero-content h1,
.roping-hero-content h1,
.westcoast-hero-content h1,
.blankets-hero-content h1,
.branches-hero-content h1,
.netting-hero-content h1,
.tree-stands-hero-content h1,
.retail-hero-content h1{
  margin:0 0 12px;
  font-size:48px;
  line-height:1.1;
  color:#fff;
}

.trees-hero-content p,
.wreath-hero-content p,
.roping-hero-content p,
.westcoast-hero-content p,
.blankets-hero-content p,
.branches-hero-content p,
.netting-hero-content p,
.tree-stands-hero-content p,
.retail-hero-content p{
  margin:0;
  font-size:18px;
  font-weight:300;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
}

.trees-hero-bg{
  background-image:url("images/trees/trees.jpg");
  background-size:cover;
  background-position:center 55%;
}

.wreath-hero-bg{
  background-image:url("images/wreaths/wreaths_hero2.jpg");
  background-size:cover;
  background-position:center 65%;
}

.roping-hero-bg{
  background-image:url("images/roping/roping_hero.jpg");
  background-size:110%;
  background-position:center 50%;
}

.westcoast-hero-bg{
  background-image:url("images/westcoast/westcoast_hero.png");
  background-size:110%;
  background-position:center 50%;
}

.blankets-hero-bg{
  background-image:url("images/blankets/blankets_hero.png");
  background-size:100%;
  background-position:center 55%;
}

.branches-hero-bg{
  background-image:url("images/branches/branches_hero.jpg");
  background-size:cover;
  background-position:center 65%;
}

.netting-hero-bg{
  background-image:url("images/netting/netting_hero.jpg");
  background-size:cover;
  background-position:center 48%;
}

.tree-stands-hero-bg{
  background-image:url("images/tree-stands/tree-stands_hero.jpg");
  background-size:cover;
  background-position:center 75%;
}

.retail-hero-bg{
  background-image:url("images/retail/retail-hero.jpg");
  background-size:cover;
  background-position:center 60%;
}

.retail-cta{
  text-align:center;
}

.visit-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.visit-info h3{
  margin-top:20px;
  margin-bottom:8px;
}

.visit-map iframe{
  border-radius:6px;
}

.directions-btn{
  display:inline-block;
  margin-top:15px;
}

/* ===============================
   BUTTONS
================================ */
.btn{
  display:inline-block;
  margin-top:16px;
  padding:12px 22px;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:600;
  color:#0B5B0F;
  background:#ffffff;
  border:1px solid var(--accent);
  border-radius:4px;
  transition:all .25s ease;
}

.btn:hover{
  background:#0B5B0F;
  color:#ffffff;
  border-color:#0B5B0F;
}

.btn:active{
  transform:translateY(1px);
}

.btn.secondary{
  background:transparent;
  color:#fff;
  border:1px solid #fff;
}

.btn.secondary:hover{
  background:#fff;
  color:#0B5B0F;
}

.quote-center{
  text-align:center;
  margin-top:30px;
}

.service-item .btn{
  margin-top:18px;
}

/* ===============================
   PAGE REQUEST BUTTON
================================ */
.add-request-btn{
  display:inline-block;
  width:auto;
  margin-top:18px;
  margin-bottom:18px;
  padding:14px 18px;
  background:transparent;
  border:1.5px solid #caa35b;
  border-radius:12px;
  color:#0B5B0F;
  font-family:'Montserrat', sans-serif;
  font-size:13px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-align:center;
  cursor:pointer;
  transition:all .25s ease;
  appearance:none;
  -webkit-appearance:none;
}

.add-request-btn:hover{
  background:#0B5B0F;
  color:#fff;
  border-color:#0B5B0F;
}

.drawer-note{
  font-size:12px;
  color:#777;
  text-align:center;
  margin-top:10px;
  margin-bottom:10px;
  letter-spacing:.05em;
}

/* ===============================
   MOBILE MENU OVERLAY
================================ */
.mobile-overlay{
  position:fixed;
  top:calc((var(--header-pad) * 2) + var(--logo-h) + 8px);
  left:0;
  right:0;
  bottom:8px;
  background:rgba(0,0,0,.35);
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
  z-index:1500;
}

.mobile-overlay.active{
  opacity:1;
  pointer-events:auto;
}

/* ===============================
   DRAWER OVERLAYS
================================ */
.tree-quote-overlay,
.wreath-quote-overlay,
.roping-quote-overlay,
.branches-quote-overlay,
.blankets-quote-overlay,
.master-quote-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:9998;
}

.tree-quote-overlay.active,
.wreath-quote-overlay.active,
.roping-quote-overlay.active,
.branches-quote-overlay.active,
.blankets-quote-overlay.active,
.master-quote-overlay.active{
  opacity:1;
  visibility:visible;
}

/* ===============================
   DRAWERS
================================ */
.tree-quote-drawer,
.wreath-quote-drawer,
.roping-quote-drawer,
.branches-quote-drawer,
.blankets-quote-drawer{
  position:fixed;
  top:0;
  right:-480px;
  width:100%;
  max-width:480px;
  height:100vh;
  background:#fff;
  color:#222;
  z-index:9999;
  box-shadow:-8px 0 28px rgba(0,0,0,.18);
  transition:right .35s ease;
  display:flex;
  flex-direction:column;
}

.master-quote-drawer{
  position:fixed;
  top:0;
  right:-520px;
  width:100%;
  max-width:520px;
  height:100vh;
  background:#fff;
  color:#222;
  z-index:9999;
  box-shadow:-8px 0 28px rgba(0,0,0,.18);
  transition:right .35s ease;
  display:flex;
  flex-direction:column;
}

.tree-quote-drawer.open,
.wreath-quote-drawer.open,
.roping-quote-drawer.open,
.branches-quote-drawer.open,
.blankets-quote-drawer.open,
.master-quote-drawer.open{
  right:0;
}

.tree-quote-drawer-header,
.wreath-quote-drawer-header,
.roping-quote-drawer-header,
.branches-quote-drawer-header,
.blankets-quote-drawer-header,
.master-quote-drawer-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 20px;
  border-bottom:1px solid #e7e7e7;
  background:#fff;
}

.tree-quote-drawer-header h2,
.wreath-quote-drawer-header h2,
.roping-quote-drawer-header h2,
.branches-quote-drawer-header h2,
.blankets-quote-drawer-header h2{
  margin:0;
  font-size:1.25rem;
  color:var(--primary);
}

.master-quote-drawer-header h2{
  margin:0;
  font-size:1.3rem;
  color:var(--primary);
}

#tree-quote-drawer #close-tree-quote-btn,
#wreath-quote-drawer #close-wreath-quote-btn,
#roping-quote-drawer #close-roping-quote-btn,
#branches-quote-drawer #close-branches-quote-btn,
#blankets-quote-drawer #close-blankets-quote-btn,
.master-quote-close-btn{
  border:none;
  background:none;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
  color:#222;
}

.tree-quote-drawer-body,
.wreath-quote-drawer-body,
.roping-quote-drawer-body,
.branches-quote-drawer-body,
.blankets-quote-drawer-body,
.master-quote-drawer-body{
  flex:1 1 auto;
  min-height:0;
  overflow-y:auto;
  padding:20px 20px 30px;
}

/* ===============================
   SELECT FIELDS
================================ */
#tree_type_select,
#wreath_type_select,
#roping_type_select,
#branches_type_select,
#blankets_type_select{
  width:100%;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  background:#f8f8f6;
  padding:14px 15px;
  font-family:inherit;
  font-size:14px;
  color:var(--text);
  margin-bottom:16px;
}

/* ===============================
   SIZE GRIDS
================================ */
.tree-size-grid,
.wreath-size-grid,
.roping-size-grid,
.branches-size-grid,
.blankets-size-grid{
  margin-top:0;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}

.tree-size-row,
.wreath-size-row,
.roping-size-row,
.branches-size-row,
.blankets-size-row{
  display:grid;
  grid-template-columns:1fr 110px;
  gap:12px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.tree-size-row:last-child,
.wreath-size-row:last-child,
.roping-size-row:last-child,
.branches-size-row:last-child,
.blankets-size-row:last-child{
  border-bottom:none;
}

.tree-size-label,
.wreath-size-label,
.roping-size-label,
.branches-size-label,
.blankets-size-label{
  font-size:14px;
  font-weight:600;
  color:#1d1d1d;
  letter-spacing:.01em;
}

.wreath-size-unit{
  display:inline-block;
  margin-left:6px;
  font-size:11px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#777;
}

.tree-size-qty,
.wreath-size-qty,
.roping-size-qty,
.branches-size-qty,
.blankets-size-qty{
  width:100%;
  height:44px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  background:#fff;
  padding:10px 12px;
  font:inherit;
  font-size:14px;
  text-align:center;
  color:var(--text);
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background-color .25s ease;
  -webkit-appearance:none;
  appearance:none;
}

.tree-size-qty:hover,
.wreath-size-qty:hover,
.roping-size-qty:hover,
.branches-size-qty:hover,
.blankets-size-qty:hover{
  border-color:rgba(202,148,59,.4);
}

.tree-size-qty:focus,
.wreath-size-qty:focus,
.roping-size-qty:focus,
.branches-size-qty:focus,
.blankets-size-qty:focus{
  outline:none;
  border-color:rgba(202,148,59,.9);
  box-shadow:0 0 0 4px rgba(202,148,59,.12);
}

/* ===============================
   SHARED DRAWER BUTTON STYLE
================================ */
.add-tree-request-btn,
.add-wreath-request-btn,
.add-roping-request-btn,
.add-branches-request-btn,
.add-blankets-request-btn{
  width:100%;
  margin-top:16px;
  padding:14px 18px;
  background:transparent;
  border:1.5px solid #caa35b;
  color:#0B5B0F;
  border-radius:12px;
  font-family:'Montserrat', sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-align:center;
  cursor:pointer;
  transition:all .25s ease;
  appearance:none;
  -webkit-appearance:none;
}

.add-tree-request-btn:hover,
.add-wreath-request-btn:hover,
.add-roping-request-btn:hover,
.add-branches-request-btn:hover,
.add-blankets-request-btn:hover{
  background:#0B5B0F;
  color:#fff;
  border-color:#0B5B0F;
}

.add-tree-request-btn:active,
.add-wreath-request-btn:active,
.add-roping-request-btn:active,
.add-branches-request-btn:active,
.add-blankets-request-btn:active{
  transform:translateY(0);
}
/* ===============================
   QUOTE ITEM LISTS
================================ */
#tree-quote-items-list,
#wreath-quote-items-list,
#roping-quote-items-list,
#branches-quote-items-list,
#blankets-quote-items-list{
  margin-top:18px;
}

.master-quote-items-list{
  margin-bottom:24px;
}

.tree-quote-empty,
.wreath-quote-empty,
.roping-quote-empty,
.branches-quote-empty,
.blankets-quote-empty,
.master-quote-empty{
  margin:0;
  color:rgba(0,0,0,.62);
  font-size:14px;
}

.tree-quote-item,
.wreath-quote-item,
.roping-quote-item,
.branches-quote-item,
.blankets-quote-item{
  border:1px solid #e5e5e5;
  border-radius:12px;
  padding:14px;
  margin:12px 0;
  background:#fafafa;
}

.master-quote-item{
  border:1px solid #e5e5e5;
  border-radius:12px;
  padding:14px;
  margin-bottom:10px;
  background:#fafafa;
}

.tree-quote-item-top,
.wreath-quote-item-top,
.roping-quote-item-top,
.branches-quote-item-top,
.blankets-quote-item-top,
.master-quote-item-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}

.tree-quote-item-title,
.wreath-quote-item-title,
.roping-quote-item-title,
.branches-quote-item-title,
.blankets-quote-item-title,
.master-quote-item-title{
  margin:0;
  font-weight:700;
  color:var(--primary);
}

.tree-quote-item-meta,
.wreath-quote-item-meta,
.roping-quote-item-meta,
.branches-quote-item-meta,
.blankets-quote-item-meta,
.master-quote-item-meta{
  margin:4px 0 0;
  color:#666;
  font-size:.92rem;
  line-height:1.5;
}

.master-quote-group{
  margin-bottom:18px;
}

.master-quote-group-title{
  margin:0 0 10px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--primary);
}

.remove-tree-quote-item,
.remove-wreath-quote-item,
.remove-roping-quote-item,
.remove-branches,
.remove-blankets-quote-item{
  border:none;
  background:none;
  color:#9b1c1c;
  font-weight:700;
  cursor:pointer;
  padding:0;
}

.remove-master-item{
  background:none;
  border:none;
  color:#b3131b;
  font-size:12px;
  font-weight:600;
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.remove-tree-quote-item:hover,
.remove-wreath-quote-item:hover,
.remove-roping-quote-item:hover,
.remove-branches:hover,
.remove-blankets-quote-item:hover,
.remove-master-item:hover{
  text-decoration:underline;
}

/* ===============================
   TREE / WREATH / MASTER FORMS
================================ */
.tree-quote-form,
.wreath-quote-form,
.master-quote-form{
  margin-top:26px;
  padding-top:26px;
  border-top:1px solid rgba(0,0,0,.08);
}

.tree-quote-form .form-grid,
.wreath-quote-form .form-grid,
.master-quote-form .form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px 18px;
}

.tree-quote-form .form-row,
.wreath-quote-form .form-row,
.master-quote-form .form-row{
  display:flex;
  flex-direction:column;
}

.tree-quote-form .form-row-full,
.wreath-quote-form .form-row-full,
.master-quote-form .form-row-full{
  grid-column:1 / -1;
}

.tree-quote-form .form-row label,
.wreath-quote-form .form-row label,
.master-quote-form .form-row label{
  margin-bottom:7px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(0,0,0,.68);
}

.tree-quote-form input,
.tree-quote-form textarea,
.wreath-quote-form input,
.wreath-quote-form textarea,
.master-quote-form input,
.master-quote-form textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  background:#fff;
  padding:14px 15px;
  font-family:inherit;
  font-size:14px;
  line-height:1.4;
  color:var(--text);
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background-color .25s ease;
  -webkit-appearance:none;
  appearance:none;
}

.tree-quote-form input::placeholder,
.tree-quote-form textarea::placeholder,
.wreath-quote-form input::placeholder,
.wreath-quote-form textarea::placeholder,
.master-quote-form input::placeholder,
.master-quote-form textarea::placeholder{
  color:rgba(0,0,0,.42);
}

.tree-quote-form input:hover,
.tree-quote-form textarea:hover,
.wreath-quote-form input:hover,
.wreath-quote-form textarea:hover,
.master-quote-form input:hover,
.master-quote-form textarea:hover{
  border-color:rgba(202,148,59,.38);
}

.tree-quote-form input:focus,
.tree-quote-form textarea:focus,
.wreath-quote-form input:focus,
.wreath-quote-form textarea:focus,
.master-quote-form input:focus,
.master-quote-form textarea:focus{
  outline:none;
  border-color:rgba(202,148,59,.9);
  box-shadow:0 0 0 4px rgba(202,148,59,.12);
  background:#fff;
}

.tree-quote-form textarea,
.wreath-quote-form textarea,
.master-quote-form textarea{
  min-height:130px;
  resize:vertical;
}

.submit-tree-quote-btn,
.submit-wreath-quote-btn,
.submit-master-quote-btn{
  width:100%;
  min-height:52px;
  margin-top:22px;
  border:none;
  border-radius:12px;
  background:var(--primary);
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  transition:
    background .25s ease,
    transform .2s ease,
    box-shadow .25s ease;
  box-shadow:0 10px 24px rgba(11,91,15,.16);
}

.submit-tree-quote-btn:hover,
.submit-wreath-quote-btn:hover,
.submit-master-quote-btn:hover{
  background:#09480c;
  transform:translateY(-1px);
}

.submit-tree-quote-btn:active,
.submit-wreath-quote-btn:active,
.submit-master-quote-btn:active{
  transform:translateY(0);
}

.clear-quote-btn{
  width:100%;
  margin-top:10px;
  margin-bottom:10px;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.08);
  background:#fafafa;
  color:#555;
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  transition:all .25s ease;
}

.clear-quote-btn:hover{
  background:#f0f0f0;
}

/* ===============================
   DESKTOP ONLY DROPDOWN TOGGLE LOOK
================================ */
@media (min-width:981px){
  .dropdown-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:40px;
    padding:0;
    background:none;
    border-radius:0;
    cursor:default;
  }

  .dropdown-toggle::after{
    content:none;
  }

  .dropdown:hover .dropdown-menu{
    display:block;
  }

  .dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    background:var(--primary);
    padding:12px 0;
    margin:12px 0 0;
    border-radius:8px;
    display:none;
    z-index:2000;
  }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width:980px){
  .hamburger{
    display:flex;
  }

  .header-socials{
    display:flex;
    align-items:center;
    gap:8px;
  }

  .site-nav{
    justify-content:flex-end;
  }

  .nav-links{
    position:fixed;
    top:calc((var(--header-pad) * 2) + var(--logo-h) + 8px);
    right:0;
    bottom:24px;
    width:280px;
    height:auto;
    margin:0;
    padding:18px;
    list-style:none;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    background:var(--primary);
    box-shadow:-10px 0 24px rgba(0,0,0,.18);
    transform:translateX(100%);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:
      transform .45s cubic-bezier(.22, .61, .36, 1),
      opacity .25s ease,
      visibility .25s ease;
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    z-index:2000;
    overflow-y:auto;
    border-radius:18px 0 0 18px;
  }

  .nav-links.open{
    transform:translateX(0);
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .nav-links li{
    width:100%;
    display:block;
    opacity:0;
    transform:translateX(12px);
  }

  .nav-links.open li{
    opacity:1;
    transform:translateX(0);
    transition:opacity .35s ease, transform .35s ease;
  }

  .nav-links.open li:nth-child(1){ transition-delay:.05s; }
  .nav-links.open li:nth-child(2){ transition-delay:.08s; }
  .nav-links.open li:nth-child(3){ transition-delay:.11s; }
  .nav-links.open li:nth-child(4){ transition-delay:.14s; }
  .nav-links.open li:nth-child(5){ transition-delay:.17s; }
  .nav-links.open li:nth-child(6){ transition-delay:.20s; }
  .nav-links.open li:nth-child(7){ transition-delay:.23s; }
  .nav-links.open li:nth-child(8){ transition-delay:.26s; }
  .nav-links.open li:nth-child(9){ transition-delay:.29s; }

  .nav-link,
  .nav-links a,
  .dropdown-toggle{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    width:100%;
    min-height:46px;
    padding:12px 14px;
    border-radius:12px;
    background:rgba(255,255,255,.08);
    text-align:left;
    font-size:13px;
    color:#fff;
  }

  .dropdown{
    display:block;
  }

  .dropdown::after{
    display:none;
  }

  .dropdown-toggle{
    cursor:pointer;
  }

  .dropdown-toggle::after{
    content:"▾";
    margin-left:auto;
    font-size:12px;
    transition:transform .3s ease;
  }

  .dropdown.open .dropdown-toggle::after{
    transform:rotate(180deg);
  }

  .dropdown-menu{
    position:static;
    min-width:unset;
    margin:8px 0 0;
    padding:0 0 0 10px;
    background:none;
    border-radius:0;
    box-shadow:none;
    display:block;
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
  }

  .dropdown.open .dropdown-menu{
    max-height:420px;
  }

  .dropdown-menu a{
    min-height:42px;
    padding:10px 12px;
    font-size:13px;
    background:rgba(255,255,255,.05);
    border-radius:10px;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  .map-embed iframe,
  .map-wrap iframe{
    height:360px;
  }

  .footer-main{
    grid-template-columns:1fr;
    row-gap:28px;
  }

  .footer-logo{
    justify-content:flex-start;
  }

  .footer-columns{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:28px 32px;
  }

  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:900px){
  .services-list{
    grid-template-columns:1fr;
    gap:24px;
    margin-top:20px;
  }

  .service-item{
    padding-bottom:18px;
  }

  .service-item:nth-last-child(-n+2){
    border-bottom:1px solid rgba(0,0,0,.10);
  }

  .service-item:last-child{
    border-bottom:none;
  }

  .press-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .work-gallery{
    grid-template-columns:repeat(3,1fr);
  }

  .retail-gallery{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){
  .visit-grid{
    grid-template-columns:1fr;
  }

  .tree-quote-drawer,
  .wreath-quote-drawer,
  .roping-quote-drawer,
  .branches-quote-drawer,
  .blankets-quote-drawer,
  .master-quote-drawer{
    max-width:100%;
  }

  .tree-quote-drawer-body,
  .wreath-quote-drawer-body,
  .roping-quote-drawer-body,
  .branches-quote-drawer-body,
  .blankets-quote-drawer-body,
  .master-quote-drawer-body{
    padding:18px 16px 30px;
  }

  .tree-quote-form .form-grid,
  .wreath-quote-form .form-grid,
  .master-quote-form .form-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .tree-quote-form .form-row-full,
  .wreath-quote-form .form-row-full,
  .master-quote-form .form-row-full{
    grid-column:auto;
  }

  .tree-quote-form input,
  .tree-quote-form textarea,
  .wreath-quote-form input,
  .wreath-quote-form textarea,
  .master-quote-form input,
  .master-quote-form textarea{
    font-size:16px;
    padding:14px 14px;
  }

  .add-tree-request-btn,
  .add-wreath-request-btn,
  .add-roping-request-btn,
  .add-branches-request-btn,
  .add-blankets-request-btn{
    margin-top:14px;
    padding:14px;
  }

  .submit-tree-quote-btn,
  .submit-wreath-quote-btn,
  .submit-master-quote-btn{
    padding:16px;
  }

  .tree-size-row,
  .wreath-size-row,
  .roping-size-row,
  .branches-size-row,
  .blankets-size-row{
    grid-template-columns:1fr 90px;
    gap:10px;
    padding:12px 14px;
  }

  .tree-size-label,
  .wreath-size-label,
  .roping-size-label,
  .branches-size-label,
  .blankets-size-label{
    font-size:13px;
  }

  .tree-size-qty,
  .wreath-size-qty,
  .roping-size-qty,
  .branches-size-qty,
  .blankets-size-qty{
    height:42px;
    font-size:16px;
  }

  .quote-icon{
    width:40px;
    height:40px;
    margin-left:8px;
  }

  .quote-cart-icon{
    width:40px;
    height:40px;
  }

  .quote-cart-icon i{
    font-size:15px;
  }
}

@media (max-width:640px){
  .footer-main{
    padding:36px 0;
  }

  .footer-logo{
    justify-content:center;
  }

  .footer-logo img{
    height:58px;
  }

  .footer-columns{
    grid-template-columns:1fr;
    gap:24px;
  }

  .footer-column,
  .footer-social-column{
    align-items:center;
    text-align:center;
  }

  .footer-social{
    justify-content:center;
  }
}

@media (max-width:600px){
  :root{
    --logo-h:78px;
  }

  .header-container{
    gap:14px;
  }

  .header-phone{
    width:36px;
    height:36px;
  }

  .header-spacer{
    height:calc((var(--header-pad) * 2) + var(--logo-h));
  }

  .section{
    padding:28px 0;
  }

  .hero-slider{
    height:420px;
  }

  .hero-arrow{
    display:flex;
  }

  .hero-cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .trees-hero,
  .wreath-hero,
  .roping-hero,
  .westcoast-hero,
  .blankets-hero,
  .branches-hero,
  .netting-hero,
  .tree-stands-hero,
  .retail-hero{
    height:300px;
  }

  .trees-hero-bg,
  .wreath-hero-bg,
  .roping-hero-bg,
  .westcoast-hero-bg,
  .blankets-hero-bg,
  .branches-hero-bg,
  .netting-hero-bg,
  .tree-stands-hero-bg,
  .retail-hero-bg{
    background-size:cover;
    background-position:center center;
  }

  .trees-hero-content h1,
  .wreath-hero-content h1,
  .roping-hero-content h1,
  .westcoast-hero-content h1,
  .blankets-hero-content h1,
  .branches-hero-content h1,
  .netting-hero-content h1,
  .tree-stands-hero-content h1,
  .retail-hero-content h1{
    font-size:34px;
  }

  .trees-hero-content p,
  .wreath-hero-content p,
  .roping-hero-content p,
  .westcoast-hero-content p,
  .blankets-hero-content p,
  .branches-hero-content p,
  .netting-hero-content p,
  .tree-stands-hero-content p,
  .retail-hero-content p{
    font-size:14px;
  }

  .service-item h2,
  .service-item h3{
    font-size:17px;
  }

  .service-item p{
    font-size:14px;
    line-height:1.65;
  }

  .press-grid{
    grid-template-columns:1fr;
  }

  .work-gallery{
    grid-template-columns:repeat(2,1fr);
  }

  .work-gallery img,
  .work-item img{
    height:220px;
  }

  .retail-gallery{
    grid-template-columns:1fr;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .lightbox-caption{
    bottom:20px;
    font-size:13px;
    max-width:88%;
    padding:8px 12px;
  }
}
#add-tree-request-btn{
  width:100%;
  margin-top:16px;
  padding:14px 18px;
  background:transparent;
  border:1.5px solid #caa35b;
  color:#0B5B0F;
  border-radius:12px;
  font-family:'Montserrat', sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-align:center;
  cursor:pointer;
  transition:all .25s ease;
  appearance:none;
  -webkit-appearance:none;
}

#add-tree-request-btn:hover{
  background:#0B5B0F;
  color:#fff;
  border-color:#0B5B0F;
}
/* ===============================
   NETTING & BALERS QUOTE SYSTEM
================================ */

.netting-quote-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:9998;
}

.netting-quote-overlay.active{
  opacity:1;
  visibility:visible;
}

.netting-quote-drawer{
  position:fixed;
  top:0;
  right:-480px;
  width:100%;
  max-width:480px;
  height:100vh;
  background:#fff;
  color:#222;
  z-index:9999;
  box-shadow:-8px 0 28px rgba(0,0,0,.18);
  transition:right .35s ease;
  display:flex;
  flex-direction:column;
}

.netting-quote-drawer.open{
  right:0;
}

.netting-quote-drawer-header{
  flex:0 0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 20px;
  border-bottom:1px solid #e7e7e7;
  background:#fff;
}

.netting-quote-drawer-header h2{
  margin:0;
  font-size:1.25rem;
  color:var(--primary);
}

#netting-quote-drawer #close-netting-quote-btn{
  border:none;
  background:none;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
  color:#222;
}

.netting-quote-drawer-body{
  flex:1 1 auto;
  min-height:0;
  overflow-y:auto;
  padding:20px 20px 30px;
}

#netting_type_select{
  width:100%;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  background:#f8f8f6;
  padding:14px 15px;
  font-family:inherit;
  font-size:14px;
  color:var(--text);
  margin-bottom:16px;
}

.netting-size-grid{
  margin-top:0;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}

.netting-size-row{
  display:grid;
  grid-template-columns:1fr 110px;
  gap:12px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.netting-size-row:last-child{
  border-bottom:none;
}

.netting-size-label{
  font-size:14px;
  font-weight:600;
  color:#1d1d1d;
  letter-spacing:.01em;
}

.netting-size-qty{
  width:100%;
  height:44px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  background:#fff;
  padding:10px 12px;
  font:inherit;
  font-size:14px;
  text-align:center;
  color:var(--text);
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background-color .25s ease;
  -webkit-appearance:none;
  appearance:none;
}

.netting-size-qty:hover{
  border-color:rgba(202,148,59,.4);
}

.netting-size-qty:focus{
  outline:none;
  border-color:rgba(202,148,59,.9);
  box-shadow:0 0 0 4px rgba(202,148,59,.12);
}

#netting-quote-items-list{
  margin-top:18px;
}

.netting-quote-empty{
  margin:0;
  color:rgba(0,0,0,.62);
  font-size:14px;
}

.netting-quote-item{
  border:1px solid #e5e5e5;
  border-radius:12px;
  padding:14px;
  margin:12px 0;
  background:#fafafa;
}

.netting-quote-item-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}

.netting-quote-item-title{
  margin:0;
  font-weight:700;
  color:var(--primary);
}

.netting-quote-item-meta{
  margin:4px 0 0;
  color:#666;
  font-size:.92rem;
  line-height:1.5;
}

.remove-netting-quote-item{
  border:none;
  background:none;
  color:#9b1c1c;
  font-weight:700;
  cursor:pointer;
  padding:0;
}

.remove-netting-quote-item:hover{
  text-decoration:underline;
}

@media (max-width:768px){
  .netting-quote-drawer{
    max-width:100%;
  }

  .netting-quote-drawer-body{
    padding:18px 16px 30px;
  }

  .netting-size-row{
    grid-template-columns:1fr 90px;
    gap:10px;
    padding:12px 14px;
  }

  .netting-size-label{
    font-size:13px;
  }

  .netting-size-qty{
    height:42px;
    font-size:16px;
  }
}
/* ===============================
   TREE STANDS QUOTE SYSTEM
================================ */

.tree-stands-quote-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:9998;
}

.tree-stands-quote-overlay.active{
  opacity:1;
  visibility:visible;
}

.tree-stands-quote-drawer{
  position:fixed;
  top:0;
  right:-480px;
  width:100%;
  max-width:480px;
  height:100vh;
  background:#fff;
  color:#222;
  z-index:9999;
  box-shadow:-8px 0 28px rgba(0,0,0,.18);
  transition:right .35s ease;
  display:flex;
  flex-direction:column;
}

.tree-stands-quote-drawer.open{
  right:0;
}

.tree-stands-quote-drawer-header{
  flex:0 0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 20px;
  border-bottom:1px solid #e7e7e7;
  background:#fff;
}

.tree-stands-quote-drawer-header h2{
  margin:0;
  font-size:1.25rem;
  color:var(--primary);
}

#tree-stands-quote-drawer #close-tree-stands-quote-btn{
  border:none;
  background:none;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
  color:#222;
}

.tree-stands-quote-drawer-body{
  flex:1 1 auto;
  min-height:0;
  overflow-y:auto;
  padding:20px 20px 30px;
}

#tree_stands_type_select{
  width:100%;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  background:#f8f8f6;
  padding:14px 15px;
  font-family:inherit;
  font-size:14px;
  color:var(--text);
  margin-bottom:16px;
}

.tree-stands-size-grid{
  margin-top:0;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}

.tree-stands-size-row{
  display:grid;
  grid-template-columns:1fr 110px;
  gap:12px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.tree-stands-size-row:last-child{
  border-bottom:none;
}

.tree-stands-size-label{
  font-size:14px;
  font-weight:600;
  color:#1d1d1d;
  letter-spacing:.01em;
}

.tree-stands-size-qty{
  width:100%;
  height:44px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  background:#fff;
  padding:10px 12px;
  font:inherit;
  font-size:14px;
  text-align:center;
  color:var(--text);
  transition:border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
  -webkit-appearance:none;
  appearance:none;
}

.tree-stands-size-qty:hover{
  border-color:rgba(202,148,59,.4);
}

.tree-stands-size-qty:focus{
  outline:none;
  border-color:rgba(202,148,59,.9);
  box-shadow:0 0 0 4px rgba(202,148,59,.12);
}

#tree-stands-quote-items-list{
  margin-top:18px;
}

.tree-stands-quote-empty{
  margin:0;
  color:rgba(0,0,0,.62);
  font-size:14px;
}

.tree-stands-quote-item{
  border:1px solid #e5e5e5;
  border-radius:12px;
  padding:14px;
  margin:12px 0;
  background:#fafafa;
}

.tree-stands-quote-item-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}

.tree-stands-quote-item-title{
  margin:0;
  font-weight:700;
  color:var(--primary);
}

.tree-stands-quote-item-meta{
  margin:4px 0 0;
  color:#666;
  font-size:.92rem;
  line-height:1.5;
}

.remove-tree-stands-quote-item{
  border:none;
  background:none;
  color:#9b1c1c;
  font-weight:700;
  cursor:pointer;
  padding:0;
}

.remove-tree-stands-quote-item:hover{
  text-decoration:underline;
}

@media (max-width:768px){
  .tree-stands-quote-drawer{
    max-width:100%;
  }

  .tree-stands-quote-drawer-body{
    padding:18px 16px 30px;
  }

  .tree-stands-size-row{
    grid-template-columns:1fr 90px;
    gap:10px;
    padding:12px 14px;
  }

  .tree-stands-size-label{
    font-size:13px;
  }

  .tree-stands-size-qty{
    height:42px;
    font-size:16px;
  }
}
/* ===============================
   MATCH NETTING + TREE STANDS DRAWER BUTTONS
================================ */
#add-netting-request-btn,
#add-tree-stands-request-btn{
  width:100%;
  display:block;
  margin-top:18px;
  margin-bottom:0;
  padding:14px;
  background:transparent;
  border:1.5px solid #caa35b;
  color:#0B5B0F;
  border-radius:12px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-align:center;
  cursor:pointer;
  transition:all .25s ease;
  appearance:none;
  -webkit-appearance:none;
}

#add-netting-request-btn:hover,
#add-tree-stands-request-btn:hover{
  background:#0B5B0F;
  color:#fff;
  border-color:#0B5B0F;
}
/* ===============================
   WEST COAST GREENS QUOTE SYSTEM
================================ */

.west-coast-quote-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:9998;
}

.west-coast-quote-overlay.active{
  opacity:1;
  visibility:visible;
}

.west-coast-quote-drawer{
  position:fixed;
  top:0;
  right:-480px;
  width:100%;
  max-width:480px;
  height:100vh;
  background:#fff;
  color:#222;
  z-index:9999;
  box-shadow:-8px 0 28px rgba(0,0,0,.18);
  transition:right .35s ease;
  display:flex;
  flex-direction:column;
}

.west-coast-quote-drawer.open{
  right:0;
}

.west-coast-quote-drawer-header{
  flex:0 0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 20px;
  border-bottom:1px solid #e7e7e7;
  background:#fff;
}

.west-coast-quote-drawer-header h2{
  margin:0;
  font-size:1.25rem;
  color:var(--primary);
}

#west-coast-quote-drawer #close-west-coast-quote-btn{
  border:none;
  background:none;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
  color:#222;
}

.west-coast-quote-drawer-body{
  flex:1 1 auto;
  min-height:0;
  overflow-y:auto;
  padding:20px 20px 30px;
}

#west_coast_type_select{
  width:100%;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  background:#f8f8f6;
  padding:14px 15px;
  font-family:inherit;
  font-size:14px;
  color:var(--text);
  margin-bottom:16px;
}

.west-coast-size-grid{
  margin-top:0;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}

.west-coast-size-row{
  display:grid;
  grid-template-columns:1fr 110px;
  gap:12px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.west-coast-size-row:last-child{
  border-bottom:none;
}

.west-coast-size-label{
  font-size:14px;
  font-weight:600;
  color:#1d1d1d;
  letter-spacing:.01em;
}

.west-coast-size-unit{
  display:inline-block;
  margin-left:6px;
  font-size:11px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#777;
}

.west-coast-size-qty{
  width:100%;
  height:44px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  background:#fff;
  padding:10px 12px;
  font:inherit;
  font-size:14px;
  text-align:center;
  color:var(--text);
  transition:border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
  -webkit-appearance:none;
  appearance:none;
}

.west-coast-size-qty:hover{
  border-color:rgba(202,148,59,.4);
}

.west-coast-size-qty:focus{
  outline:none;
  border-color:rgba(202,148,59,.9);
  box-shadow:0 0 0 4px rgba(202,148,59,.12);
}

#west-coast-quote-items-list{
  margin-top:18px;
}

.west-coast-quote-empty{
  margin:0;
  color:rgba(0,0,0,.62);
  font-size:14px;
}

.west-coast-quote-item{
  border:1px solid #e5e5e5;
  border-radius:12px;
  padding:14px;
  margin:12px 0;
  background:#fafafa;
}

.west-coast-quote-item-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}

.west-coast-quote-item-title{
  margin:0;
  font-weight:700;
  color:var(--primary);
}

.west-coast-quote-item-meta{
  margin:4px 0 0;
  color:#666;
  font-size:.92rem;
  line-height:1.5;
}

.remove-west-coast-quote-item{
  border:none;
  background:none;
  color:#9b1c1c;
  font-weight:700;
  cursor:pointer;
  padding:0;
}

.remove-west-coast-quote-item:hover{
  text-decoration:underline;
}

/* match other drawer buttons */
#add-west-coast-request-btn{
  width:100%;
  display:block;
  margin-top:18px;
  margin-bottom:0;
  padding:14px;
  background:transparent;
  border:1.5px solid #caa35b;
  color:#0B5B0F;
  border-radius:12px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-align:center;
  cursor:pointer;
  transition:all .25s ease;
  appearance:none;
  -webkit-appearance:none;
}

#add-west-coast-request-btn:hover{
  background:#0B5B0F;
  color:#fff;
  border-color:#0B5B0F;
}

@media (max-width:768px){
  .west-coast-quote-drawer{
    max-width:100%;
  }

  .west-coast-quote-drawer-body{
    padding:18px 16px 30px;
  }

  .west-coast-size-row{
    grid-template-columns:1fr 90px;
    gap:10px;
    padding:12px 14px;
  }

  .west-coast-size-label{
    font-size:13px;
  }

  .west-coast-size-qty{
    height:42px;
    font-size:16px;
  }
}
/* ===============================
   MOBILE MENU SOCIALS
================================ */
.mobile-socials-item{
  display:none !important;
}

.mobile-menu-socials{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:12px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.14);
}

.mobile-menu-socials a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:10px;
  background:rgba(255,255,255,.06);
  color:#fff;
  transition:all .25s ease;
}

.mobile-menu-socials a:hover{
  background:rgba(255,255,255,.12);
  color:var(--accent);
}

@media (max-width:980px){
  .desktop-socials a:not(.quote-icon){
    display:none;
  }

  .mobile-socials-item{
    display:block !important;
    width:100%;
  }
}
/* ===============================
   MOBILE FIXES
================================ */
@media (max-width: 980px){

  .header-container{
    gap:12px;
    padding:0 14px;
  }

  .site-nav{
    flex:0 0 auto;
  }

  .desktop-socials a:not(.quote-icon){
    display:none;
  }

  .header-phone{
    width:36px;
    height:36px;
  }

  .quote-icon{
    width:40px;
    height:40px;
    margin-left:0;
  }

  .quote-cart-icon{
    width:40px;
    height:40px;
    border-radius:10px;
  }

  .quote-count{
    top:-3px;
    right:-3px;
  }

  .hamburger{
    display:flex;
    width:42px;
    height:42px;
    flex:0 0 42px;
  }

  .nav-links{
    position:fixed;
    top:calc((var(--header-pad) * 2) + var(--logo-h));
    right:0;
    width:min(86vw, 320px);
    height:calc(100vh - ((var(--header-pad) * 2) + var(--logo-h)));
    padding:16px;
    margin:0;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    background:var(--primary);
    transform:translateX(100%);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    overflow-y:auto;
    z-index:2001;
    border-radius:18px 0 0 18px;
    box-shadow:-12px 0 30px rgba(0,0,0,.20);
    transition:transform .35s ease, opacity .25s ease, visibility .25s ease;
  }

  .nav-links.open{
    transform:translateX(0);
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .nav-links li{
    width:100%;
    display:block;
  }

  .nav-link,
  .nav-links a,
  .dropdown-toggle{
    display:flex;
    width:100%;
    min-height:46px;
    align-items:center;
    justify-content:flex-start;
    padding:12px 14px;
    background:rgba(255,255,255,.08);
    border-radius:12px;
    font-size:13px;
    text-align:left;
  }

  .dropdown{
    display:block;
  }

  .dropdown-toggle{
    cursor:pointer;
  }

  .dropdown-toggle::after{
    content:"▾";
    margin-left:auto;
    font-size:12px;
    transition:transform .25s ease;
  }

  .dropdown.open .dropdown-toggle::after{
    transform:rotate(180deg);
  }

  .dropdown-menu{
    position:static;
    display:block;
    min-width:unset;
    max-height:0;
    overflow:hidden;
    margin:8px 0 0;
    padding:0 0 0 10px;
    background:none;
    border-radius:0;
    box-shadow:none;
    transition:max-height .3s ease;
  }

  .dropdown.open .dropdown-menu{
    max-height:520px;
  }

  .dropdown-menu a{
    min-height:42px;
    padding:10px 12px;
    background:rgba(255,255,255,.05);
    border-radius:10px;
    font-size:13px;
  }

  .mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    z-index:1999;
    transition:opacity .25s ease, visibility .25s ease;
  }

  .mobile-overlay.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .mobile-socials-item{
    display:block !important;
    width:100%;
  }

  .mobile-menu-socials{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:8px;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,.14);
  }

  .mobile-menu-socials a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.18);
    border-radius:10px;
    background:rgba(255,255,255,.06);
    color:#fff;
  }

  .services-list,
  .contact-grid,
  .visit-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .work-gallery,
  .retail-gallery{
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
  }

  .work-gallery img,
  .work-item img,
  .retail-gallery img{
    height:190px;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .footer-main{
    grid-template-columns:1fr;
    row-gap:28px;
  }

  .footer-columns{
    grid-template-columns:1fr;
    gap:24px;
  }

  .footer-column,
  .footer-social-column{
    text-align:center;
    align-items:center;
  }

  .footer-social{
    justify-content:center;
  }
}

@media (max-width: 768px){

  .tree-quote-drawer,
  .wreath-quote-drawer,
  .roping-quote-drawer,
  .branches-quote-drawer,
  .blankets-quote-drawer,
  .west-coast-quote-drawer,
  .netting-quote-drawer,
  .tree-stands-quote-drawer,
  .master-quote-drawer{
    max-width:100%;
    width:100%;
    right:-100%;
  }

  .tree-quote-drawer.open,
  .wreath-quote-drawer.open,
  .roping-quote-drawer.open,
  .branches-quote-drawer.open,
  .blankets-quote-drawer.open,
  .west-coast-quote-drawer.open,
  .netting-quote-drawer.open,
  .tree-stands-quote-drawer.open,
  .master-quote-drawer.open{
    right:0;
  }

  .tree-quote-drawer-body,
  .wreath-quote-drawer-body,
  .roping-quote-drawer-body,
  .branches-quote-drawer-body,
  .blankets-quote-drawer-body,
  .west-coast-quote-drawer-body,
  .netting-quote-drawer-body,
  .tree-stands-quote-drawer-body,
  .master-quote-drawer-body{
    padding:18px 16px 28px;
  }

  .tree-quote-form .form-grid,
  .wreath-quote-form .form-grid,
  .master-quote-form .form-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .tree-size-row,
  .wreath-size-row,
  .roping-size-row,
  .branches-size-row,
  .blankets-size-row,
  .west-coast-size-row,
  .netting-size-row,
  .tree-stands-size-row{
    grid-template-columns:1fr 90px;
    gap:10px;
    padding:12px 14px;
  }

  .tree-size-qty,
  .wreath-size-qty,
  .roping-size-qty,
  .branches-size-qty,
  .blankets-size-qty,
  .west-coast-size-qty,
  .netting-size-qty,
  .tree-stands-size-qty,
  .tree-quote-form input,
  .tree-quote-form textarea,
  .wreath-quote-form input,
  .wreath-quote-form textarea,
  .master-quote-form input,
  .master-quote-form textarea{
    font-size:16px;
  }
}

@media (max-width: 600px){

  :root{
    --logo-h:78px;
  }

  .hero-slider{
    height:420px;
  }

  .trees-hero,
  .wreath-hero,
  .roping-hero,
  .westcoast-hero,
  .blankets-hero,
  .branches-hero,
  .netting-hero,
  .tree-stands-hero,
  .retail-hero{
    height:290px;
  }

  .trees-hero-content h1,
  .wreath-hero-content h1,
  .roping-hero-content h1,
  .westcoast-hero-content h1,
  .blankets-hero-content h1,
  .branches-hero-content h1,
  .netting-hero-content h1,
  .tree-stands-hero-content h1,
  .retail-hero-content h1{
    font-size:34px;
  }

  .section{
    padding:28px 0;
  }

  .work-gallery{
    grid-template-columns:1fr;
  }

  .work-gallery img,
  .work-item img{
    height:220px;
  }

  .retail-gallery{
    grid-template-columns:1fr;
  }
}
/* ===============================
   MOBILE MENU FIX OVERWRITE
================================ */
.site-header{
  z-index:3000 !important;
}

.mobile-overlay{
  position:fixed !important;
  inset:0 !important;
  background:rgba(0,0,0,.35) !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transition:opacity .25s ease, visibility .25s ease !important;
  z-index:2998 !important;
}

.mobile-overlay.active{
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
}

@media (max-width:980px){
  .site-nav{
    flex:0 0 auto !important;
  }

  .nav-links{
    position:fixed !important;
    top:calc((var(--header-pad) * 2) + var(--logo-h)) !important;
    right:0 !important;
    width:min(86vw, 320px) !important;
    height:calc(100vh - ((var(--header-pad) * 2) + var(--logo-h))) !important;
    margin:0 !important;
    padding:16px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:8px !important;
    background:var(--primary) !important;
    transform:translateX(100%) !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    overflow-y:auto !important;
    border-radius:18px 0 0 18px !important;
    box-shadow:-12px 0 30px rgba(0,0,0,.20) !important;
    z-index:3001 !important;
    transition:transform .35s ease, opacity .25s ease, visibility .25s ease !important;
  }

  .nav-links.open{
    transform:translateX(0) !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }

  .nav-links li{
    width:100% !important;
    display:block !important;
    opacity:1 !important;
    transform:none !important;
  }

  .dropdown{
    display:block !important;
  }

  .dropdown-menu{
    position:static !important;
    min-width:unset !important;
    display:block !important;
    max-height:0 !important;
    overflow:hidden !important;
    margin:8px 0 0 !important;
    padding:0 0 0 10px !important;
    background:none !important;
    border-radius:0 !important;
    box-shadow:none !important;
    transition:max-height .3s ease !important;
  }

  .dropdown.open .dropdown-menu{
    max-height:520px !important;
  }

  .dropdown-toggle::after{
    content:"▾" !important;
    margin-left:auto !important;
    font-size:12px !important;
    transition:transform .25s ease !important;
  }

  .dropdown.open .dropdown-toggle::after{
    transform:rotate(180deg) !important;
  }
}
/* ===============================
   MASTER QUOTE MOBILE BUTTON FIX
================================ */
.master-quote-drawer{
  z-index:9999 !important;
}

.master-quote-overlay{
  z-index:9998 !important;
}

.master-quote-drawer-body{
  position:relative !important;
  z-index:2 !important;
  pointer-events:auto !important;
}

.master-quote-form{
  position:relative !important;
  z-index:3 !important;
  pointer-events:auto !important;
}

.clear-quote-btn,
.submit-master-quote-btn{
  position:relative !important;
  z-index:4 !important;
  pointer-events:auto !important;
  touch-action:manipulation !important;
}

@media (max-width:768px){
  .master-quote-drawer{
    width:100% !important;
    max-width:100% !important;
    right:-100% !important;
  }

  .master-quote-drawer.open{
    right:0 !important;
  }

  .master-quote-drawer-body{
    padding:18px 16px 110px !important;
    overflow-y:auto !important;
    -webkit-overflow-scrolling:touch !important;
  }

  .master-quote-form{
    display:block !important;
  }

  .clear-quote-btn,
  .submit-master-quote-btn{
    width:100% !important;
    min-height:52px !important;
  }
}
	.form-status-message{
  display:none;
  margin:0 0 18px;
  padding:14px 16px;
  border-radius:12px;
  font-size:14px;
  line-height:1.5;
  font-weight:600;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.form-status-message.is-success{
  display:block;
  background:#f4faf4;
  color:#0B5B0F;
  border-color:rgba(11,91,15,.14);
}

.form-status-message.is-error{
  display:block;
  background:#fff7f7;
  color:#9b1c1c;
  border-color:rgba(155,28,28,.14);
}
.submit-master-quote-btn.is-loading {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  cursor: not-allowed;
  opacity: 0.95;
}

.submit-master-quote-btn.is-loading::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  box-sizing: border-box;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ca943b;
  border-radius: 50%;
  animation: quoteSpin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes quoteSpin {
  to {
    transform: rotate(360deg);
  }
}
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .mobile-sticky-cta {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex !important;
    justify-content: center;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.08);
  }

  .mobile-sticky-btn {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    max-width: 520px;
    border: 0;
    border-radius: 999px;
    background: #0B5B0F;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 14px 18px;
    margin: 0;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
    text-align: center;
  }

  body {
    padding-bottom: 88px;
  }
}
body.lightbox-open .mobile-sticky-cta{
  display:none !important;
}