/* =================================================================
   Morgan's Tree LLC — landing page
   Palette pulled from the logo:
   ink ............ deep bark
   cream / cream-soft  warm parchment background
   taupe / taupe-d ... brand metallic
   moss-l .......... living-green accent
   ================================================================= */

:root{
  --ink:#0f0f0c;             /* deepest charcoal — for cards-on-dark accents */
  --ink-2:#161612;
  --bark:#1f1e18;
  --bg:#17170f;              /* primary body charcoal */
  --bg-2:#1d1c15;            /* alt section bg (slightly lighter) */
  --bg-3:#23221b;            /* card surface on dark */
  --cream:#ece4d2;
  --cream-soft:#f3f2ee;
  --cream-2:#ebeae4;
  --taupe:#cdb98a;
  --taupe-d:#bba679;
  --moss:#3b5a2b;
  --moss-l:#a3c061;
  --line:rgba(236,228,210,.12);
  --line-2:rgba(236,228,210,.08);
  --text:#ece4d2;            /* primary text on dark */
  --text-dim:rgba(236,228,210,.72);
  --text-faint:rgba(236,228,210,.5);
  --shadow:0 28px 60px -32px rgba(0,0,0,.7);
  --shadow-sm:0 6px 22px -10px rgba(0,0,0,.45);
  --r:14px;
  --r-sm:10px;
  --maxw:1200px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}
hr{border:0;border-top:1px solid var(--line-2);margin:1.25rem 0}

h1,h2,h3{
  font-family:'Inter',system-ui,sans-serif;
  color:var(--text);
  font-weight:800;
  letter-spacing:-.025em;
  line-height:1.08;
  margin:0 0 .5rem;
}
h1{font-size:clamp(2.3rem,4.6vw,3.6rem);font-weight:800;letter-spacing:-.03em;line-height:1.05}
h2{font-size:clamp(1.7rem,3vw,2.4rem);font-weight:800;letter-spacing:-.025em;line-height:1.1}
h3{font-size:1.08rem;font-weight:700;letter-spacing:-.01em}

.eyebrow{
  display:inline-flex;align-items:center;gap:.55rem;
  font-family:'Inter',sans-serif;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.72rem;
  font-weight:600;
  color:var(--taupe-d);
  margin:0 0 .9rem;
}
.eyebrow .dot{width:.45rem;height:.45rem;border-radius:50%;background:var(--moss-l)}

/* ---- Reveal on scroll ---- */
[data-r]{opacity:0;transform:translateY(14px);transition:opacity .7s ease, transform .7s ease}
[data-r].revealed{opacity:1;transform:none}
@media (prefers-reduced-motion: reduce){
  [data-r]{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
}

/* ---- Buttons & icons ---- */
.btn{
  display:inline-flex;align-items:center;gap:.55rem;
  padding:.72rem 1.15rem;
  border-radius:999px;
  font-weight:600;font-size:.95rem;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration:none !important;
  white-space:nowrap;
  letter-spacing:.005em;
}
.btn-lg{padding:1rem 1.6rem;font-size:1.02rem}
.btn-primary{background:var(--cream);color:var(--ink)}
.btn-primary:hover{background:#fff;transform:translateY(-1px);box-shadow:var(--shadow)}
.btn-ghost{background:transparent;color:var(--cream);border-color:rgba(239,230,213,.45)}
.btn-ghost:hover{background:rgba(239,230,213,.08);border-color:var(--cream)}
.btn-quote{background:var(--ink);color:var(--cream);padding:.6rem 1rem;font-size:.88rem}
.btn-quote:hover{background:var(--bark);transform:translateY(-1px)}

/* Chip (hero status pill) */
.chip{
  display:inline-flex;align-items:center;gap:.5rem;
  align-self:flex-start;
  padding:.4rem .9rem .4rem .7rem;
  background:rgba(123,150,72,.14);
  border:1px solid rgba(123,150,72,.38);
  color:#43631f;
  border-radius:999px;
  font-size:.78rem;font-weight:600;
  letter-spacing:.02em;
  margin:0 0 1.4rem;
}
.chip .dot{
  width:.45rem;height:.45rem;border-radius:50%;
  background:var(--moss-l);
  box-shadow:0 0 0 3px rgba(123,150,72,.22);
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.55}}

/* Header prominent phone CTA */
.hdr-phone{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.5rem .95rem .5rem .8rem;
  background:var(--cream);
  color:var(--ink);
  border-radius:14px;
  text-decoration:none !important;
  transition:transform .15s ease, background .2s ease, box-shadow .2s ease;
  border:1px solid transparent;
}
.hdr-phone:hover{background:#fff;transform:translateY(-1px);box-shadow:var(--shadow-sm)}
.hdr-phone .ico-phone{background:var(--ink)}
.hdr-phone-label em{color:var(--taupe-d) !important}
.hdr-phone-label strong{color:var(--ink) !important}
.hdr-phone .ico-phone{
  width:1.05rem;height:1.05rem;
  background:var(--taupe);
}
.hdr-phone-label{display:flex;flex-direction:column;line-height:1.05;text-align:left}
.hdr-phone-label em{
  font-style:normal;font-size:.65rem;
  color:var(--taupe);
  letter-spacing:.12em;text-transform:uppercase;font-weight:600;
}
.hdr-phone-label strong{
  font-family:'Inter',sans-serif;
  font-size:1rem;font-weight:700;color:var(--cream);
  letter-spacing:-.005em;
  margin-top:1px;
  white-space:nowrap;
}
@media (max-width:640px){
  .hdr-phone-label em{display:none}
  .hdr-phone{padding:.55rem .85rem}
  .hdr-phone-label strong{font-size:.92rem}
}
.btn-cta{background:var(--taupe);color:var(--ink)}
.btn-cta:hover{background:var(--cream);box-shadow:var(--shadow-sm)}

.ico-phone{
  width:1em;height:1em;display:inline-block;
  background:currentColor;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6.6 10.8a15.5 15.5 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.25 11.4 11.4 0 0 0 3.6.6 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.4a1 1 0 0 1 1 1 11.4 11.4 0 0 0 .6 3.6 1 1 0 0 1-.25 1L6.6 10.8Z'/></svg>") center/contain no-repeat;
          mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6.6 10.8a15.5 15.5 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.25 11.4 11.4 0 0 0 3.6.6 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.4a1 1 0 0 1 1 1 11.4 11.4 0 0 0 .6 3.6 1 1 0 0 1-.25 1L6.6 10.8Z'/></svg>") center/contain no-repeat;
}
.ico-check{
  width:1.05em;height:1.05em;display:inline-block;
  background:currentColor;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9.5 16.2 4.8 11.5l1.4-1.4 3.3 3.3 8.3-8.3 1.4 1.4Z'/></svg>") center/contain no-repeat;
          mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9.5 16.2 4.8 11.5l1.4-1.4 3.3 3.3 8.3-8.3 1.4 1.4Z'/></svg>") center/contain no-repeat;
}

/* ---- Utility top bar ---- */
.util-bar{
  background:var(--ink);
  color:rgba(239,230,213,.85);
  font-size:.8rem;
}
.util-inner{
  max-width:var(--maxw);
  margin:0 auto;
  display:flex;align-items:center;gap:1.2rem;
  padding:.5rem clamp(1rem,4vw,2rem);
}
.util-tag{
  display:inline-flex;align-items:center;gap:.45rem;
  color:var(--cream);font-weight:500;
}
.util-tag .dot{
  width:.45rem;height:.45rem;border-radius:50%;
  background:var(--moss-l);
  box-shadow:0 0 0 3px rgba(123,150,72,.22);
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.55}}
.util-spacer{flex:1}
.util-meta{color:rgba(239,230,213,.65)}
.util-phone{
  display:inline-flex;align-items:center;gap:.4rem;
  color:var(--cream);font-weight:600;letter-spacing:.005em;
}
.util-phone:hover{color:var(--taupe);text-decoration:none}
@media (max-width:760px){
  .util-meta{display:none}
  .util-tag{font-size:.75rem}
}

/* ---- Header ---- */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(23,23,15,.78);
  backdrop-filter:saturate(140%) blur(14px);
  -webkit-backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid transparent;
  transition:background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled{
  background:rgba(17,17,12,.92);
  border-color:var(--line);
  box-shadow:0 8px 24px -18px rgba(0,0,0,.5);
}
.hdr-inner{
  max-width:var(--maxw);margin:0 auto;
  display:flex;align-items:center;gap:1.5rem;
  padding:.85rem clamp(1rem,4vw,2rem);
}
.brand{display:flex;align-items:center;gap:.7rem;text-decoration:none;color:inherit}
.brand img{width:44px;height:44px;border-radius:10px;object-fit:cover;background:var(--ink)}
.brand strong{display:block;font-size:1.02rem;font-weight:700;letter-spacing:.005em;color:var(--cream);white-space:nowrap}
.brand em{display:block;font-style:normal;font-size:.7rem;color:var(--taupe);letter-spacing:.18em;text-transform:uppercase;margin-top:1px;white-space:nowrap}

.site-header nav{margin-left:auto;margin-right:.4rem;display:flex;gap:1.4rem}
.site-header nav a{
  position:relative;
  font-size:.92rem;font-weight:500;color:rgba(236,228,210,.8);
  padding:.25rem 0;
}
.site-header nav a:hover{color:var(--cream);text-decoration:none}
.site-header nav a:after{
  content:"";position:absolute;left:0;right:0;bottom:-4px;height:1.5px;
  background:var(--taupe);
  transform:scaleX(0);transform-origin:left;
  transition:transform .25s ease;
}
.site-header nav a:hover:after{transform:scaleX(1)}

/* Theme toggle — sits inside <nav> (desktop: icon button; mobile drawer: text row) */
.theme-toggle{
  flex:0 0 auto;
  width:38px;height:38px;
  margin-left:.4rem;
  display:inline-flex;align-items:center;justify-content:center;
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
  border-radius:10px;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  font:inherit;
}
.theme-toggle:hover{background:rgba(236,228,210,.06);transform:translateY(-1px)}
.theme-toggle .ico-sun{display:none}
.theme-toggle .ico-moon{display:block}
.theme-toggle-label{display:none}
[data-theme="light"] .theme-toggle:hover{background:rgba(0,0,0,.04)}
[data-theme="light"] .theme-toggle .ico-sun{display:block}
[data-theme="light"] .theme-toggle .ico-moon{display:none}

.hamb{
  display:none;
  width:42px;height:42px;
  background:transparent;border:1px solid var(--line);
  border-radius:10px;
  cursor:pointer;
  position:relative;
}
.hamb span{
  position:absolute;left:9px;right:9px;height:1.8px;
  background:var(--cream);border-radius:2px;
  transition:transform .25s ease, opacity .25s ease, top .25s ease;
}
.hamb span:nth-child(1){top:14px}
.hamb span:nth-child(2){top:20px}
.hamb span:nth-child(3){top:26px}
.hamb.is-open span:nth-child(1){top:20px;transform:rotate(45deg)}
.hamb.is-open span:nth-child(2){opacity:0}
.hamb.is-open span:nth-child(3){top:20px;transform:rotate(-45deg)}

@media (max-width:880px){
  .site-header nav{
    position:absolute;left:0;right:0;top:100%;
    flex-direction:column;align-items:stretch;
    gap:0;margin:0;
    background:rgba(17,17,12,.96);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    padding:.4rem 0;
    transform:translateY(-8px);opacity:0;pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
  }
  .site-header nav.open{transform:none;opacity:1;pointer-events:auto}
  .site-header nav a{padding:.95rem clamp(1rem,4vw,2rem);border-top:1px solid var(--line);font-size:1rem}
  .site-header nav a:first-child{border-top:0}
  .site-header nav a:after{display:none}
  .hamb{display:flex;align-items:center;justify-content:center;margin-left:.2rem;flex:0 0 auto;width:44px;height:44px}
  .brand em{display:none}
  .hdr-inner{gap:.5rem}
  .hdr-phone{margin-left:auto}
  /* Theme toggle becomes a drawer row on mobile */
  .theme-toggle{
    width:auto;height:auto;
    margin:0;
    padding:.95rem clamp(1rem,4vw,2rem);
    background:transparent;
    border:0;border-radius:0;
    border-top:1px solid var(--line);
    justify-content:flex-start;gap:.7rem;
    font-size:1rem;color:var(--text);
  }
  .theme-toggle:hover{background:rgba(236,228,210,.04);transform:none}
  [data-theme="light"] .theme-toggle:hover{background:rgba(0,0,0,.03)}
  .theme-toggle-label{display:inline}
}
@media (max-width:560px){
  .brand strong{font-size:.95rem;max-width:140px;overflow:hidden;text-overflow:ellipsis}
}
@media (max-width:430px){
  .brand strong{display:none}  /* logo speaks for itself */
  .hdr-inner{gap:.4rem}
}

/* ============================================================
   HERO — split text / photo
   ============================================================ */
.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  background:var(--bg);
  position:relative;
  isolation:isolate;
}
.hero:before{
  content:"";
  position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(205,185,138,.10), transparent 60%),
    radial-gradient(50% 40% at 100% 100%, rgba(163,192,97,.06), transparent 60%);
}
.hero-text{
  padding:clamp(3rem,8vw,6.5rem) clamp(1.25rem,5vw,4rem) clamp(3rem,7vw,5.5rem) clamp(1.25rem,5vw,4rem);
  display:flex;flex-direction:column;justify-content:center;
  max-width:680px;margin-left:auto;
  position:relative;
}
.hero h1{
  font-size:clamp(2.4rem,4.6vw,3.8rem);
  font-weight:800;
  margin:0 0 1rem;
  letter-spacing:-.035em;
  line-height:1.04;
  color:var(--cream);
}
.hero .lede{
  max-width:50ch;
  font-size:clamp(1.05rem,1.4vw,1.18rem);
  color:var(--text-dim);
  margin:0 0 1.8rem;
}

.cta-row{display:flex;flex-wrap:wrap;gap:.7rem;margin-bottom:2rem}
.cta-row .btn-ghost{color:var(--cream);border-color:var(--line)}
.cta-row .btn-ghost:hover{background:rgba(236,228,210,.06);border-color:var(--cream)}

.hero-checks{
  list-style:none;padding:0;margin:0;
  display:flex;flex-wrap:wrap;gap:.4rem 1.4rem;
  font-size:.92rem;color:var(--text-dim);
}
.hero-checks li{display:inline-flex;align-items:center;gap:.4rem}
.hero-checks .ico-check{color:var(--moss-l);width:1.1em;height:1.1em}

.hero-media{
  position:relative;
  overflow:hidden;
  background:#1a1a14;
}
.hero-media:before{
  content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(110deg, rgba(249,243,230,.18) 0%, transparent 18%);
  pointer-events:none;
}
.hero-media img{
  width:100%;height:100%;object-fit:cover;
  min-height:620px;
  object-position:center center;
}
.hero-badge{
  position:absolute;left:1.5rem;bottom:1.5rem;z-index:2;
  background:rgba(22,23,15,.85);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  color:var(--cream);
  padding:.85rem 1.1rem;
  border-radius:12px;
  border:1px solid rgba(239,230,213,.18);
  display:inline-flex;flex-direction:column;line-height:1.1;
  box-shadow:0 18px 40px -20px rgba(0,0,0,.6);
}
.hero-badge strong{
  font-family:'Inter',sans-serif;font-size:1.4rem;
  font-weight:800;color:var(--cream);letter-spacing:-.02em;
}
.hero-badge span{font-size:.78rem;color:var(--taupe);letter-spacing:.08em;text-transform:uppercase}

@media (max-width:980px){
  .hero{grid-template-columns:1fr}
  .hero-text{max-width:none;margin:0}
  .hero-media{order:-1}
  .hero-media img{min-height:380px;max-height:55vh}
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust{background:var(--ink);color:var(--cream)}
.trust-grid{
  max-width:var(--maxw);margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);
}
.trust-grid > div{
  display:flex;align-items:flex-start;gap:1rem;
  padding:1.75rem 1.5rem;
  border-left:1px solid var(--line);
}
.trust-grid > div:first-child{border-left:0}
.trust-grid strong{display:block;font-size:1rem;font-weight:600;color:var(--cream);margin-bottom:.2rem}
.trust-grid em{font-style:normal;font-size:.84rem;color:rgba(239,230,213,.6);display:block;max-width:30ch}
.t-ico{
  flex:0 0 auto;
  width:30px;height:30px;display:block;
  background:var(--taupe);
}
.ico-shield{-webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2 4 5v6c0 5 3.4 9.6 8 11 4.6-1.4 8-6 8-11V5l-8-3Zm-1 14L7 12l1.4-1.4L11 13.2 15.6 8.6 17 10l-6 6Z'/></svg>") center/contain no-repeat;mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2 4 5v6c0 5 3.4 9.6 8 11 4.6-1.4 8-6 8-11V5l-8-3Zm-1 14L7 12l1.4-1.4L11 13.2 15.6 8.6 17 10l-6 6Z'/></svg>") center/contain no-repeat}
.ico-saw{-webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M2 13h10l2-2h6a2 2 0 0 1 2 2v2h-9l-2 2H4a2 2 0 0 1-2-2Zm0-3 2-1 2 1-2 1Zm4 0 2-1 2 1-2 1Z'/></svg>") center/contain no-repeat;mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M2 13h10l2-2h6a2 2 0 0 1 2 2v2h-9l-2 2H4a2 2 0 0 1-2-2Zm0-3 2-1 2 1-2 1Zm4 0 2-1 2 1-2 1Z'/></svg>") center/contain no-repeat}
.ico-team{-webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M8 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm8 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM2 19c0-3 4-4.5 6-4.5s6 1.5 6 4.5v1H2Zm12.5-1.2c.4-.6.6-1.2.6-1.8 0-1.2-.6-2.2-1.4-3 .9-.3 1.7-.5 2.3-.5 2 0 6 1.5 6 4.5v1h-7.5Z'/></svg>") center/contain no-repeat;mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M8 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm8 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM2 19c0-3 4-4.5 6-4.5s6 1.5 6 4.5v1H2Zm12.5-1.2c.4-.6.6-1.2.6-1.8 0-1.2-.6-2.2-1.4-3 .9-.3 1.7-.5 2.3-.5 2 0 6 1.5 6 4.5v1h-7.5Z'/></svg>") center/contain no-repeat}
.ico-tree{-webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2c3 2 5 5 5 8a4 4 0 0 1-4 4h-.2v3H11v-3h-.2A4 4 0 0 1 7 10c0-3 2-6 5-8Zm-1 17h2v3h-2Z'/></svg>") center/contain no-repeat;mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2c3 2 5 5 5 8a4 4 0 0 1-4 4h-.2v3H11v-3h-.2A4 4 0 0 1 7 10c0-3 2-6 5-8Zm-1 17h2v3h-2Z'/></svg>") center/contain no-repeat}

@media (max-width:900px){
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .trust-grid > div:nth-child(3){border-left:0}
  .trust-grid > div{border-top:1px solid var(--line)}
  .trust-grid > div:nth-child(-n+2){border-top:0}
}
@media (max-width:520px){
  .trust-grid{grid-template-columns:1fr}
  .trust-grid > div{border-left:0;border-top:1px solid var(--line)}
  .trust-grid > div:first-child{border-top:0}
}

/* ============================================================
   STORM EMERGENCY BAND
   ============================================================ */
.storm-band{
  background:
    radial-gradient(60% 100% at 0% 50%, rgba(187,166,121,.15), transparent 60%),
    linear-gradient(90deg, #1f261c 0%, #283224 60%, #2f3a29 100%);
  color:var(--cream);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.storm-inner{
  max-width:var(--maxw);margin:0 auto;
  display:flex;align-items:center;gap:1.5rem;
  padding:1.75rem clamp(1rem,4vw,2rem);
}
.storm-icon{
  flex:0 0 auto;
  width:64px;height:64px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(123,150,72,.15);
  border:1px solid rgba(123,150,72,.45);
  border-radius:16px;
  color:#bfd385;
}
.storm-copy{flex:1;min-width:0}
.storm-eyebrow{
  margin:0 0 .15rem;
  font-size:.74rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.18em;
  color:#bfd385;
}
.storm-copy h2{
  font-size:clamp(1.4rem,2.4vw,1.85rem);
  color:var(--cream);margin:.05rem 0 .25rem;
  letter-spacing:-.015em;
}
.storm-copy p{
  margin:0;color:rgba(239,230,213,.82);font-size:.97rem;
}
.storm-copy strong{color:var(--cream);font-weight:600}
.btn-storm{
  background:#7b9648;color:var(--ink);border:1px solid #6a8439;
  white-space:nowrap;
}
.btn-storm:hover{background:#8ba955;color:var(--ink);box-shadow:var(--shadow-sm)}
@media (max-width:760px){
  .storm-inner{flex-direction:column;align-items:flex-start;text-align:left}
  .storm-icon{margin-bottom:.2rem}
  .btn-storm{align-self:stretch;justify-content:center}
}

/* ============================================================
   WHY US — split: image + values
   ============================================================ */
.why{
  background:var(--bg-2);
  padding:5.5rem clamp(1.25rem,5vw,3rem);
}
.why-grid{
  max-width:var(--maxw);margin:0 auto;
  display:grid;grid-template-columns:.95fr 1.05fr;
  gap:3.2rem;align-items:center;
}
.why-img{position:relative}
.why-img img{
  width:100%;border-radius:var(--r);
  box-shadow:var(--shadow);
}
.why-copy h2{margin-bottom:.5rem}
.lede-dark{
  font-size:1.08rem;color:var(--text-dim);
  margin:.4rem 0 1.4rem;max-width:50ch;
}
.why-copy h2{color:var(--cream)}
.why-list{
  list-style:none;padding:0;margin:0 0 1.8rem;
  display:flex;flex-direction:column;gap:.9rem;
}
.why-list li{
  display:flex;gap:.85rem;align-items:flex-start;
  padding:.1rem 0;
}
.why-list .ico-check{
  flex:0 0 auto;
  color:var(--moss-l);
  width:1.25rem;height:1.25rem;
  margin-top:.18rem;
}
.why-list strong{
  display:block;color:var(--cream);font-weight:600;
  font-size:1rem;margin-bottom:.1rem;
}
.why-list div{color:var(--text-dim);font-size:.96rem;line-height:1.55}
.why-list li strong + br {display:none}

@media (max-width:920px){
  .why-grid{grid-template-columns:1fr;gap:2rem}
  .why-img:before{display:none}
}

/* ============================================================
   SECTION HEADS
   ============================================================ */
.section-head{max-width:64ch;margin:0 0 2.6rem}
.section-head h2{margin-bottom:.6rem;color:var(--cream)}
.section-head .sub{font-size:1.05rem;color:var(--text-dim);margin:.2rem 0 0;max-width:60ch}

/* ============================================================
   SERVICES
   ============================================================ */
.services{
  padding:5.5rem clamp(1.25rem,5vw,3rem);
  max-width:var(--maxw);margin:0 auto;
}
.svc-grid{
  list-style:none;padding:0;margin:0;
  display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;
}
.svc-grid li{
  position:relative;
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:1.4rem 1.3rem 1.5rem;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  overflow:hidden;
}
.svc-grid li:before{
  content:"";position:absolute;left:0;top:0;bottom:0;width:3px;
  background:var(--taupe);
  transform:scaleY(.18);transform-origin:top;
  transition:transform .35s ease;
}
.svc-grid li:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:rgba(236,228,210,.22);background:#26251d}
.svc-grid li:hover:before{transform:scaleY(1)}
.svc-num{
  display:block;
  font-family:'Inter',sans-serif;
  font-size:.75rem;color:var(--taupe);
  letter-spacing:.16em;
  margin-bottom:.7rem;font-weight:700;
}
.svc-grid li h3{margin:0 0 .35rem;font-size:1.13rem;color:var(--cream)}
.svc-grid li p{margin:0;color:var(--text-dim);font-size:.93rem;line-height:1.55}

.services-foot{
  margin-top:1.8rem;color:var(--text-dim);font-size:.97rem;
}
.services-foot a{color:var(--cream);font-weight:600;border-bottom:1px solid var(--taupe)}
.services-foot a:hover{text-decoration:none;border-bottom-color:var(--cream)}

@media (max-width:1024px){.svc-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:760px){.svc-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:480px){.svc-grid{grid-template-columns:1fr}}

/* ============================================================
   QUOTE BAND
   ============================================================ */
.quote-band{
  background:linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding:4.5rem clamp(1.25rem,5vw,3rem);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.quote-band figure{
  max-width:880px;margin:0 auto;
  text-align:center;
  position:relative;
}
.quote-band figure:before{
  content:"";
  display:block;width:36px;height:36px;margin:0 auto 1.2rem;
  background:var(--taupe);
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2c3 2 5 5 5 8a4 4 0 0 1-4 4h-.2v3H11v-3h-.2A4 4 0 0 1 7 10c0-3 2-6 5-8Zm-1 17h2v3h-2Z'/></svg>") center/contain no-repeat;
          mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2c3 2 5 5 5 8a4 4 0 0 1-4 4h-.2v3H11v-3h-.2A4 4 0 0 1 7 10c0-3 2-6 5-8Zm-1 17h2v3h-2Z'/></svg>") center/contain no-repeat;
}
.quote-band blockquote{
  margin:0;font-family:'Inter',sans-serif;
  font-size:clamp(1.25rem,2.1vw,1.65rem);
  line-height:1.4;color:var(--cream);font-weight:500;
  letter-spacing:-.015em;
}
.quote-band figcaption{
  margin-top:1rem;
  font-size:.85rem;color:var(--taupe);
  letter-spacing:.14em;text-transform:uppercase;font-weight:600;
}

/* ============================================================
   GALLERY
   ============================================================ */
.work{
  padding:5.5rem clamp(1.25rem,5vw,3rem);
  max-width:var(--maxw);margin:0 auto;
}
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:220px;
  gap:.9rem;
}
.gallery figure{
  position:relative;margin:0;
  border-radius:var(--r);
  overflow:hidden;
  background:#0a0a07;
  border:1px solid var(--line);
  cursor:pointer;
}
.gallery img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .9s ease;
}
.gallery figure:hover img{transform:scale(1.04)}
.gallery figcaption{
  position:absolute;left:0;right:0;bottom:0;
  padding:.75rem 1rem;
  background:linear-gradient(to top, rgba(0,0,0,.78) 10%, rgba(0,0,0,.35) 70%, transparent);
  color:var(--cream);
  font-size:.86rem;font-weight:500;letter-spacing:.005em;
}
.gallery .g-feat{grid-column:span 2;grid-row:span 2}
.gallery .g-feat figcaption{padding:1.2rem 1.4rem}
.gallery .g-feat figcaption strong{display:block;font-family:'Inter',sans-serif;font-size:1.1rem;font-weight:700;margin-bottom:.2rem;letter-spacing:-.015em}
.gallery .g-feat figcaption span{display:block;font-size:.88rem;color:rgba(239,230,213,.75)}

@media (max-width:980px){
  .gallery{grid-template-columns:repeat(3,1fr);grid-auto-rows:200px}
  .gallery .g-feat{grid-column:span 3;grid-row:auto;height:380px}
}
@media (max-width:680px){
  .gallery{grid-template-columns:repeat(2,1fr);grid-auto-rows:180px}
  .gallery .g-feat{grid-column:span 2;height:300px}
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process{
  background:var(--bg-2);
  padding:5.5rem clamp(1.25rem,5vw,3rem);
  position:relative;
}
.process > * { max-width:var(--maxw); margin-left:auto; margin-right:auto }
.steps{
  list-style:none;padding:0;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.1rem;counter-reset:s;
  max-width:var(--maxw);
}
.steps li{
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:1.9rem 1.6rem 1.75rem;
  position:relative;
  display:flex;flex-direction:column;
}
.step-num{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:50%;
  background:var(--cream);color:var(--ink);
  font-family:'Inter',sans-serif;font-size:.95rem;font-weight:700;
  margin-bottom:1.4rem;
  letter-spacing:0;
}
.steps h3{
  margin:0 0 .5rem;
  font-size:1.1rem;
  line-height:1.25;
  letter-spacing:-.01em;
  color:var(--cream);
}
.steps p{
  margin:0;
  color:var(--text-dim);
  font-size:.94rem;
  line-height:1.55;
}

@media (max-width:880px){.steps{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.steps{grid-template-columns:1fr}}

/* ============================================================
   ABOUT
   ============================================================ */
.about{
  background:var(--bg);
  padding:5.5rem clamp(1.25rem,5vw,3rem);
}
.about-grid{
  max-width:var(--maxw);margin:0 auto;
  display:grid;grid-template-columns:1.1fr .9fr;
  gap:3rem;align-items:center;
}
.about-copy h2{color:var(--cream)}
.about-copy p{color:var(--text-dim);font-size:1.02rem}

.about-stats{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:.8rem;margin-top:1.8rem;
}
.about-stats > div{
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:1.1rem .8rem;text-align:center;
}
.about-stats strong{
  display:block;
  font-family:'Inter',sans-serif;
  font-size:1.7rem;font-weight:800;color:var(--cream);
  line-height:1;margin-bottom:.3rem;letter-spacing:-.025em;
}
.about-stats span{font-size:.78rem;color:var(--text-dim);letter-spacing:.04em}

.about-img{position:relative}
.about-img img{
  border-radius:var(--r);
  box-shadow:var(--shadow);
  width:100%;
}
.about-img:before{
  content:"";position:absolute;
  inset:auto -16px -16px auto;
  width:60%;height:60%;
  border:1px solid var(--taupe);
  border-radius:var(--r);
  z-index:-1;
}

@media (max-width:880px){
  .about-grid{grid-template-columns:1fr;gap:2rem}
  .about-img{order:-1}
  .about-img:before{display:none}
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact{
  position:relative;
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(123,150,72,.08), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--bark) 100%);
  color:var(--cream);
  padding:5.5rem clamp(1.25rem,5vw,3rem);
  overflow:hidden;
}
.contact:before{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(rgba(239,230,213,.04) 1px, transparent 1px);
  background-size:24px 24px;
  pointer-events:none;
  mask-image:linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image:linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.contact-inner{max-width:var(--maxw);margin:0 auto;position:relative}
.contact-grid{
  display:grid;grid-template-columns:1.3fr .9fr;
  gap:1.6rem;
}
.contact-form{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:1.8rem;
  display:grid;
  grid-template-columns:1fr 1fr;gap:1rem;
}
.contact-form label{
  display:flex;flex-direction:column;
  font-size:.72rem;letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(239,230,213,.7);
  font-weight:600;
  gap:.4rem;
}
.contact-form label.full{grid-column:1/-1}
.contact-form input,
.contact-form select,
.contact-form textarea{
  background:rgba(0,0,0,.28);
  border:1px solid var(--line);
  color:var(--cream);
  border-radius:10px;
  padding:.75rem .9rem;
  font:inherit;font-size:.95rem;letter-spacing:0;text-transform:none;
  font-weight:400;
  outline:none;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{color:rgba(239,230,213,.38)}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:var(--taupe);
  background:rgba(0,0,0,.4);
  box-shadow:0 0 0 3px rgba(187,166,121,.18);
}
.contact-form select option{background:var(--ink);color:var(--cream)}
.contact-form button{
  grid-column:1/-1;justify-self:start;
}
.form-fine{grid-column:1/-1;margin:0;font-size:.85rem;color:rgba(239,230,213,.55)}
.form-fine a{color:var(--taupe);border-bottom:1px dashed var(--taupe)}

.contact-card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:1.8rem;
  align-self:start;
}
.contact-card h3{
  color:var(--cream);font-family:'Inter',sans-serif;
  font-weight:600;font-size:.78rem;
  text-transform:uppercase;letter-spacing:.18em;
  margin:0 0 1rem;
}
.big-phone{margin:0 0 .4rem}
.big-phone a{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:'Inter',sans-serif;
  font-size:1.6rem;font-weight:800;color:var(--cream);
  letter-spacing:-.03em;
}
.big-phone a:hover{color:var(--taupe);text-decoration:none}
.contact-email a{color:var(--taupe);border-bottom:1px solid rgba(187,166,121,.4)}
.contact-card hr{border-top-color:var(--line);margin:1.2rem 0}
.contact-card p{color:rgba(239,230,213,.85);font-size:.93rem;margin:0 0 1rem;display:block}
.contact-card strong{
  color:var(--cream);display:block;margin-bottom:.2rem;
  font-size:.72rem;text-transform:uppercase;letter-spacing:.16em;
  font-weight:600;
}
.fb-link{
  display:inline-flex;align-items:center;
  margin-top:.5rem;
  color:var(--taupe);font-size:.9rem;font-weight:600;
  border-bottom:1px solid var(--taupe);
}

@media (max-width:880px){
  .contact-grid{grid-template-columns:1fr}
  .contact-form{grid-template-columns:1fr}
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background:var(--ink-2);
  color:rgba(239,230,213,.7);
  padding:2.6rem clamp(1.25rem,5vw,3rem) 1.6rem;
  border-top:1px solid var(--line);
}
.foot-row{
  max-width:var(--maxw);margin:0 auto;
  display:flex;align-items:center;gap:1.8rem;flex-wrap:wrap;
}
.foot-brand{display:flex;align-items:center;gap:.7rem;color:var(--cream)}
.foot-brand img{width:38px;height:38px;border-radius:8px;object-fit:cover}
.foot-brand strong{display:block;font-size:.98rem;color:var(--cream)}
.foot-brand em{display:block;font-style:normal;font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;color:var(--taupe);margin-top:1px}
.foot-links{display:flex;gap:1.3rem;flex-wrap:wrap}
.foot-links a{color:rgba(239,230,213,.78);font-size:.9rem}
.foot-links a:hover{color:var(--cream);text-decoration:none}
.foot-contact{display:flex;gap:1.2rem;margin-left:auto;flex-wrap:wrap}
.foot-contact a{display:inline-flex;align-items:center;gap:.4rem;color:var(--cream);font-weight:500;font-size:.92rem}
.foot-contact a:hover{color:var(--taupe);text-decoration:none}
.foot-addr{font-size:.82rem;color:rgba(239,230,213,.55);flex-basis:100%;text-align:right}
@media (max-width:760px){.foot-addr{text-align:left}}
.foot-copy{
  max-width:var(--maxw);margin:1.4rem auto 0;
  font-size:.8rem;color:rgba(239,230,213,.45);padding-top:1.2rem;
  border-top:1px solid var(--line);
}
.foot-copy em{font-style:normal;color:var(--taupe);font-size:.8rem;font-weight:500}

/* ============================================================
   FLOATING CALL FAB (mobile)
   ============================================================ */
.fab-call{
  position:fixed;bottom:1rem;right:1rem;z-index:60;
  display:none;
  align-items:center;gap:.5rem;
  background:var(--ink);color:var(--cream);
  padding:.9rem 1.25rem;border-radius:999px;
  box-shadow:0 14px 30px rgba(0,0,0,.4);
  font-weight:700;font-size:.95rem;
  border:1px solid var(--taupe);
}
.fab-call:hover{text-decoration:none;background:var(--bark)}
@media (max-width:760px){.fab-call{display:inline-flex}}

/* ---- Selection ---- */
::selection{background:var(--taupe);color:var(--ink)}

/* =================================================================
   LIGHT MODE OVERRIDES
   ================================================================= */
[data-theme="light"]{
  --bg:#f3f2ee;
  --bg-2:#e9e7e0;
  --bg-3:#ffffff;
  --text:#16170f;
  --text-dim:rgba(22,23,15,.7);
  --text-faint:rgba(22,23,15,.5);
  --line:rgba(0,0,0,.08);
  --line-2:rgba(0,0,0,.05);
  --taupe:#8e7a4c;
  --taupe-d:#6c5d3a;
  --moss-l:#5d7a2b;
  --shadow:0 28px 60px -32px rgba(0,0,0,.25);
  --shadow-sm:0 6px 22px -10px rgba(0,0,0,.12);
}

/* Header on light bg */
[data-theme="light"] .site-header{background:rgba(243,242,238,.84)}
[data-theme="light"] .site-header.scrolled{background:rgba(243,242,238,.96);border-color:rgba(0,0,0,.06);box-shadow:0 8px 24px -18px rgba(0,0,0,.18)}
[data-theme="light"] .brand strong{color:var(--text)}
[data-theme="light"] .brand em{color:var(--taupe-d)}
[data-theme="light"] .site-header nav a{color:#3a3a30}
[data-theme="light"] .site-header nav a:hover{color:var(--text)}
[data-theme="light"] .hamb span{background:var(--text)}
@media (max-width:880px){
  [data-theme="light"] .site-header nav{background:rgba(243,242,238,.96);border-top-color:rgba(0,0,0,.06);border-bottom-color:rgba(0,0,0,.06)}
  [data-theme="light"] .site-header nav a{border-top-color:rgba(0,0,0,.05)}
}

/* Header phone CTA flips to dark */
[data-theme="light"] .hdr-phone{background:#16170f;color:#ece4d2}
[data-theme="light"] .hdr-phone:hover{background:#2a2820}
[data-theme="light"] .hdr-phone .ico-phone{background:#cdb98a}
[data-theme="light"] .hdr-phone-label em{color:#cdb98a !important}
[data-theme="light"] .hdr-phone-label strong{color:#ece4d2 !important}

/* Primary buttons flip to dark */
[data-theme="light"] .btn-primary{background:#16170f;color:#ece4d2}
[data-theme="light"] .btn-primary:hover{background:#2a2820}
[data-theme="light"] .cta-row .btn-ghost{color:var(--text);border-color:rgba(0,0,0,.18)}
[data-theme="light"] .cta-row .btn-ghost:hover{background:rgba(0,0,0,.04);border-color:var(--text)}

/* Section heads */
[data-theme="light"] .section-head h2{color:var(--text)}
[data-theme="light"] .section-head .sub{color:#4f5042}

/* Hero */
[data-theme="light"] .hero h1{color:var(--text)}
[data-theme="light"] .hero .lede{color:#3e3f33}
[data-theme="light"] .hero-checks{color:#4f5042}
[data-theme="light"] .hero:before{
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(142,122,76,.10), transparent 60%),
    radial-gradient(50% 40% at 100% 100%, rgba(93,122,43,.07), transparent 60%);
}

/* Services cards (back to light) */
[data-theme="light"] .svc-grid li{background:#fff;border-color:rgba(0,0,0,.06)}
[data-theme="light"] .svc-grid li:hover{background:#fff;border-color:rgba(0,0,0,.12);box-shadow:var(--shadow)}
[data-theme="light"] .svc-grid li h3{color:var(--text)}
[data-theme="light"] .svc-grid li p{color:#4f5042}
[data-theme="light"] .svc-num{color:var(--taupe-d)}
[data-theme="light"] .services-foot{color:#4f5042}
[data-theme="light"] .services-foot a{color:var(--text)}
[data-theme="light"] .services-foot a:hover{border-bottom-color:var(--text)}

/* Why */
[data-theme="light"] .why{background:var(--bg-2)}
[data-theme="light"] .why-copy h2{color:var(--text)}
[data-theme="light"] .lede-dark{color:#3e3f33}
[data-theme="light"] .why-list strong{color:var(--text)}
[data-theme="light"] .why-list div{color:#4f5042}

/* Quote */
[data-theme="light"] .quote-band{background:linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);border-top-color:rgba(0,0,0,.05);border-bottom-color:rgba(0,0,0,.05)}
[data-theme="light"] .quote-band blockquote{color:var(--text)}
[data-theme="light"] .quote-band figcaption{color:var(--taupe-d)}

/* Gallery tiles */
[data-theme="light"] .gallery figure{background:#1a1a14;border-color:rgba(0,0,0,.06)}

/* Process */
[data-theme="light"] .process{background:var(--bg-2)}
[data-theme="light"] .steps li{background:#fff;border-color:rgba(0,0,0,.06)}
[data-theme="light"] .steps h3{color:var(--text)}
[data-theme="light"] .steps p{color:#4f5042}
[data-theme="light"] .step-num{background:#16170f;color:#ece4d2}

/* About */
[data-theme="light"] .about{background:var(--bg)}
[data-theme="light"] .about-copy h2{color:var(--text)}
[data-theme="light"] .about-copy p{color:#3e3f33}
[data-theme="light"] .about-stats > div{background:#fff;border-color:rgba(0,0,0,.06)}
[data-theme="light"] .about-stats strong{color:var(--text)}
[data-theme="light"] .about-stats span{color:#4f5042}
[data-theme="light"] .about-img:before{border-color:var(--taupe-d)}

/* Selection */
[data-theme="light"] ::selection{background:#cdb98a;color:#16170f}

/* =================================================================
   iPHONE / MOBILE POLISH
   ================================================================= */

/* Respect iPhone safe areas (notch, home indicator) */
@supports(padding:max(0px)){
  .hdr-inner{
    padding-left:max(clamp(1rem,4vw,2rem), env(safe-area-inset-left));
    padding-right:max(clamp(1rem,4vw,2rem), env(safe-area-inset-right));
  }
  .fab-call{
    right:max(1rem, env(safe-area-inset-right));
    bottom:max(1rem, env(safe-area-inset-bottom));
  }
  .site-footer,
  .contact,
  .hero-text{
    padding-left:max(clamp(1.25rem,5vw,3rem), env(safe-area-inset-left));
    padding-right:max(clamp(1.25rem,5vw,3rem), env(safe-area-inset-right));
  }
}

/* Prevent iOS auto-zoom on input focus (inputs must be ≥16px) */
@media (max-width:760px){
  .contact-form input,
  .contact-form select,
  .contact-form textarea{font-size:16px}
}

/* Tap targets ≥44px on mobile */
@media (max-width:760px){
  .site-header nav a{min-height:44px;display:flex;align-items:center}
  .btn{min-height:44px}
  .btn-lg{min-height:48px}
  .gallery figure{min-height:44px}
}

/* Tablet & phone tweaks */
@media (max-width:760px){
  /* Tighter hero typography */
  .hero h1{
    font-size:clamp(2rem,8vw,2.6rem);
    line-height:1.06;
    margin-bottom:.85rem;
  }
  .hero .lede{font-size:1rem;margin-bottom:1.3rem}
  .hero-text{
    padding-top:2.5rem;
    padding-bottom:3rem;
  }
  .hero-media img{min-height:300px;max-height:60vh}
  .cta-row .btn-lg{padding:.95rem 1.3rem;font-size:.97rem}
  .cta-row{gap:.6rem}
  .cta-row > .btn{flex:1 1 auto;justify-content:center}
  .hero-checks{gap:.4rem 1rem;font-size:.88rem}

  /* Section padding */
  .services, .work, .about, .contact, .process, .why{
    padding-top:3.75rem;padding-bottom:3.75rem;
  }
  .section-head{margin-bottom:1.8rem}
  .section-head h2{font-size:clamp(1.55rem,6vw,2rem)}
  .section-head .sub{font-size:.98rem}

  /* Storm band */
  .storm-band{padding-top:1.4rem;padding-bottom:1.6rem}
  .storm-inner{gap:1rem;padding-top:0;padding-bottom:0}
  .storm-copy h2{font-size:1.35rem}
  .storm-copy p{font-size:.92rem}
  .btn-storm{width:100%}

  /* Service cards more breathing room */
  .svc-grid{gap:.7rem}
  .svc-grid li{padding:1.3rem 1.15rem 1.35rem}
  .svc-grid li h3{font-size:1.05rem}
  .svc-grid li p{font-size:.92rem}

  /* Why us */
  .why-grid{gap:1.6rem}
  .why-list{gap:.85rem}
  .why-list strong{font-size:.97rem}
  .why-list div{font-size:.93rem}

  /* Gallery: single column featured, then 2-col, slightly taller tiles */
  .gallery{grid-auto-rows:170px;gap:.7rem}
  .gallery .g-feat figcaption strong{font-size:1.02rem}

  /* Process */
  .steps{gap:.7rem}
  .steps li{padding:1.4rem 1.2rem 1.3rem}

  /* About */
  .about-grid{gap:1.5rem}
  .about-stats{gap:.5rem}
  .about-stats > div{padding:.85rem .5rem}
  .about-stats strong{font-size:1.4rem}
  .about-stats span{font-size:.72rem}

  /* Contact */
  .contact-form{padding:1.2rem;gap:.85rem}
  .contact-form label{font-size:.7rem}
  .contact-card{padding:1.2rem}
  .big-phone a{font-size:1.4rem}

  /* Footer — extra bottom padding for FAB clearance */
  .site-footer{padding-top:2rem;padding-bottom:5.5rem}
  .foot-row{gap:1.2rem}
  .foot-contact{margin-left:0;width:100%}
  .foot-links{order:3;width:100%}

  /* Quote band */
  .quote-band{padding-top:3.2rem;padding-bottom:3.2rem}
  .quote-band blockquote{font-size:1.15rem;line-height:1.4}

  /* FAB doesn't crowd content */
  .fab-call{padding:.78rem 1.05rem;font-size:.9rem}

  /* Theme toggle slightly smaller */
  .theme-toggle{width:36px;height:36px}
}

/* Very small phones (iPhone SE, mini) */
@media (max-width:380px){
  .hdr-inner{gap:.4rem;padding-left:.85rem;padding-right:.85rem}
  .brand img{width:38px;height:38px}
  .brand strong{font-size:.92rem}
  .theme-toggle{display:none}  /* hide on tiny screens to keep header uncrowded */
  .hdr-phone{padding:.5rem .7rem}
  .hdr-phone-label strong{font-size:.85rem}
  .hero h1{font-size:1.85rem}
  .gallery{grid-template-columns:1fr;grid-auto-rows:220px}
  .gallery .g-feat{grid-column:auto;grid-row:auto;height:260px}
}
