/* ==========================================================================
   KK ENTERPRISES — Stylesheet
   Palette drawn from brand mark: signal red, switch-gear black, busbar amber
   ========================================================================== */

:root{
  --red: #C8102E;
  --red-dark: #9C0C22;
  --red-deep: #6E0818;
  --ink: #16181C;
  --ink-soft: #2B2E34;
  --steel: #4E5562;
  --steel-light: #8C93A0;
  --steel-pale: #C9CDD3;
  --amber: #F2A900;
  --amber-dark: #C98700;
  --paper: #FAF9F6;
  --white: #FFFFFF;
  --line: #E7E4DC;
  --line-soft: #EFEDE7;
  --green-on: #2E9E4F;

  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --container: 1180px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(22,24,28,0.06);
  --shadow-md: 0 8px 24px rgba(22,24,28,0.10);
  --shadow-lg: 0 24px 48px rgba(22,24,28,0.16);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible{
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ---------- Typography ---------- */
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.12;
  margin: 0 0 0.4em;
  color: var(--ink);
}
h1{ font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.015em; line-height: 1.08; }
h2{ font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
h3{ font-size: 1.22rem; letter-spacing: -0.005em; font-weight: 700; }
p{ margin: 0 0 1em; color: var(--ink-soft); }
.lede{ font-size: 1.15rem; color: var(--steel); max-width: 620px; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 18px;
  height: 2px;
  background: var(--amber);
  display:inline-block;
}

.section{ padding: 88px 0; }
.section--tight{ padding: 56px 0; }
.section--ink{ background: var(--ink); color: var(--paper); }
.section--ink h2, .section--ink h3{ color: var(--white); }
.section--ink p{ color: var(--steel-pale); }
.section--paper{ background: var(--white); }

.section-head{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.section-head h2{ margin-bottom: 0.2em; }

/* ---------- Buttons ---------- */
.btn{
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ background: var(--red-dark); box-shadow: var(--shadow-md); }
.btn-dark{
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover{ background: var(--ink-soft); box-shadow: var(--shadow-md); }
.btn-outline{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover{ background: var(--ink); color: var(--white); }
.btn-outline.on-dark{ border-color: var(--paper); color: var(--paper); }
.btn-outline.on-dark:hover{ background: var(--paper); color: var(--ink); }
.btn-whatsapp{
  background: #1FA855;
  color: var(--white);
}
.btn-whatsapp:hover{ background: #178a45; box-shadow: var(--shadow-md); }
.btn-block{ width: 100%; justify-content: center; }
.btn svg{ width: 18px; height: 18px; flex: none; }

/* ---------- Header ---------- */
.site-header{
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s ease, padding 0.2s ease;
}
.site-header.is-scrolled{ box-shadow: var(--shadow-md); }

.header-bar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand img{ height: 46px; width:auto; transition: height 0.2s ease; }
.site-header.is-scrolled .brand img{ height: 38px; }

.brand-text{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  border-left: 2px solid var(--line);
  padding-left: 12px;
  display: none;
}
@media (min-width: 560px){ .brand-text{ display:block; } }

.main-nav{
  display:flex;
  align-items:center;
  gap: 36px;
}
.main-nav ul{ display:flex; gap: 32px; }
.main-nav a{
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background: var(--red);
  transition: width 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after{ width: 100%; }
.main-nav a.is-active{ color: var(--red); }

.header-cta{ display:flex; align-items:center; gap: 14px; }
.phone-link{
  display:flex;
  align-items:center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.phone-link svg{ width:18px; height:18px; color: var(--red); }

.nav-toggle{
  display:none;
  flex-direction: column;
  justify-content:center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background:none;
  border:none;
  padding:0;
}
.nav-toggle span{
  display:block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 880px){
  .main-nav{
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 30%;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav ul{ flex-direction: column; gap: 8px; width:100%; }
  .main-nav a{ color: var(--paper); font-size: 1.1rem; padding: 10px 0; display:block; }
  .main-nav a::after{ display:none; }
  .header-cta{ margin-top: 28px; flex-direction: column; align-items: flex-start; }
  .phone-link{ color: var(--paper); }
  .nav-toggle{ display:flex; }
  .nav-backdrop{
    position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,0.4);
    opacity:0; pointer-events:none; transition: opacity 0.3s ease; z-index: 98;
  }
  .nav-backdrop.is-open{ opacity:1; pointer-events:auto; }
}

/* ---------- Terminal-strip divider (signature element) ---------- */
.terminal-strip{
  width: 100%;
  display:block;
  height: 22px;
}
.terminal-strip--ink{ background: var(--ink); }
.terminal-strip svg{ width:100%; height:100%; display:block; }

/* ---------- Hero (full-bleed background slider) ---------- */
.hero{
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  color: var(--paper);
}
.hero-bg{
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
  background: var(--ink);
}
.hero-bg-slide{
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-bg-slide.is-active{ opacity: 1; }
.hero::before{
  content:"";
  position:absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events:none;
}
.hero-scrim{
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(22,24,28,0.55) 0%, rgba(22,24,28,0.28) 40%, rgba(22,24,28,0.08) 65%);
}
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 1200px;
}
.hero h1{ color: var(--white); }
.hero h1 .accent{ color: var(--red); }
.hero .lede{ color: var(--steel-pale); font-size: 1.18rem; }
.hero-cta{ display:flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.hero-meta{
  display:flex;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-meta div{ font-family: var(--font-mono); }
.hero-meta .num{ font-size: 1.6rem; font-weight: 700; color: var(--amber); display:block; }
.hero-meta .label{ font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel-light); }

.hero-slider-nav{
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 9px;
}
.hero-slider-nav button{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  transition: all 0.25s ease;
}
.hero-slider-nav button.is-active{ background: var(--amber); width: 24px; border-radius: 5px; }

.hero-slide-label{
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 54px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-pale);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-slide-label.is-active{ opacity: 1; }

@media (max-width: 760px){
  .hero{ min-height: auto; padding: 110px 0 64px; }
  .hero-content{ max-width: 100%; }
  .hero-scrim{ background: linear-gradient(180deg, rgba(22,24,28,0.55) 0%, rgba(22,24,28,0.78) 60%, rgba(22,24,28,0.92) 100%); }
  .hero-slide-label{ display: none; }
}
@media (prefers-reduced-motion: reduce){
  .hero-bg-slide{ transition: none; }
}

/* ---------- Marquee strip ---------- */
.tape{
  background: var(--amber);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.tape-track{
  display:inline-flex;
  align-items:center;
  gap: 48px;
  padding: 12px 0;
  animation: scroll-tape 28s linear infinite;
}
.tape-track span{
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.tape-track span::after{ content:"\2022"; margin-left: 48px; color: var(--ink); }
@keyframes scroll-tape{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .tape-track{ animation: none; } }

/* ---------- Category / product cards ---------- */
.cat-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px){ .cat-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .cat-grid{ grid-template-columns: 1fr; } }

.cat-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display:flex;
  flex-direction: column;
}
.cat-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--steel-pale); }
.cat-card-media{
  aspect-ratio: 4/3;
  background: var(--paper);
  overflow:hidden;
  position: relative;
}
.cat-card-media img{ width:100%; height:100%; object-fit: contain; padding: 18px; }
.cat-card-tag{
  position:absolute; top:12px; left:12px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}
.cat-card-body{ padding: 22px; flex:1; display:flex; flex-direction: column; }
.cat-card-body h3{ margin-bottom: 8px; }
.cat-card-body p{ font-size: 0.92rem; flex:1; }
.cat-card-link{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 12px;
}
.cat-card-link svg{ width:14px; height:14px; transition: transform 0.2s ease; }
.cat-card:hover .cat-card-link svg{ transform: translateX(4px); }

/* ---------- Why-us strip ---------- */
.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 760px){ .feature-grid{ grid-template-columns: 1fr; } }
.feature{
  background: var(--white);
  padding: 32px 28px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--accent, var(--red));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover{ transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature:nth-child(2){ --accent: var(--amber); }
.feature-icon{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent, var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px -4px var(--accent, var(--red));
}
.feature-icon svg{ width: 20px; height: 20px; color: var(--white); stroke-width: 2.2; }
.feature h3{ margin-bottom: 10px; color: var(--ink); font-size: 1.12rem; }
.feature p{ font-size: 0.93rem; margin-bottom:0; }

/* ---------- Process / steps ---------- */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px){ .steps{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .steps{ grid-template-columns: 1fr; } }
.step{ position: relative; padding-left: 0; }
.step .step-num{
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--amber);
  display:block;
  margin-bottom: 8px;
  line-height: 1;
}
.step h3{ font-size: 1.05rem; margin-bottom: 6px; }
.step p{ font-size: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--red);
  color: var(--white);
  padding: 64px 0;
}
.cta-band-grid{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band h2{ color: var(--white); margin-bottom: 6px; }
.cta-band p{ color: rgba(255,255,255,0.85); margin-bottom:0; }
.cta-band-actions{ display:flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink);
  color: var(--steel-pale);
  padding: 64px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px){ .footer-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand .logo-chip{
  display: inline-block;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.footer-brand .logo-chip img{ height: 36px; }
.footer-brand p{ color: var(--steel-light); font-size: 0.9rem; max-width: 320px; }
.footer-col h4{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.footer-col ul li{ margin-bottom: 10px; }
.footer-col a{ color: var(--steel-pale); font-size: 0.92rem; transition: color 0.15s ease; }
.footer-col a:hover{ color: var(--white); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size: 0.92rem; }
.footer-contact svg{ width:16px; height:16px; flex:none; margin-top:3px; color: var(--red); }
.footer-bottom{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 22px 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel-light);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- WhatsApp floating button ---------- */
.wa-float{
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1FA855;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  transition: transform 0.2s ease;
}
.wa-float:hover{ transform: scale(1.08); }
.wa-float svg{ width: 30px; height: 30px; color: var(--white); }
.wa-float::before{
  content:"";
  position:absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border-radius: 50%;
  border: 2px solid #1FA855;
  animation: wa-ring 2.4s ease-out infinite;
}
@keyframes wa-ring{
  0%{ transform: scale(1); opacity: 0.6; }
  100%{ transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){ .wa-float::before{ animation:none; } }

/* ---------- Page header (sub-pages) ---------- */
.page-header{
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-header::before{
  content:"";
  position:absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}
.page-header .container{ position: relative; z-index:2; }
.breadcrumb{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 18px;
}
.breadcrumb a{ color: var(--amber); }
.page-header h1{ color: var(--white); margin-bottom: 10px; }
.page-header p{ color: var(--steel-pale); max-width: 600px; margin-bottom:0; }

/* ---------- Products page ---------- */
.filter-bar{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-chip{
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  color: var(--ink-soft);
  transition: all 0.15s ease;
}
.filter-chip:hover{ border-color: var(--red); color: var(--red); }
.filter-chip.is-active{ background: var(--ink); border-color: var(--ink); color: var(--white); }

.product-detail{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.product-detail:last-child{ border-bottom: none; }
.product-detail:nth-child(even) .product-media{ order: 2; }
@media (max-width: 860px){
  .product-detail{ grid-template-columns: 1fr; gap: 28px; }
  .product-detail:nth-child(even) .product-media{ order: 0; }
}
.product-media{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  position: sticky;
  top: 110px;
}
@media (max-width: 860px){ .product-media{ position: static; } }
.product-media img{ width:100%; height:auto; object-fit:contain; }
.product-id{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--steel-light);
  margin-top: 16px;
  text-align:center;
}
.product-body .eyebrow{ margin-bottom: 10px; }
.product-body h2{ margin-bottom: 14px; }
.spec-table{
  width:100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.92rem;
}
.spec-table tr{ border-bottom: 1px solid var(--line-soft); }
.spec-table td{ padding: 11px 4px; }
.spec-table td:first-child{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel);
  width: 42%;
}
.spec-table td:last-child{ color: var(--ink); font-weight: 500; }
.tick-list{ margin: 24px 0; }
.tick-list li{
  display:flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.tick-list svg{ width:18px; height:18px; flex:none; margin-top:2px; color: var(--green-on); }
.product-actions{ display:flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ---------- Contact page ---------- */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}
@media (max-width: 880px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-list li{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-list li:last-child{ border-bottom:none; }
.contact-list .ic{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--paper);
  display:flex; align-items:center; justify-content:center;
  flex:none;
}
.contact-list .ic svg{ width:20px; height:20px; color: var(--red); }
.contact-list h4{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin: 0 0 4px;
}
.contact-list p{ margin:0; font-weight: 600; color: var(--ink); }
.contact-list a{ font-weight:600; }
.hours-table{ width:100%; font-size: 0.92rem; margin-top: 6px; }
.hours-table td{ padding: 6px 0; }
.hours-table td:first-child{ color: var(--steel); }
.hours-table td:last-child{ text-align:right; font-weight: 600; }

.map-wrap{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  height: 100%;
  min-height: 420px;
  display:flex;
  flex-direction: column;
}
.map-wrap iframe{ width:100%; height:100%; flex:1; border:0; filter: saturate(0.9); }
.map-caption{
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel);
  border-top: 1px solid var(--line);
  display:flex; justify-content: space-between; flex-wrap:wrap; gap:8px;
}
.map-caption a{ color: var(--red); }

/* ---------- Misc ---------- */
.skip-link{
  position:absolute; left:-9999px; top:0;
  background: var(--ink); color:var(--white); padding: 10px 16px; z-index: 999;
}
.skip-link:focus{ left: 10px; top: 10px; }

.divider-amber{ height: 4px; width: 64px; background: var(--amber); margin: 0 0 24px; }
