/* ============================================================
   SOLID ARCPG WELDING — styles.css
   Industrial steel design system. No frameworks.
   Palette derived from the company logo:
   deep navy, charcoal steel, silver, and a signature welding orange.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --ink:          #14233d;  /* deep navy */
  --ink-2:        #1b2a47;
  --steel-900:    #15171a;  /* charcoal / banner black */
  --steel-800:    #21262c;
  --steel-700:    #2d333b;
  --steel-600:    #404852;
  --steel-500:    #5a636e;
  --steel-400:    #7c8590;
  --steel-300:    #9aa3ad;
  --steel-200:    #c2c7ce;  /* silver */
  --steel-100:    #e4e7eb;
  --paper:        #f4f5f3;  /* off-white background */
  --white:        #ffffff;
  --flame:        #ef7a1a;  /* signature orange */
  --flame-bright: #f59b2c;
  --flame-deep:   #d3620c;
  --flag-red:     #b11226;
  --ok:           #2f8a4e;

  /* Typography */
  --font-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Scale & spacing */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(56px, 8vw, 104px);
  --radius: 4px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(21,23,26,.08), 0 2px 6px rgba(21,23,26,.06);
  --shadow-md: 0 8px 24px rgba(21,23,26,.12);
  --shadow-lg: 0 18px 48px rgba(21,23,26,.20);
  --bevel: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--steel-800);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--flame-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,h5,h6 { margin: 0 0 .5em; line-height: 1.08; color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.02;
}
h1 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .005em;
     font-size: clamp(2.1rem, 6vw, 4.1rem); }
h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .01em;
     font-size: clamp(1.7rem, 4vw, 2.7rem); }
h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .02em;
     font-size: clamp(1.15rem, 2.2vw, 1.45rem); }
p { margin: 0 0 1.1rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--steel-600); line-height: 1.6; }

/* Eyebrow label — a small structural tag, like a steel stamp */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  font-size: .78rem; color: var(--flame-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px;
  background: var(--flame); display: inline-block;
}
.eyebrow.on-dark { color: var(--flame-bright); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--steel { background: var(--steel-900); color: var(--steel-100); }
.section--steel h1,.section--steel h2,.section--steel h3 { color: var(--white); }
.section--ink { background: var(--ink); color: var(--steel-100); }
.section--ink h2,.section--ink h3 { color: var(--white); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure.center { margin-inline: auto; }
.section-head { max-width: 64ch; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; }

.grid { display: grid; gap: clamp(18px, 3vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .grid-3,.grid-4{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .grid-2,.grid-3,.grid-4{ grid-template-columns: 1fr;} }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: .95rem;
  padding: 15px 28px; border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--flame-bright); outline-offset: 3px; }
.btn--primary { background: var(--flame); color: #1a1206; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--flame-bright); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--steel-300); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost.on-dark { color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost.on-dark:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20,35,61,.97);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 3px solid var(--flame);
  color: var(--white);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 64px; width: auto; }
.brand:hover { text-decoration: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  color: var(--white); font-size: 1.15rem; letter-spacing: .03em;
}
.brand-text span {
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--steel-300); font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .05em; font-size: .95rem; color: var(--steel-200);
  padding: 10px 14px; border-radius: var(--radius); transition: color .15s, background .15s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,.08); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--flame-bright); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px; color: var(--white);
  font-family: var(--font-display); font-weight: 600; letter-spacing: .03em; font-size: 1.05rem;
}
.nav-phone:hover { color: var(--flame-bright); text-decoration: none; }
.nav-toggle {
  display: none; background: transparent; border: 2px solid rgba(255,255,255,.35);
  border-radius: var(--radius); width: 46px; height: 44px; padding: 0; color: var(--white);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: currentColor;
  margin-inline: auto; position: relative; transition: transform .2s, opacity .2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  /* Keep every nav title visible on its own tidy row instead of a dropdown */
  .nav-toggle { display: none; }
  .nav { flex-wrap: wrap; row-gap: 4px; padding-bottom: 6px; }
  .nav-links {
    order: 3; width: 100%;
    flex-wrap: wrap; justify-content: center; gap: 2px;
    margin-top: 2px;
  }
  .nav-links a { padding: 6px 10px; font-size: .92rem; }
  .nav-phone span.label { display: none; }
}
@media (max-width: 480px) {
  .nav-links a { padding: 5px 7px; font-size: .82rem; letter-spacing: .02em; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--white);
  background:
    linear-gradient(180deg, rgba(20,35,61,.78) 0%, rgba(21,23,26,.92) 100%),
    radial-gradient(120% 90% at 78% 8%, rgba(239,122,26,.28), transparent 55%),
    var(--steel-900);
  overflow: hidden;
}
.hero::after {
  /* subtle steel diamond-plate texture */
  content: ""; position: absolute; inset: 0; opacity: .07; pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, #fff 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, #fff 0 1px, transparent 1px 14px);
  background-size: 28px 28px;
}
.hero .container { position: relative; z-index: 2; padding-block: clamp(64px, 11vw, 132px); }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero h1 .accent { color: var(--flame-bright); }
.hero .lead { color: var(--steel-200); max-width: 54ch; margin-top: 8px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 42px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14);
}
.hero-trust div { line-height: 1.2; }
.hero-trust strong {
  font-family: var(--font-display); font-size: 1.9rem; color: var(--flame-bright); display: block;
}
.hero-trust span { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--steel-300); }

.hero--sub { background:
    linear-gradient(180deg, rgba(20,35,61,.92), rgba(21,23,26,.95)),
    var(--steel-900); }
.hero--sub .container { padding-block: clamp(52px, 8vw, 88px); }
.hero--sub h1 { font-size: clamp(2rem, 5vw, 3.4rem); }

/* Breadcrumb */
.breadcrumb { font-size: .85rem; color: var(--steel-300); margin-bottom: 16px; letter-spacing: .04em; }
.breadcrumb a { color: var(--steel-200); }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Steel plate card (signature element) ---------- */
.plate {
  background: var(--white);
  clip-path: var(--bevel);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--flame);
  transition: transform .18s ease, box-shadow .18s ease;
  height: 100%;
}
.plate:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plate h3 { margin-top: 10px; }
.plate p:last-child { margin-bottom: 0; }
.plate--dark { background: var(--steel-800); color: var(--steel-200); border-top-color: var(--flame); }
.plate--dark h3 { color: var(--white); }

/* Icon chip */
.chip {
  width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--ink); color: var(--flame-bright); border-radius: var(--radius);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.chip svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* ---------- Service link list ---------- */
.svc-card { display: flex; flex-direction: column; }
.svc-card .chip { margin-bottom: 6px; }
.svc-card .more {
  margin-top: auto; padding-top: 14px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: .85rem; color: var(--flame-deep);
}
.svc-card .more::after { content: " →"; }

/* ---------- "Why us" feature row ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .chip { flex: 0 0 auto; }
.feature h3 { margin: 4px 0 6px; }
.feature p { margin: 0; color: var(--steel-600); }
.section--steel .feature p, .section--ink .feature p { color: var(--steel-300); }

/* ---------- Process steps (real sequence → numbered) ---------- */
.steps { counter-reset: step; display: grid; gap: 4px; }
.step {
  position: relative; padding: 22px 22px 22px 78px;
  border-left: 2px solid var(--steel-200);
}
.step:last-child { border-left-color: transparent; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: -23px; top: 16px;
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--ink); color: var(--flame-bright);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  border-radius: var(--radius);
}
.step h3 { margin: 0 0 4px; }
.step p { margin: 0; color: var(--steel-600); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px){ .gallery-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 520px){ .gallery-grid{ grid-template-columns: 1fr;} }
.shot {
  position: relative; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); background: var(--steel-800);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.shot img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .4s ease; }
.shot:hover img { transform: scale(1.05); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 16px 14px; color: var(--white);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; font-size: .95rem;
  background: linear-gradient(180deg, transparent, rgba(21,23,26,.85));
}
.shot .tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: .68rem; letter-spacing: .08em; color: #1a1206;
  background: var(--flame); padding: 5px 10px; border-radius: 3px;
}

/* Gallery filter */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.filter-btn {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: .85rem; color: var(--steel-600);
  background: var(--white); border: 2px solid var(--steel-200);
  padding: 9px 18px; border-radius: var(--radius); transition: all .15s;
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }
.shot.is-hidden { display: none; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white); padding: clamp(24px, 3vw, 34px);
  border-left: 4px solid var(--flame); box-shadow: var(--shadow-sm);
  border-radius: var(--radius); height: 100%;
}
.quote .stars { color: var(--flame); letter-spacing: 2px; margin-bottom: 10px; }
.quote blockquote { margin: 0 0 16px; font-size: 1.05rem; color: var(--steel-700); }
.quote .who { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; color: var(--ink); }
.quote .role { font-size: .82rem; color: var(--steel-500); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink) 0%, var(--steel-900) 100%);
  color: var(--white);
}
.cta-banner::before {
  content: ""; position: absolute; right: -60px; top: 50%; transform: translateY(-50%) rotate(12deg);
  width: 380px; height: 80px;
  background: linear-gradient(90deg, transparent, var(--flame));
  opacity: .25; filter: blur(2px);
}
.cta-banner .container {
  position: relative; z-index: 2; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 28px;
  padding-block: clamp(40px, 6vw, 64px);
}
.cta-banner h2 { color: var(--white); margin: 0; max-width: 18ch; }
.cta-banner p { margin: 8px 0 0; color: var(--steel-200); }
.cta-banner .actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form .row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px){ .form .row{ grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; font-size: .82rem; color: var(--ink);
}
.field label .req { color: var(--flag-red); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--steel-900);
  padding: 13px 14px; border: 2px solid var(--steel-200); border-radius: var(--radius);
  background: var(--white); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--flame); box-shadow: 0 0 0 3px rgba(239,122,26,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: var(--flag-red); font-size: .82rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--flag-red); }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--steel-500); }
.form-success {
  display: none; background: #eef7f0; border: 2px solid var(--ok); color: #1d5e36;
  padding: 16px 18px; border-radius: var(--radius); font-weight: 600;
}
.form-success.show { display: block; }

/* ---------- Info / contact list ---------- */
.info-list { list-style: none; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .chip { flex: 0 0 auto; }
.info-list strong { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; color: var(--ink); font-size: .9rem; }
.info-list a { color: var(--flame-deep); }
.section--steel .info-list strong { color: var(--white); }
.section--steel .info-list a { color: var(--flame-bright); }

.hours { list-style: none; display: grid; gap: 8px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid var(--steel-100); }
.hours li span:first-child { font-weight: 600; }
.hours .closed { color: var(--steel-400); }

.map-embed { width: 100%; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 16/10; }

/* ---------- Service areas chips ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.areas span {
  background: var(--white); border: 1px solid var(--steel-200);
  padding: 8px 14px; border-radius: 999px; font-size: .9rem; color: var(--steel-700);
}
.section--ink .areas span, .section--steel .areas span { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: var(--steel-200); }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; text-align: center; }
@media (max-width: 700px){ .stats{ grid-template-columns: repeat(2,1fr); gap: 24px; } }
.stat strong { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3.2rem); color: var(--flame-bright); display: block; line-height: 1; }
.stat span { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--steel-300); }

/* ---------- Two-column media block ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: -1; }
@media (max-width: 860px){ .split{ grid-template-columns: 1fr; } .split.reverse .split-media{ order: 0; } }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.checklist { list-style: none; display: grid; gap: 12px; margin-top: 18px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before {
  content: ""; flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px;
  background: var(--flame); border-radius: 3px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}
.section--steel .checklist li, .section--ink .checklist li { color: var(--steel-200); }

/* ---------- Footer ---------- */
.site-footer { background: var(--steel-900); color: var(--steel-300); padding-block: clamp(44px, 6vw, 72px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid{ grid-template-columns: 1fr; } }
.site-footer h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; color: var(--white); font-size: .95rem; margin-bottom: 16px; }
.site-footer a { color: var(--steel-300); }
.site-footer a:hover { color: var(--flame-bright); text-decoration: none; }
.footer-brand img { height: 64px; margin-bottom: 14px; }
.footer-brand p { font-size: .92rem; color: var(--steel-400); max-width: 34ch; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-bottom {
  margin-top: 44px; border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; font-size: .85rem; color: var(--steel-500);
}

/* ---------- Sticky mobile action bar + floating buttons ---------- */
.floaties { position: fixed; right: 16px; bottom: 84px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.floaty {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: var(--shadow-md); color: #fff; transition: transform .15s;
}
.floaty:hover { transform: scale(1.06); text-decoration: none; }
.floaty svg { width: 28px; height: 28px; fill: currentColor; }
.floaty--wa { background: #25d366; }
.floaty--call { background: var(--flame); color: #1a1206; }

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; grid-template-columns: 1fr 1fr;
  background: var(--ink); border-top: 3px solid var(--flame);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 8px; color: var(--white); font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .92rem;
}
.mobile-bar a:hover { text-decoration: none; }
.mobile-bar a + a { border-left: 1px solid rgba(255,255,255,.12); }
.mobile-bar a.call { color: var(--flame-bright); }
.mobile-bar svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 760px){
  .mobile-bar { display: grid; }
  .floaties { bottom: 78px; }
  body { padding-bottom: 56px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity: 1; transform: none; } }

/* ---------- Skip link & a11y ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--flame); color: #1a1206; padding: 10px 16px; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; transition: top .15s;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--flame); outline-offset: 2px; }

/* ---------- Misc ---------- */
.divider-bevel { height: 4px; background: var(--flame); width: 64px; margin: 18px 0; }
.note-box {
  background: #fff7ed; border: 1px solid #f6c98a; border-left: 4px solid var(--flame);
  padding: 14px 18px; border-radius: var(--radius); font-size: .92rem; color: var(--steel-700);
}
.muted { color: var(--steel-500); }
.text-flame { color: var(--flame-deep); }

/* ---------- Contact page additions ---------- */
.link-strong {
  display: inline-block; margin-top: 6px;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .03em;
  color: var(--flame-deep); font-size: 1.05rem; word-break: break-word;
}
.link-strong:hover { color: var(--ink); }

.hours-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--flame); border-radius: var(--radius);
  padding: 20px 22px;
}
.hours-card h3 { color: var(--white); margin: 0 0 10px; }
.hours-card .hours li { border-bottom-color: rgba(255,255,255,.12); }
.hours-card .hours li span:first-child { color: var(--steel-100); }
.hours-card .hours li span:last-child { color: var(--steel-200); }
.hours-note { margin: 14px 0 0; font-size: .88rem; color: var(--steel-300); }

.map-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
