/* RESET */
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000000;
  color: white;
}






/* ---------- NAVBAR ---------- */
.navbar{
    position: fixed;
    z-index: 1000;
    --bar-h: 100px;                 /* desktop height */
    display: flex;
    height: 100px;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    background-color: #1c1c1c;
    flex: nowrap;
    position: fixed;
    box-shadow: 0 5px 5px #ffffff, 0 0 20px #ffffff, 0 0 40px #ffffff;
    top: 0;
    left: 0;
}

.logo-container{
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  display: flex;
  background-color: black;
  width: 250px;
  height: 110%;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  background:#000 url("../camo-imgs/camoflauge.png") left top no-repeat fixed;
  background-size: auto;
}

.logo{
  z-index: 2;
  margin-right: 10px;
  width:auto;
  height: calc(var(--bar-h) * 0.68); /* scale with navbar height */
}

/* ---------- NAV LINKS CONTAINER ---------- */
.nav-links{
    font-style: none;
    gap: 20px;
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ---------- NAV ITEMS (LINKS + DROPDOWN TRIGGERS) ---------- */
.nav-links a,
.nav-links .dropdown > a,
.nav-links .dropdown > button {
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(0.6rem, 1.3vw, 1.2rem);
  /* normalize vertical rhythm */
  line-height: 1;
  padding: 8px;
  margin: 0;

  display: inline-flex;
  align-items: center;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links .dropdown > a:hover,
.nav-links .dropdown > button:hover {
  color: #ff5500;
}
.services-trigger {
  all: unset;                  /* removes default button styles */
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  padding: 12px 4px;           /* same padding as your <a> */
  line-height: 1;
  white-space: nowrap;
  display: inline-block;       /* matches <a> */
}

/* ---------- DROPDOWN ---------- */
.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center; /* keeps trigger aligned with nav links */
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;   /* sits directly below trigger */
  left: 0;
  width: 240px;
  list-style-type: none;
  background-color: #000;
  border: 2px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  z-index: 20;
  overflow: hidden;
}

.dropdown-content a {
  padding: 16px 24px;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  background-color: #000;
  border-bottom: 1px solid #ff5500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #111;
  color: #ff5500;
}

/* Remove this if you have it */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Use this instead (your JS toggles .open) */
.dropdown-content {
  display: none;
}

.dropdown.open .dropdown-content {
  display: block;
}

.cta-container{
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    background-color: black;
    height: 110%;
    width: 250px;
    justify-content: center;
    align-items: center;  
    display: flex;
    flex-direction: column;
    background:#000 url("../camo-imgs/camoflauge.png") right top no-repeat fixed;
    background-size: auto;
}

.cta-number{
    color: #ffffff;
    margin-top: 8px;
    text-align: center;
    max-width: 100%;
    font-weight: bold;
    font-size: clamp(4px, 18px, 1.3rem);
    font-family: 'Montserrat', sans-serif;
        width: clamp(80px, 16vw, 250px);

}

.cta-button{
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: #ff5500;
    font-weight: 800;
    padding: 0.4rem 1.2rem;
    border-radius: 8px;
    font-size: clamp(4px, 18px, 1.3rem);
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    white-space:nowrap;
    width: fit-content;
    transition: transform 0.3s ease;
  height: calc(var(--bar-h) * 0.24); /* scale with navbar height */
    width: auto;
}

/* HIDDEN MENU */
/* Square, symmetric hamburger that stays transparent */
.hamburger{
  --size: 44px;     /* square tap target */
  --bar-h: 3px;     /* bar thickness */
  --gap: 7px;       /* space between bars */

  position: relative;
  display: none;                /* hidden on desktop */
  width: var(--size);
  height: var(--size);
  padding: 0;
  border: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  cursor: pointer;
  transition: transform .18s ease;
  z-index: 1110;
}

/* show on mobile */
@media (max-width: 1010px){
  .hamburger{ display: inline-flex; align-items:center; justify-content:center; }
}

/* absolutely ensure no white block in any state */
.hamburger,
.hamburger:hover,
.hamburger:active,
.hamburger[aria-expanded="true"]{
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* 3 centered bars */
.hamburger > span{
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--size) * 0.9);
  height: var(--bar-h);
  background: #fff;
  border-radius: var(--bar-h);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease, width .2s ease;
}
.hamburger > span:nth-child(1){
  transform: translate(-50%, calc(-50% - (var(--gap) + var(--bar-h))));
}
.hamburger > span:nth-child(2){
  transform: translate(-50%, -50%);
}
.hamburger > span:nth-child(3){
  transform: translate(-50%, calc(-50% + (var(--gap) + var(--bar-h))));
}

/* subtle hover polish (no bg) */
.hamburger:hover  { transform: scale(1.06); }
.hamburger:active { transform: scale(0.98); }
.hamburger:focus-visible{ outline: 2px solid #fff; outline-offset: 4px; border-radius: 6px; }

/* OPEN: morph into white “X” */
.hamburger[aria-expanded="true"] > span:nth-child(1){
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger[aria-expanded="true"] > span:nth-child(2){
  opacity: 0; width: 0;
}
.hamburger[aria-expanded="true"] > span:nth-child(3){
  transform: translate(-50%, -50%) rotate(-45deg);
}


/* ================= MOBILE (≤768px) ================= */
@media (max-width: 1010px){
  :root { --bar-h: 100px; }

  /* Compact fixed bar */
  .navbar{
    position: sticky;
    top: 0;
    z-index: 1000;
    --bar-h: 120px;
    display:flex;
    align-items:center;
    height: calc(var(--bar-h) * 0.80);;
    width:100%;
    background:#000 url("../camo-imgs/camoflauge.png");
  }
.logo-container{
  visibility: hidden;
}

.logo{
  visibility: hidden;
}
  .hamburger { 
    display: inline-block;
    appearance: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px 40px;
    z-index: 1110; /* above drawer so it's always clickable */
    margin-left: 40px;
    padding: 40px;
  }

/* when drawer is open (aria-expanded="true"), show X */
.hamburger[aria-expanded="true"]{
  /* Icons8 Close (the “X” you referenced) */
  background-image:url("https://img.icons8.com/ios-filled/50/FFFFFF/close.png");
  background-color: #000000;
}

  /* inline nav is turned into an off-canvas drawer */
#primary-nav.nav-links {
  transform:translateX(-100%);
  position: fixed;
  justify-content: start;
  align-items: stretch;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  /* ↓ a comfortable offset below the hamburger, but never less than 8vh */
  padding-top: clamp(8vh, 15dvh, 36dvh);
  width: min(40vw, 380px);
  height: 100dvh;                /* ← full viewport height, mobile-safe */
  background: #000000;
  border-style: solid;
  border-color: #ff5500;
  border-width: 4px 4px 4px 0;
  box-shadow: 0 0 #ffffff, 0 0 20px #ffffff, 0 0 40px #ffffff;
  border-radius: 0 12px 12px 0px;
  box-sizing: border-box;
  gap: 10px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;              /* scroll if content is taller */
  transform: translateX(-100%);  /* ← CLOSED by default */
  visibility: hidden;            /* ← hide from a11y focus when closed */
  transition: transform 240ms ease, visibility 240ms ease;
  z-index: 1000;
}

/* OPEN state */
#primary-nav.nav-links.is-open {
  transform: translateX(0);
  visibility: visible;
}

#primary-nav.nav-links a,
#primary-nav.nav-links .services-trigger {
  display: block;
  padding: 12px 8px;
  font-size: clamp(0.88rem, calc(0.16rem + 3.84vw), 1.6rem);
  line-height: 1;
  text-wrap: nowrap;
  color: #ffffff;
}

/* tiny phones: nudge text a bit smaller */
/* hidden on desktop by default */
.mobile-logo .mobile-logo-wrap { display: none; }


/* show + place on the right for <=1010px */
@media (max-width: 1010px){
  /* hide your desktop logo block if it still exists */
  .logo-container { display: none !important; }

  .mobile-logo-wrap{
    position: absolute;        /* sit over the bar */
    right: 12px;               /* right edge */
    top: 50%;                  /* vertical center */
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    pointer-events: auto;
  }

  .mobile-logo{
    height: clamp(36px, 9vh, 56px);  /* scales with bar height */
    width: auto;
    display: block;
  }

  /* keep room on the right so it doesn’t overlap other items */
  .navbar{
    padding-right: clamp(56px, 12vw, 120px);
  }
}

@media (max-width: 350px){
/* MOBILE DRAWER: make the Services submenu flow under its trigger */
#primary-nav .dropdown {
  position: static;              /* no positioning tricks */
}

#primary-nav .dropdown-content{
  display: none;                 /* hidden by default */
  position: static;              /* sit in normal flow under the trigger */
  margin: 6px 0 0 0;
  padding: 4px 0 4px 10px;       /* small indent */
  background: transparent;       /* no black pill background */
  border: 0;
  box-shadow: none;
  list-style: none;
}

#primary-nav .dropdown.open > .dropdown-content{
  display: block;                /* show when .open is toggled by JS */
}

/* links inside the submenu: full-width rows and a bit indented */
#primary-nav .dropdown-content li a{
  display: block;
  padding: 10px 8px 10px 18px;   /* extra left padding for hierarchy feel */
  color: #fff;
  text-decoration: none;
  border-left: 2px solid transparent;
}

#primary-nav .dropdown-content li a:hover{
  color: #ff5500;
  border-left-color: #ff5500;    /* nice visual cue */
  background: rgba(255,255,255,.05);
}

/* optional: rotate the caret when open */
#primary-nav .services-trigger::after{
  content: "▾";
  margin-left: 6px;
  transition: transform .2s ease;
}
#primary-nav .dropdown.open .services-trigger::after{
  transform: rotate(180deg);
}

.nav-links{
  display:none;
  flex-direction:column;
  gap:1rem;
  width:100%;
  background:#111;
  padding:1rem;
  border-top:2px solid #ff5500;
  position:fixed;
  top:var(--bar-h);
  left:0; right:0;
  z-index:9;
  box-sizing:border-box;
  overflow:auto;
}

.nav-links.active{ display:flex; }}


  /* CENTER: logo lane grows/shrinks */
  .logo-container{
    height:100%;
    align-items: center;
    justify-content: center;
  }
  
  .logo{
    width:80%;
    height:auto;
    align-items: center;
    justify-content: center;
  }

  /* RIGHT: CTA lane with mirrored 45° edge */
  .cta-container{ display: none !important; }  
  .cta-button{ display: none !important; }  
  .cta-number{ display: none !important; }


}

.cta-button {
  text-decoration: none;
  background-color: #ff5500;
  color: rgb(255, 255, 255);
  font-weight: 800;
  border: none;
  padding: 0.4rem 1.2rem;
  border-radius: 8px;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  white-space:nowrap;
  width: fit-content;
  transition: transform 0.3s ease;
}

.cta-button:hover{
    background-color: #ffffff;
    color: #ff5500;
}

.cta-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: white;
  margin-top: 8px;
  text-align: center;
  max-width: 100%;
}













/* HERO: full-bleed + cover */
.residential-hero{
  position: relative;
  min-height: 80svh;
  background: #000;
  overflow: hidden;
}
.residential-hero::before{
  content:"";
  position:absolute; inset:0;
  background: url(../camo-imgs/kitchen2.jpg) center / cover no-repeat;
  z-index:0;
}

.residential-hero img{ display:none; }

.hero-overlay{
  position:absolute; inset:0; z-index:1;
  display:flex; align-items:center; justify-content:center;
  padding:0 1rem;
}

.hero-overlay h1{
  font-family:'Montserrat',sans-serif;
  font-weight:800;
  font-size: clamp(2rem, 6vw, 4rem);
  color:#fff;
  margin:0;
  text-align:center;
  text-shadow:2px 2px 6px #000;
}
@media (max-width:1010px){
  .residential-hero{ min-height: 60svh; }
}

/* ---------- RESIDENTIAL CONTENT ---------- */
/* ---------- INTRO SECTION ---------- */
.residential-section{
  background: url(../camo-imgs/camoflauge.png);
  padding: clamp(28px, 4vw, 72px) clamp(22px, 6vw, 80px);
  font-family: 'Montserrat', sans-serif;
}
.residential-container{
  max-width: 1200px;
  margin-inline: auto;
}
.residential-text{
  color:#fff;
  font-size: 1.05rem;
  line-height: 1.7;
}
.residential-text-title{ color:#ff5500; }
.residential-text h2{
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color:#ffffff;
  margin: 0 0 1.2rem;
}
.residential-text p{ margin: 0 0 1.5rem; }

.truck-image-wrap{
  float: right;
  width: min(50%, 480px);
  margin: 0 0 2rem 2rem;
}
.truck-image-wrap img{
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}

/* ---------- SERVICES + QUOTE ---------- */
/* OUTER grid */
.residential-section2{
  background:#000;
  padding: clamp(28px, 4vw, 72px) clamp(22px, 6vw, 80px);
  display:grid;
  grid-template-columns: minmax(0,1fr) 380px;   /* list | form */
  gap: clamp(28px, 4vw, 72px);
  max-width: 1200px;
  margin-inline: auto;
  font-family:'Montserrat',sans-serif;
}

/* left */
.residential-header{
  font-weight: 800;
  color:#ff5500;
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  margin: 0 0 1rem;
}
.services-list{
  list-style:none;
  margin: 0;
  padding: 0;
  columns: 2;                       /* two columns on wide screens */
  column-gap: clamp(24px, 4vw, 48px);
}
.services-list li{
  break-inside: avoid;
  margin: 0 0 .9rem;
  padding-left: 1.1rem;
  position: relative;
  color:#fff;
}
.services-list li::before{
  content:"•";
  color:#ff5500;
  position:absolute;
  left:0;
  top:0;
}

/* right (form) */
.residential-quote{
  align-self: start;
}
.quote-form{
  background:#fff;
  color:#000;
  border-radius: 12px;
  padding: clamp(22px, 2.5vw, 34px);
  box-shadow: 0 0 15px rgba(0,0,0,.25);
  width: 100%;
  box-sizing: border-box;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.quote-form h3{
  font-size: 1.4rem;
  font-weight:700;
  margin: 0 0 .5rem;
}
.quote-form .phone-number{ color:#ff5500; font-weight:700; }
.quote-form form{
  width: 100%;
  max-width: 320px;
  display:flex;
  flex-direction:column;
  gap:.75rem;
  align-items:center;
}
.quote-form input,
.quote-form textarea{
  width:100%;
  border-radius:6px;
  font-family:'Montserrat',sans-serif;
  padding:12px;
  border:2px solid #000;
  font-size:1rem;
  box-sizing:border-box;
}
.quote-form button{
  width:100%;
  background:#000;
  color:#fff;
  border:none;
  padding:12px;
  font-weight:700;
  border-radius:5px;
  cursor:pointer;
  transition:background .3s ease;
}
.quote-form button:hover{ background:#ff5500; }

.form-status[hidden]{display:none;}
.form-status{
  position:fixed; inset:0; z-index:4000;
  display:grid; place-items:center; background:rgba(0,0,0,.45);
}
.status-card{
  background:#111; color:#fff; padding:18px 20px; border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.5); text-align:center; max-width: 420px;
}
.status-card.success{ outline:2px solid #25c55b; }
.status-card.error{ outline:2px solid #ff3b3b; }
#statusClose{ margin-top:10px; background:#ff5500; color:#fff; border:0; padding:8px 14px; border-radius:8px; cursor:pointer; }


/* stack the grid on mobile */
@media (max-width: 900px){
  .residential-section2{
    grid-template-columns: 1fr;
  }
  .services-list{ columns: 1; }
  .residential-quote{ justify-self: center; max-width: 640px; width: 100%; }
}

/* Header */
.gallery-header{
  font: 800 clamp(1.6rem, 3.2vw, 2.2rem) 'Montserrat', sans-serif;
  color:#ff5500;
  margin: 0 0 18px 0;
}
/* Gallery grid (you already have this) */
/* Gallery grid */
.projects-gallery{
  background:#111;
  padding: 32px 40px 60px;
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Make the header span the whole width (first row) */
.projects-gallery > .gallery-header{
  grid-column: 1 / -1;        /* full row */
  margin: 0 0 12px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color:#ff5500;
}

/* Cards */
.project-card{
  background:#000;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,.3);
  border:3px solid #fff;
  transition:transform .25s ease;
  cursor: pointer;            /* hand pointer */
}
.project-card:hover{ transform: translateY(-5px); }

.project-card img{
  display:block;
  width:100%;
  height:250px;
  object-fit:cover;
  cursor: inherit;
}


/* ===== Post modal (same namespace as before) ===== */
.pm-modal[aria-hidden="true"]{ display:none; }
.pm-modal{ position:fixed; inset:0; z-index:2000; display:grid; place-items:center; }
.pm-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.65); }
.pm-dialog{
  position:relative; z-index:1; width:min(1000px,96vw); max-height:92vh;
  background:#0b0b0b; color:#fff; border-radius:14px; overflow:hidden;
  display:grid; grid-template-columns:1.2fr .8fr; box-shadow:0 12px 40px rgba(0,0,0,.6);
}
.pm-close{
  position:absolute; top:8px; right:8px; width:36px; height:36px; border:0;
  border-radius:8px; background:#000; color:#fff; font-size:22px; cursor:pointer; opacity:.9;
}
.pm-close:hover{ opacity:1; }
.pm-media{ position:relative; display:grid; place-items:center; background:#000; }
.pm-img{ max-width:100%; max-height:calc(92vh - 24px); object-fit:contain; }
.pm-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:40px; height:56px; border:0; border-radius:8px;
  background:rgba(0,0,0,.55); color:#fff; font-size:28px; cursor:pointer;
}
.pm-prev{ left:8px; } .pm-next{ right:8px; }
.pm-nav:hover{ background:rgba(0,0,0,.75); }
.pm-meta{ padding:20px 22px; overflow:auto; background:#111; }
.pm-meta h3{ margin:0 0 8px; font-size:1.25rem; font-weight:800; }
.pm-badges{ display:flex; gap:8px; margin-bottom:10px; flex-wrap:wrap; }
.pm-badge{ background:#ff5500; color:#fff; font-weight:800; padding:4px 10px; border-radius:999px; font-size:.8rem; }
.pm-meta p{ margin:0; line-height:1.6; }

/* Mobile: stack post layout */
@media (max-width:800px){
  .pm-dialog{ grid-template-columns:1fr; grid-template-rows:auto minmax(200px,44vh); }
  .pm-img{ max-height:50vh; }
}

/* ---------- Footer Base ---------- */
:root {
  --footer-bg: #000 url("../camo-imgs/camoflauge.png");
  --footer-bottom-bg: #000;
  --footer-text: #fff;
  --accent: #ff5500;
  --max: 1200px;
}

body { margin: 0; } /* remove browser default gaps */

.site-footer {
  color: var(--footer-text);
  background: var(--footer-bg);
  font-family: 'Montserrat', sans-serif;
}

/* ---------- Content Wrapper ---------- */
.footer-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.2);

  display: grid;
  grid-template-columns: 2fr 1fr 1fr; /* About | Contact | Links */
  gap: 40px;
  align-items: start;
}

/* ---------- About Section ---------- */
.footer-logo {
  width: 170px;
  height: auto;
  display: block;
  margin: 0 0 20px;
}

.footer-about p {
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Contact Section ---------- */
.footer-contact h4 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--footer-text);
}

.footer-contact address {
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin: 0;
  white-space: pre-line;
}

.call-number {
text-decoration: none;
color: #ff5500;
}

/* ---------- Links Section ---------- */
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* align heading and list text edges */
  text-align: left;         /* heading + links line up together */
  justify-self: end;        /* push block toward the right edge */
  margin-right: 8rem;
  line-height: 1.4;
}

.footer-links h4 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--footer-text);
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ---------- Bottom Bar ---------- */
.footer-bottom {
  background: var(--footer-bottom-bg);
  width: 100%;
}

.footer-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

.facebook img {
  width: 40px;   /* adjust size */
  height: auto;  /* keeps correct aspect ratio */
  display: inline-block;
  transition: transform 0.2s ease;
  margin-top: 50px;
}

.facebook img:hover {
  transform: scale(1.1); /* fun hover grow effect */
}

.coyote-link{
  text-decoration: none;
  color: #39fde3;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-wrap {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 800px) {
  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-links {
    justify-self: start;  /* no forced right edge on small screens */
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}