/* ===============================
   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;
}

.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);
}

/* ===============================
   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;
}

.heritage-image{
  margin-top:50px;
  width:100%;
  overflow:hidden;
}

.heritage-image img{
  width:100%;
  height:475px;
  object-fit:cover;
}

.heritage-gallery{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-template-rows:200px 200px;
  gap:16px;
  margin-top:30px;
}

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

.heritage-large{
  grid-row:1 / span 2;
  object-position:center 75%;
}

.heritage-gallery img:nth-child(1){ object-position:center 45%; }
.heritage-gallery img:nth-child(2){ object-position:center 30%; }
.heritage-gallery img:nth-child(3){ object-position:center 30%; }
.heritage-gallery img:nth-child(4){ object-position:center 30%; }
.heritage-gallery img:nth-child(5){ object-position:center 50%; }
.heritage-gallery img:nth-child(6){ object-position:center 70%; }

.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;
}

/* ===============================
   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;
  }

  .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;
  }
}

@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;
  }

  .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:320px;
  }

  .heritage-gallery{
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
  }

  .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;
  }
}

/* ===============================
   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;
}
/* ===============================
   MOBILE MENU ITEM ANIMATION
================================ */
.nav-links li{
  opacity:0;
  transform:translateX(12px);
}

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

/* stagger timing */
.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; }