/* ==========================================================================
   Comp-U-Rent — site stylesheet
   One file for every page. Edit here, it changes everywhere.
   ========================================================================== */

:root{
  --ink:#1B1A18;
  --ink-90:rgba(27,26,24,0.90);
  --ink-70:rgba(27,26,24,0.70);
  --ink-55:rgba(27,26,24,0.55);
  --ink-40:rgba(27,26,24,0.40);
  --paper:#F7F4EE;
  --paper-pure:#FFFFFF;
  --steel:#242220;
  --steel-2:#2C2A27;
  --amber:#E8A33D;
  --amber-hi:#F2B65C;
  --caution:#F2C94C;
  --teal:#2F6F72;
  --teal-hi:#3C8A8E;
  --line:rgba(27,26,24,0.10);
  --line-strong:rgba(27,26,24,0.16);
  --line-dark:rgba(247,244,238,0.14);
  --radius:4px;
  --radius-lg:10px;
  --shadow-sm:0 1px 2px rgba(27,26,24,0.05);
  --shadow-md:0 6px 20px -8px rgba(27,26,24,0.18);
  --shadow-lg:0 18px 44px -20px rgba(27,26,24,0.35);
  --pad-section:clamp(56px, 7vw, 92px);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth; scroll-padding-top:88px;}
body{
  font-family:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
h1,h2,h3,h4,.display{
  font-family:'Oswald', 'Inter', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.015em;
  font-weight:600;
  line-height:1.08;
  text-wrap:balance;
}
p{text-wrap:pretty;}
.mono{font-family:'IBM Plex Mono', ui-monospace, monospace; letter-spacing:0.04em;}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
:focus-visible{outline:3px solid var(--teal-hi); outline-offset:3px; border-radius:2px;}
.wrap{max-width:1180px; margin:0 auto; padding:0 24px;}
.wrap.narrow{max-width:1180px;}
.wrap.narrow > *{max-width:840px;}
.wrap.narrow > .venues-grid, .wrap.narrow > .services-grid{max-width:none;}
.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--amber); color:var(--ink);
  padding:12px 18px; font-weight:600;
}
.skip-link:focus{left:12px; top:12px;}

/* --- Hazard stripe: signature element, used sparingly ------------------- */
.hazard{
  height:6px;
  background:repeating-linear-gradient(-45deg,
    var(--ink), var(--ink) 12px,
    var(--caution) 12px, var(--caution) 24px);
}

/* --- Utility bar -------------------------------------------------------- */
.utility-bar{
  background:var(--steel);
  color:rgba(247,244,238,0.72);
  font-size:12.5px;
  letter-spacing:0.02em;
}
.utility-inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:16px; padding:8px 24px; max-width:1180px; margin:0 auto;
}
.utility-bar strong{color:var(--caution); font-weight:600;}
.utility-bar .u-right{display:flex; gap:20px;}
.utility-bar a:hover{color:var(--amber);}
@media (max-width:720px){ .utility-bar .u-right, .utility-bar .u-extra{display:none;} .utility-inner{justify-content:center;} }

/* --- Header ------------------------------------------------------------- */
header{
  background:var(--ink);
  color:var(--paper);
  position:sticky; top:0; z-index:60;
  border-bottom:1px solid var(--line-dark);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:12px 24px;
}
.logo img{height:48px; width:auto;}
nav.main-nav{display:flex; align-items:center; gap:26px;}
nav.main-nav a{
  font-size:13.5px; font-weight:500; letter-spacing:0.04em;
  text-transform:uppercase; color:rgba(247,244,238,0.82);
  padding:6px 0; position:relative; transition:color .15s;
}
nav.main-nav a::after{
  content:""; position:absolute; left:0; right:0; bottom:0;
  height:2px; background:var(--amber);
  transform:scaleX(0); transform-origin:left; transition:transform .18s ease;
}
nav.main-nav a:hover{color:var(--paper);}
nav.main-nav a:hover::after, nav.main-nav a.is-current::after{transform:scaleX(1);}
nav.main-nav a.is-current{color:var(--paper);}
.header-actions{display:flex; align-items:center; gap:10px;}
.phone-pill{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--amber); color:var(--ink);
  padding:10px 16px; border-radius:var(--radius);
  font-weight:600; font-size:14px; white-space:nowrap;
  transition:background .15s;
}
.phone-pill:hover{background:var(--amber-hi);}
.phone-pill svg{width:15px; height:15px; fill:currentColor;}
.nav-toggle{
  display:none; background:none; border:1px solid var(--line-dark);
  color:var(--paper); border-radius:var(--radius);
  padding:9px 11px; cursor:pointer; line-height:0;
}
.nav-toggle svg{width:20px; height:20px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round;}

/* Mobile drawer */
.mobile-nav{
  display:none; background:var(--steel); border-top:1px solid var(--line-dark);
}
.mobile-nav.open{display:block;}
.mobile-nav a{
  display:block; padding:15px 24px;
  border-bottom:1px solid var(--line-dark);
  font-family:'Oswald', sans-serif; text-transform:uppercase;
  letter-spacing:0.04em; font-size:15px; color:var(--paper);
}
.mobile-nav a:hover{background:var(--ink); color:var(--amber);}
.mobile-nav .m-label{
  padding:14px 24px 6px; font-family:'IBM Plex Mono', monospace;
  font-size:11px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--amber); border-bottom:1px solid var(--line-dark);
}

@media (max-width:940px){
  nav.main-nav{display:none;}
  .nav-toggle{display:block;}
  .phone-pill span.pill-text{display:none;}
  .phone-pill{padding:10px 12px;}
}

/* --- Buttons ------------------------------------------------------------ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:15px 26px; border-radius:var(--radius);
  font-family:'Oswald', sans-serif; font-weight:600;
  font-size:14.5px; letter-spacing:0.045em; text-transform:uppercase;
  border:2px solid transparent; cursor:pointer;
  transition:background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--amber); color:var(--ink); box-shadow:var(--shadow-sm);}
.btn-primary:hover{background:var(--amber-hi); box-shadow:var(--shadow-md);}
.btn-outline{border-color:rgba(247,244,238,0.28); color:var(--paper);}
.btn-outline:hover{border-color:var(--paper); background:rgba(247,244,238,0.06);}
.btn-dark{background:var(--ink); color:var(--paper);}
.btn-dark:hover{background:var(--steel-2);}
.btn-row{display:flex; gap:12px; flex-wrap:wrap;}

/* --- Shared section furniture ------------------------------------------ */
.section{padding:var(--pad-section) 0;}
.section-white{background:var(--paper-pure);}
.section-dark{background:var(--ink); color:var(--paper);}
.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--amber); display:flex; align-items:center; gap:10px;
  margin-bottom:18px;
}
.eyebrow::before{content:""; width:24px; height:2px; background:currentColor; flex:none;}
.eyebrow-teal{color:var(--teal);}
.section-head{max-width:660px; margin-bottom:44px;}
.section-head h2{font-size:clamp(26px, 3.4vw, 38px);}
.section-head p{margin-top:14px; font-size:16.5px; color:var(--ink-70);}
.section-dark .section-head p{color:rgba(247,244,238,0.78);}
.lede{font-size:17px; color:var(--ink-70);}
.section-dark .lede{color:rgba(247,244,238,0.82);}

/* --- Home hero ---------------------------------------------------------- */
.hero{
  background:
    linear-gradient(100deg, rgba(27,26,24,0.95) 32%, rgba(27,26,24,0.70) 72%, rgba(27,26,24,0.45) 100%),
    url('../images/hero-background-d23e5969ce.jpg');
  background-size:cover; background-position:center;
  color:var(--paper); padding:76px 0 84px;
  position:relative; overflow:hidden;
}
.hero::before{
  content:""; position:absolute; top:0; right:-10%;
  width:60%; height:100%;
  background:
    radial-gradient(circle at 70% 30%, rgba(232,163,61,0.16), transparent 55%),
    radial-gradient(circle at 90% 70%, rgba(47,111,114,0.24), transparent 50%);
  pointer-events:none;
}
.hero-grid{
  display:grid; grid-template-columns:1.15fr 0.85fr;
  gap:52px; align-items:center; position:relative;
}
.hero h1{font-size:clamp(36px, 5.2vw, 60px); max-width:12ch; margin-bottom:20px;}
.hero h1 em{font-style:normal; color:var(--amber);}
.hero p.hero-lede{font-size:17.5px; max-width:48ch; color:rgba(247,244,238,0.84); margin-bottom:30px;}
.hero-proof{
  display:flex; flex-wrap:wrap; gap:8px 10px; margin-bottom:28px;
}
.hero-proof span{
  font-family:'IBM Plex Mono', monospace; font-size:11.5px;
  letter-spacing:0.06em; text-transform:uppercase;
  border:1px solid rgba(247,244,238,0.22); color:rgba(247,244,238,0.8);
  padding:6px 11px; border-radius:20px;
}

/* Crate tag */
.crate-tag{
  background:rgba(36,34,32,0.92);
  border:1px solid var(--line-dark);
  border-radius:var(--radius-lg);
  padding:26px 24px; position:relative;
  backdrop-filter:blur(2px);
  box-shadow:var(--shadow-lg);
}
.crate-tag::before{
  content:""; position:absolute; top:18px; left:-9px;
  width:18px; height:18px; border-radius:50%;
  background:var(--ink); border:2px solid var(--line-dark);
}
.crate-tag .tag-head{
  display:flex; justify-content:space-between; align-items:baseline; gap:12px;
  border-bottom:1px dashed var(--line-dark);
  padding-bottom:14px; margin-bottom:14px;
}
.crate-tag .tag-head .id{font-family:'IBM Plex Mono', monospace; color:var(--amber); font-size:12.5px;}
.crate-tag .tag-head .status{
  font-family:'IBM Plex Mono', monospace; font-size:10.5px;
  color:#7FC7BE; background:rgba(47,111,114,0.28);
  padding:4px 9px; border-radius:20px; white-space:nowrap;
}
.spec-row{
  display:flex; justify-content:space-between; gap:14px;
  font-size:13.5px; padding:9px 0;
  border-bottom:1px solid var(--line-dark);
  color:rgba(247,244,238,0.72);
}
.spec-row:last-child{border-bottom:none;}
.spec-row span:last-child{font-family:'IBM Plex Mono', monospace; color:var(--paper); text-align:right;}

/* --- Trust strip -------------------------------------------------------- */
.trust{background:var(--paper-pure); border-bottom:1px solid var(--line); padding:34px 0;}
.trust-grid{display:grid; grid-template-columns:repeat(4, 1fr); gap:20px;}
.trust-item{text-align:center;}
.trust-item .num{font-family:'Oswald', sans-serif; font-size:30px; font-weight:600; line-height:1;}
.trust-item .num span{color:var(--amber);}
.trust-item .label{
  font-size:12px; text-transform:uppercase; letter-spacing:0.07em;
  color:var(--ink-55); margin-top:7px;
}

/* --- Spotlight ---------------------------------------------------------- */
.spotlight-grid{display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center;}
.flagship-badge{
  display:inline-flex; align-items:center; gap:7px;
  font-family:'IBM Plex Mono', monospace; font-size:11px;
  letter-spacing:0.1em; text-transform:uppercase;
  background:var(--ink); color:var(--caution);
  padding:6px 13px; border-radius:20px; margin-bottom:16px;
}
.flagship-badge::before{content:"★";}
.spotlight-stats{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:24px 0 28px;}
.spotlight-stat{
  background:var(--paper-pure); border:1px solid var(--line);
  border-left:3px solid var(--amber); border-radius:var(--radius);
  padding:15px 17px; box-shadow:var(--shadow-sm);
}
.spotlight-stat .val{font-family:'Oswald', sans-serif; font-size:21px; font-weight:600;}
.spotlight-stat .lbl{font-size:12.5px; color:var(--ink-55); margin-top:3px; line-height:1.4;}
.spotlight-visual img{
  width:100%; height:100%; min-height:340px; object-fit:cover;
  border-radius:var(--radius-lg); box-shadow:var(--shadow-md);
}

/* --- Card grids --------------------------------------------------------- */
.services-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:18px;}
.service-card{
  background:var(--paper-pure); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:24px;
  box-shadow:var(--shadow-sm);
  transition:border-color .16s, transform .16s, box-shadow .16s;
  display:flex; flex-direction:column;
}
.service-card:hover{border-color:var(--amber); transform:translateY(-3px); box-shadow:var(--shadow-md);}
.service-card.is-flagship{border-color:var(--amber); box-shadow:0 0 0 1px var(--amber) inset, var(--shadow-sm);}
.service-card .code{
  font-family:'IBM Plex Mono', monospace; font-size:11.5px; color:#A9741F;
  background:rgba(232,163,61,0.16); align-self:flex-start;
  padding:4px 9px; border-radius:3px; margin-bottom:14px; letter-spacing:0.06em;
}
.service-card h3{font-size:17.5px; margin-bottom:8px;}
.service-card p{font-size:14.5px; color:var(--ink-70); margin-bottom:16px; flex:1;}
.service-card .link{
  font-size:12.5px; font-weight:700; color:var(--teal);
  text-transform:uppercase; letter-spacing:0.06em;
}
.service-card .link::after{content:" →";}
.service-card:hover .link{color:var(--teal-hi);}

/* --- Quote block -------------------------------------------------------- */
.quote-section{background:var(--ink); color:var(--paper); padding:var(--pad-section) 0;}
.quote-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:52px; align-items:start;}
.quote-info h2{font-size:clamp(26px,3.2vw,34px); margin-bottom:16px;}
.quote-info p{color:rgba(247,244,238,0.78); font-size:15.5px; margin-bottom:24px; max-width:44ch;}
.quote-info ul{list-style:none;}
.quote-info li{
  display:flex; gap:12px; align-items:flex-start;
  font-size:14.5px; padding:11px 0;
  border-top:1px solid var(--line-dark);
  color:rgba(247,244,238,0.88);
}
.quote-info li:first-child{border-top:none;}
.quote-info li .bullet{color:var(--amber); font-family:'IBM Plex Mono', monospace; font-size:13px;}

.work-order{background:var(--paper); color:var(--ink); border-radius:var(--radius-lg); padding:30px; box-shadow:var(--shadow-lg);}
.work-order .wo-head{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  border-bottom:2px dashed var(--line-strong);
  padding-bottom:14px; margin-bottom:20px;
}
.work-order .wo-title{font-family:'Oswald', sans-serif; font-weight:600; text-transform:uppercase; font-size:15px; letter-spacing:0.05em;}
.work-order .wo-num{font-family:'IBM Plex Mono', monospace; font-size:11.5px; color:var(--ink-40);}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
.form-grid .full{grid-column:1 / -1;}
label{
  display:block; font-size:11.5px; font-weight:700;
  text-transform:uppercase; letter-spacing:0.06em;
  margin-bottom:6px; color:var(--ink-55);
}
input, textarea, select{
  width:100%; border:1.5px solid var(--line-strong); border-radius:var(--radius);
  padding:12px; font-family:'Inter', sans-serif; font-size:15px;
  background:var(--paper-pure); color:var(--ink);
  transition:border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus{
  border-color:var(--teal); outline:none;
  box-shadow:0 0 0 3px rgba(47,111,114,0.14);
}
textarea{resize:vertical; min-height:92px;}
.field{margin-bottom:0;}
.hp-field{position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden;}
.submit-btn{
  width:100%; margin-top:18px; background:var(--amber); color:var(--ink);
  border:none; padding:16px; border-radius:var(--radius);
  font-family:'Oswald', sans-serif; font-weight:600;
  text-transform:uppercase; letter-spacing:0.05em; font-size:15px;
  cursor:pointer; transition:background .15s, box-shadow .15s;
}
.submit-btn:hover{background:var(--amber-hi); box-shadow:var(--shadow-md);}
.form-note{font-size:12px; color:var(--ink-55); margin-top:12px; text-align:center;}

/* Dark form variant (contact page) */
.form-dark{background:var(--ink); padding:36px; border-radius:var(--radius-lg);}
.form-dark .work-order{background:transparent; padding:0; box-shadow:none;}
.form-dark .wo-head{border-bottom-color:var(--line-dark);}
.form-dark .wo-title{color:var(--paper);}
.form-dark .wo-num{color:rgba(247,244,238,0.45);}
.form-dark label{color:rgba(247,244,238,0.65);}
.form-dark input, .form-dark textarea, .form-dark select{
  background:var(--steel); border-color:var(--line-dark); color:var(--paper);
}
.form-dark .form-note{color:rgba(247,244,238,0.5);}

/* --- Page hero (interior pages) ---------------------------------------- */
.page-hero{background:var(--ink); color:var(--paper); padding:56px 0 60px;}
.page-hero h1{font-size:clamp(30px,4.4vw,46px); max-width:18ch;}
.page-hero p{margin-top:16px; font-size:16.5px; color:rgba(247,244,238,0.82); max-width:56ch;}
.breadcrumb{
  font-family:'IBM Plex Mono', monospace; font-size:11.5px;
  letter-spacing:0.08em; text-transform:uppercase;
  color:rgba(247,244,238,0.5); margin-bottom:18px;
}
.breadcrumb a{color:rgba(247,244,238,0.7);}
.breadcrumb a:hover{color:var(--amber);}
.breadcrumb span{margin:0 8px;}

/* --- Services page ------------------------------------------------------ */
.service-block{padding:60px 0; border-bottom:1px solid var(--line);}
.service-block:nth-of-type(even){background:var(--paper-pure);}
.service-photo{width:100%; max-height:360px; object-fit:cover; border-radius:var(--radius-lg); margin-bottom:30px; box-shadow:var(--shadow-md);}
.service-photo-pair{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:30px;}
.service-photo-pair img{width:100%; height:270px; object-fit:cover; border-radius:var(--radius-lg); box-shadow:var(--shadow-sm);}
.service-block-grid{display:grid; grid-template-columns:auto 1fr auto; gap:34px; align-items:center;}
.code-big{
  font-family:'IBM Plex Mono', monospace; font-size:13px; color:#A9741F;
  background:rgba(232,163,61,0.16); padding:7px 12px; border-radius:4px;
  display:inline-block; letter-spacing:0.06em;
}
.service-block h2{font-size:clamp(22px,2.6vw,30px); margin-bottom:12px;}
.service-block p{font-size:15.5px; color:var(--ink-70); max-width:58ch; margin-bottom:14px;}
.tick-list{list-style:none; margin-bottom:18px;}
.tick-list li{font-size:14.5px; padding:6px 0 6px 24px; position:relative; color:var(--ink-70);}
.tick-list li::before{content:"→"; position:absolute; left:0; color:var(--teal); font-family:'IBM Plex Mono', monospace;}
.flagship-strip{
  display:inline-flex; align-items:center; gap:7px;
  font-family:'IBM Plex Mono', monospace; font-size:10.5px;
  letter-spacing:0.1em; text-transform:uppercase;
  background:var(--amber); color:var(--ink);
  padding:5px 11px; border-radius:20px; margin-bottom:12px;
}
.service-cta{
  display:inline-flex; align-items:center; gap:8px; padding:13px 22px;
  background:var(--ink); color:var(--paper); border-radius:var(--radius);
  font-family:'Oswald', sans-serif; font-weight:600; font-size:13.5px;
  text-transform:uppercase; letter-spacing:0.05em; white-space:nowrap;
  transition:background .15s;
}
.service-cta:hover{background:var(--steel-2);}

/* --- FAQ ---------------------------------------------------------------- */
details.faq-item{border-bottom:1px solid var(--line); padding:18px 0;}
details.faq-item summary{
  font-family:'Oswald', sans-serif; font-size:16px; font-weight:600;
  text-transform:uppercase; letter-spacing:0.02em; cursor:pointer;
  list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px;
}
details.faq-item summary::-webkit-details-marker{display:none;}
details.faq-item summary::after{content:"+"; font-family:'IBM Plex Mono', monospace; font-size:20px; color:var(--amber);}
details.faq-item[open] summary::after{content:"–";}
details.faq-item p{margin-top:12px; font-size:15px; color:var(--ink-70); max-width:68ch;}

/* --- About page --------------------------------------------------------- */
.story-grid{display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:start;}
.story h2{font-size:clamp(24px,3vw,32px); margin-bottom:16px;}
.story p{font-size:16px; color:var(--ink-70); margin-bottom:16px; max-width:54ch;}
.timeline-tag{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'IBM Plex Mono', monospace; font-size:11.5px;
  color:var(--teal); background:rgba(47,111,114,0.10);
  padding:6px 12px; border-radius:20px; margin-bottom:16px; letter-spacing:0.06em;
}
.credentials{background:var(--steel); color:var(--paper); border-radius:var(--radius-lg); padding:30px; box-shadow:var(--shadow-md);}
.credentials h3{font-size:14px; letter-spacing:0.06em; color:var(--amber); margin-bottom:18px;}
.credential-row{
  display:flex; justify-content:space-between; gap:14px;
  padding:12px 0; border-top:1px solid var(--line-dark); font-size:14.5px;
  color:rgba(247,244,238,0.75);
}
.credential-row:first-of-type{border-top:none;}
.credential-row span:last-child{font-family:'IBM Plex Mono', monospace; color:var(--paper); text-align:right;}
.gallery-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px;}
.gallery-grid a{display:block; overflow:hidden; border-radius:var(--radius-lg);}
.gallery-grid img{width:100%; height:220px; object-fit:cover; transition:transform .25s ease;}
.gallery-grid a:hover img{transform:scale(1.05);}

/* --- Contact page ------------------------------------------------------- */
.contact-grid{display:grid; grid-template-columns:0.8fr 1.2fr; gap:52px; align-items:start;}
.contact-info h2{font-size:clamp(22px,2.8vw,28px); margin-bottom:18px;}
.info-row{display:flex; gap:16px; padding:15px 0; border-top:1px solid var(--line);}
.info-row:first-of-type{border-top:none;}
.info-row .label{
  font-family:'IBM Plex Mono', monospace; font-size:11px;
  text-transform:uppercase; letter-spacing:0.08em;
  color:var(--ink-40); min-width:88px; padding-top:2px;
}
.info-row .value{font-size:15px; font-weight:500;}
.info-row .value a{color:var(--teal); font-weight:600;}
.info-row .value a:hover{color:var(--teal-hi); text-decoration:underline;}
.map-embed{margin-top:24px; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); height:260px;}
.map-embed iframe{width:100%; height:100%; border:0;}

/* --- Venue cards -------------------------------------------------------- */
.venues-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
.venue-card{
  border:1px solid var(--line); border-radius:var(--radius-lg);
  background:var(--paper-pure); padding:20px 22px;
  box-shadow:var(--shadow-sm);
  transition:border-color .16s, transform .16s, box-shadow .16s;
  display:flex; flex-direction:column; gap:6px;
}
.venue-card:hover{border-color:var(--amber); transform:translateY(-3px); box-shadow:var(--shadow-md);}
.venue-card h3{font-size:16px;}
.venue-card p{font-size:12.5px; color:var(--ink-55); font-family:'IBM Plex Mono', monospace;}
.venue-card .vlink{margin-top:8px; font-size:12.5px; font-weight:700; color:var(--teal); text-transform:uppercase; letter-spacing:0.05em;}
.venue-card .vlink::after{content:" →";}

/* --- Callout ------------------------------------------------------------ */
.callout{
  background:var(--paper-pure); border:1px solid var(--line);
  border-left:4px solid var(--teal); border-radius:var(--radius);
  padding:22px 24px; margin:26px 0; box-shadow:var(--shadow-sm);
}
.callout h3{font-size:15px; margin-bottom:8px; color:var(--teal);}
.callout p{font-size:15px; color:var(--ink-70); max-width:66ch;}
.section-dark .callout{background:rgba(247,244,238,0.05); border-color:var(--line-dark); border-left-color:var(--amber);}
.section-dark .callout h3{color:var(--amber);}
.section-dark .callout p{color:rgba(247,244,238,0.8);}

/* --- Final CTA ---------------------------------------------------------- */
.final-cta{background:var(--ink); color:var(--paper); text-align:center; padding:var(--pad-section) 24px;}
.final-cta h2{font-size:clamp(24px,3vw,34px); margin-bottom:14px;}
.final-cta p{color:rgba(247,244,238,0.78); margin:0 auto 26px; max-width:52ch;}
.final-cta .btn-row{justify-content:center;}

/* --- Footer ------------------------------------------------------------- */
footer{background:var(--steel); color:var(--paper); padding:52px 0 24px;}
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:32px; padding-bottom:32px; border-bottom:1px solid var(--line-dark);
}
.footer-grid h4{font-size:12.5px; text-transform:uppercase; letter-spacing:0.08em; color:var(--amber); margin-bottom:14px;}
.footer-grid p, .footer-grid a{display:block; font-size:13.5px; color:rgba(247,244,238,0.7); margin-bottom:9px;}
.footer-grid a:hover{color:var(--amber);}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:20px; font-size:12.5px; color:rgba(247,244,238,0.5);
  flex-wrap:wrap; gap:10px;
}

/* --- Sticky mobile action bar ------------------------------------------ */
.mobile-cta{
  display:none; position:fixed; left:0; right:0; bottom:0; z-index:70;
  background:var(--ink); border-top:1px solid var(--line-dark);
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  gap:10px; box-shadow:0 -6px 24px rgba(27,26,24,0.30);
}
.mobile-cta a{
  flex:1; display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 10px; border-radius:var(--radius);
  font-family:'Oswald', sans-serif; font-weight:600; font-size:14px;
  text-transform:uppercase; letter-spacing:0.05em;
}
.mobile-cta .m-call{background:var(--amber); color:var(--ink);}
.mobile-cta .m-quote{background:transparent; color:var(--paper); border:2px solid rgba(247,244,238,0.3);}
.mobile-cta svg{width:15px; height:15px; fill:currentColor;}
@media (max-width:768px){
  .mobile-cta{display:flex;}
  body{padding-bottom:76px;}
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr; gap:36px;}
  .spotlight-grid{grid-template-columns:1fr; gap:36px;}
  .quote-grid{grid-template-columns:1fr; gap:36px;}
  .contact-grid{grid-template-columns:1fr; gap:36px;}
  .story-grid{grid-template-columns:1fr; gap:36px;}
  .services-grid{grid-template-columns:1fr 1fr;}
  .venues-grid{grid-template-columns:1fr 1fr;}
  .service-block-grid{grid-template-columns:1fr; gap:24px;}
  .service-cta{justify-self:start;}
  .service-photo-pair{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .spotlight-visual img{min-height:260px;}
}
@media (max-width:640px){
  .trust-grid{grid-template-columns:1fr 1fr; gap:24px;}
  .services-grid{grid-template-columns:1fr;}
  .venues-grid{grid-template-columns:1fr;}
  .service-photo-pair{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:1fr 1fr;}
  .spotlight-stats{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .work-order{padding:22px;}
  .form-dark{padding:22px;}
  .btn{width:100%;}
  .hero .btn-row{flex-direction:column;}
  .footer-bottom{justify-content:center; text-align:center;}
}
@media (max-width:420px){
  .gallery-grid{grid-template-columns:1fr;}
}

@media (prefers-reduced-motion: reduce){
  *{transition:none !important; animation:none !important;}
  html{scroll-behavior:auto;}
}

@media print{
  header, .mobile-cta, .utility-bar, .hazard, .mobile-nav{display:none !important;}
  body{padding-bottom:0; background:#fff;}
}
