/* ==========================================================================
   Sky Prince Steel Company — design tokens
   ========================================================================== */

:root{
  /* -- color: navy + rust orange sampled from the logo, WhatsApp green reserved for CTAs only -- */
  --navy:        #0d3060;
  --navy-deep:   #082343;
  --orange:      #c85a1f;
  --orange-text: #a3480f; /* AA-safe on light backgrounds */
  --orange-on-dark: #e2884a; /* AA-safe orange for text on navy backgrounds */
  /* Dark WhatsApp teal for text buttons (AA-safe with white text);
     bright brand green reserved for the icon-only sticky button. */
  --whatsapp:      #075e54;
  --whatsapp-dark: #0a7364;
  --whatsapp-icon:      #25d366;
  --whatsapp-icon-dark: #1ebe5b;

  --ink:   #1b2430;
  --slate: #5c6673;
  --paper: #ffffff;
  --mist:  #f3f6fa;
  --line:  rgba(13,48,96,.12);
  --error: #b3261e;

  --white: #ffffff;

  /* -- hero-only "Molten to Solid" palette (scoped to .hero, not used sitewide) -- */
  --steel-navy:   #0d1b2a;
  --molten-orange: #ff6b1a;
  --molten-gold:   #ffb84d;

  /* -- type -- */
  --f-head: "Space Grotesk", sans-serif;
  --f-body: "Inter", sans-serif;

  /* -- layout -- */
  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 56px);
  --chamfer: 16px; /* one cut corner, echoing bar stock cut at the yard */

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,p,ul{ margin: 0; }
ul{ padding: 0; list-style: none; }
button{ font: inherit; }
.wrap{
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: var(--white);
  padding: 12px 18px;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus{ left: var(--pad); top: 12px; }

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

/* ==========================================================================
   Shared bits
   ========================================================================== */

/* Base .eyebrow ruleset is kept only because the hero's markup still
   carries class="eyebrow" — every property is fully overridden by the
   more specific .hero .eyebrow rule below, so this is otherwise unused. */
.eyebrow{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin: 0 0 16px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: var(--f-body);
  font-size: .95rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%);
  transition: transform .25s var(--ease), background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .3s ease;
}
.btn-lg{ padding: 15px 30px; font-size: 1rem; }
.btn-whatsapp{ background: var(--whatsapp); color: var(--white); box-shadow: 0 8px 20px -10px rgba(7,94,84,.6); }
.btn-whatsapp:hover{ background: var(--whatsapp-dark); transform: translateY(-3px); box-shadow: 0 16px 30px -10px rgba(7,94,84,.65); }
.btn-outline{ border-color: var(--navy); color: var(--navy); }
.btn-outline:hover{ background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-light{ border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline-light:hover{ background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }

.i-wa{ width: 19px; height: 19px; flex: none; fill: currentColor; }

/* ==========================================================================
   Nav
   ========================================================================== */

.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand-logo{ width: 40px; height: 40px; object-fit: contain; }
.brand-word{ display: flex; flex-direction: column; line-height: 1.15; }
.brand-name{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.brand-sub{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-text);
}

.nav-links{ display: flex; gap: 20px; }
.nav-links a{
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transition: right .25s var(--ease);
}
.nav-links a:hover::after{ right: 0; }

/* Overrides .btn-whatsapp's teal here only — the rest of the site's WhatsApp
   CTAs (hero, footer) already use this molten-orange gradient, so the nav's
   was the one still on the old color. Dark navy text, same AA-contrast fix
   as .btn-primary (white fails ~2.8:1 on this gradient, navy holds 6:1+). */
.nav-cta{
  flex: none;
  background: linear-gradient(95deg, var(--molten-orange), #ff8a3d);
  color: var(--steel-navy);
  box-shadow: 0 8px 20px -10px rgba(255,107,26,.5);
}
.nav-cta:hover{
  background: linear-gradient(95deg, #ff8a3d, var(--molten-orange));
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(255,107,26,.55);
}

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-right: -10px; /* box grew for tap-target size; pull back so the icon stays visually aligned to the edge */
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform .3s var(--ease), opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu{
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--pad) 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn{ margin-top: 14px; width: fit-content; border-bottom: none; }
.mobile-menu .btn-whatsapp{
  background: linear-gradient(95deg, var(--molten-orange), #ff8a3d);
  color: var(--steel-navy);
  box-shadow: 0 8px 20px -10px rgba(255,107,26,.5);
}
.nav.menu-open .mobile-menu{ display: flex; }

/* ==========================================================================
   Hero — "Molten to Solid"
   A deliberately distinct visual moment: its own type pair (Poppins +
   Barlow Condensed) and palette (--steel-navy/--molten-orange/--molten-gold),
   scoped entirely to .hero so the rest of the site's chamfer/Space Grotesk
   system is untouched.
   ========================================================================== */

.hero{
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--steel-navy);
}

.hero-photo{
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.webp');
  background-size: cover;
  background-position: center 40%;
}

/* Signature element: molten gradient accent, top-right */
.molten-accent{
  position: absolute;
  top: -15%;
  right: -10%;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--molten-gold) 0%, var(--molten-orange) 55%, transparent 75%);
  opacity: .85;
  pointer-events: none;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(13,27,42,.96) 0%,
    rgba(13,27,42,.88) 30%,
    rgba(13,27,42,.6) 55%,
    rgba(13,27,42,.32) 75%,
    rgba(13,27,42,.22) 100%);
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 180px 64px 0;
}

.hero .eyebrow{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 4px;
  color: var(--molten-gold);
  text-transform: uppercase;
  margin: 0;
}
.hero .dot{
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--molten-orange);
}

/* Lora serif is scoped to this one headline only — an editorial contrast
   against the bold industrial sans (Poppins/Barlow) used everywhere else. */
.hero-headline{
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 74px);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--white);
  margin: 24px 0;
}
.accent-text{
  font-style: italic;
  background: linear-gradient(95deg, var(--molten-gold), var(--molten-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext{
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  max-width: 560px;
}

.cta-row{
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn-primary, .btn-secondary{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 34px;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%);
}
.btn-primary{
  background: linear-gradient(95deg, var(--molten-orange), var(--molten-gold));
  /* white text on this gradient measures ~1.7–2.8:1 contrast (fails AA) —
     dark navy text holds 6:1+ across the whole orange-to-gold range */
  color: var(--steel-navy);
  box-shadow: 0 12px 30px rgba(255,107,26,.35);
  border: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255,107,26,.45); }
.btn-primary .i-wa{ width: 19px; height: 19px; }
.btn-secondary{
  border: 1.5px solid rgba(255,255,255,.5);
  color: var(--white);
  background: rgba(255,255,255,.06);
  transition: background-color .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.btn-secondary:hover{ background: rgba(255,255,255,.14); border-color: var(--white); transform: translateY(-2px); }

.reveal-up{
  opacity: 0;
  transform: translateY(22px);
  animation: rise .7s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes rise{ to{ opacity: 1; transform: translateY(0); } }

.stats-row{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 48px 64px 56px;
}
.stat-card{
  flex: 1 1 200px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 22px 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.stat-value{
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.5px;
}
.stat-label{
  margin-top: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
}

/* ==========================================================================
   Middle sections — "Molten to Solid"
   Extends the hero/footer system (Poppins + Barlow Condensed, steel-navy/
   molten-orange/molten-gold) across Story through Contact. Scoped to each
   *-section class so the Follow section and its shared .eyebrow/.rule/
   .section-title base classes are untouched.

   Deviation from the literal brief: --molten-orange only measures ~2.85:1
   against white/--steel-grey-bg — well under the 4.5:1 (text) and 3:1 (large
   text/UI borders) AA minimums. On the light sections below it's swapped for
   the existing --orange-text token (6:1+, already used sitewide for exactly
   this). The two dark sections (Gallery, Testimonials) keep the vivid
   molten-orange/molten-gold as specified — contrast there is 6:1+.
   ========================================================================== */

.section-eyebrow{
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--orange-text);
  text-transform: uppercase;
  margin: 0;
}
.section-eyebrow .dot{
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--molten-orange);
  margin-right: 12px;
}
.section-headline{
  text-align: center;
  margin: 18px 0 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 46px);
  color: var(--steel-navy);
  letter-spacing: -1px;
}
.section-headline .accent{ color: var(--orange-text); }

.gallery-section .section-eyebrow,
.testimonials-section .section-eyebrow{ color: var(--molten-gold); }
.gallery-section .section-headline,
.testimonials-section .section-headline{ color: var(--white); }
.gallery-section .section-headline .accent,
.testimonials-section .section-headline .accent{
  background: linear-gradient(95deg, var(--molten-orange), var(--molten-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ==========================================================================
   Our Story
   ========================================================================== */

.story-section{
  background: var(--white);
  border-top: 1px solid var(--border-light);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 100px) clamp(24px, 6vw, 64px) clamp(56px, 8vw, 90px);
}

.story-sub{
  text-align: center;
  margin-top: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-grey);
}
.story-body{
  max-width: 820px;
  margin: 22px auto 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-grey);
}

.feature-cards{ display: flex; justify-content: center; gap: 24px; margin-top: 56px; flex-wrap: wrap; }
.feature-card{
  width: 360px;
  background: var(--steel-grey-bg);
  border-radius: 14px;
  padding: 34px 30px;
  border-top: 4px solid var(--molten-orange);
}
.feature-ic{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,107,26,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-ic svg{ width: 26px; height: 26px; fill: none; stroke: var(--orange-text); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-title{ font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 19px; color: var(--steel-navy); margin-bottom: 10px; }
.feature-desc{ font-family: 'Poppins', sans-serif; font-size: 14.5px; line-height: 1.6; color: var(--text-grey-light); }

/* Certification medallions — self-contained inline SVG seals (no dependency
   on images/badge-iso.svg / badge-son.svg, left in the project unused in
   case they're wanted elsewhere) instead of the icon-in-a-circle badge. */
.cert-medallions{ display: flex; justify-content: center; gap: 40px; margin-top: 60px; flex-wrap: wrap; }
.medallion{ width: 150px; text-align: center; }
.medallion-svg{ width: 110px; height: 130px; }
.medallion-title{ margin-top: 14px; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 15px; color: var(--steel-navy); }
.medallion-sub{ margin-top: 2px; font-family: 'Poppins', sans-serif; font-size: 11.5px; color: var(--text-grey-light); line-height: 1.4; padding: 0 4px; }

/* Pull-quote as a riveted steel plate — dark plate on a white section, so
   the vivid molten gradient/gold reads fine here (6:1+), unlike the section
   headline accent elsewhere on this page. */
.pull-quote{
  position: relative;
  max-width: 780px;
  margin: 64px auto 0;
  background: linear-gradient(155deg, var(--steel-navy) 0%, #16283b 100%);
  border-radius: 16px;
  padding: 50px 60px 42px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(13,27,42,.28);
}
.plate-glow{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 400px; height: 220px;
  background: radial-gradient(ellipse at center, rgba(255,184,77,.18) 0%, transparent 70%);
  pointer-events: none;
}
.rivet{
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #6b7580, #2a3542 70%);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.3), 0 1px 2px rgba(0,0,0,.4);
}
.r-tl{ top: 20px; left: 20px; }
.r-tr{ top: 20px; right: 20px; }
.r-bl{ bottom: 20px; left: 20px; }
.r-br{ bottom: 20px; right: 20px; }

.plate-tag{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: 0 0 26px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--molten-gold);
  text-transform: uppercase;
  border: 1px solid rgba(255,184,77,.4);
  border-radius: 20px;
  padding: 6px 16px;
}
.plate-tag .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--molten-orange); margin-right: 10px; }

.quote-text{
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.45;
  color: var(--white);
  letter-spacing: -.3px;
}
.quote-text .accent{
  background: linear-gradient(95deg, var(--molten-orange), var(--molten-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.plate-footer{ position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; margin-top: 28px; }
.plate-line{ width: 36px; height: 2px; background: var(--molten-orange); margin-right: 14px; }
.plate-footer-txt{
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}

@media (max-width: 700px){
  .pull-quote{ padding: 40px 28px 34px; margin: 48px 20px 0; }
  .quote-text{ font-size: 20px; }
}

/* ==========================================================================
   Products
   ========================================================================== */

.products-section{ background: var(--steel-grey-bg); padding: clamp(64px, 9vw, 90px) clamp(24px, 6vw, 64px); }
.product-grid{ max-width: 1400px; margin: 56px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card{
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(13,27,42,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 40px rgba(13,27,42,.14); }
.product-photo{ position: relative; width: 100%; height: 230px; overflow: hidden; }
.product-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.product-card:hover .product-photo img{ transform: scale(1.06); }
.product-tag{
  position: absolute;
  top: 16px;
  left: 0;
  background: var(--steel-navy);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px 8px 18px;
}
.product-body{ padding: 24px 24px 28px; }
.product-title{ font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 19px; color: var(--steel-navy); margin-bottom: 8px; }
.product-desc{ font-family: 'Poppins', sans-serif; font-size: 14px; line-height: 1.55; color: var(--text-grey-light); }

/* ==========================================================================
   Why us
   ========================================================================== */

.whyus-section{ background: var(--white); padding: clamp(64px, 9vw, 90px) clamp(24px, 6vw, 64px); }
.whyus-row{ max-width: 1200px; margin: 56px auto 0; display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; text-align: center; }
.whyus-item{ width: 320px; }
.whyus-ic{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--steel-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.whyus-ic svg{ width: 28px; height: 28px; fill: none; stroke: var(--white); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.whyus-title{ font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 19px; color: var(--steel-navy); margin-bottom: 10px; }
.whyus-desc{ font-family: 'Poppins', sans-serif; font-size: 14.5px; line-height: 1.6; color: var(--text-grey-light); }

/* ==========================================================================
   Gallery — dark navy, carousel kept (auto-scroll/drag/loop JS targets these
   ids/classes exactly — see js/main.js), restyled to match the brief's intent
   instead of swapped for its static grid.
   ========================================================================== */

.gallery-section{ position: relative; background: var(--steel-navy); padding: clamp(64px, 9vw, 90px) clamp(24px, 6vw, 64px); overflow: hidden; }
.gallery-glow{
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,107,26,.15) 0%, transparent 70%);
  pointer-events: none;
}
.gallery-sub{ text-align: center; margin-top: 14px; font-family: 'Poppins', sans-serif; color: rgba(255,255,255,.6); font-size: 16px; }

.gallery-carousel{ position: relative; z-index: 1; max-width: 1400px; margin: 48px auto 0; }

.gallery-track{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 8px 12px;
  margin: -8px -8px -12px;
  cursor: grab;
  user-select: none;
}
.gallery-track::-webkit-scrollbar{ display: none; }
.gallery-track.is-dragging{ cursor: grabbing; scroll-snap-type: none; }

.gallery-item{
  flex: 0 0 auto;
  width: min(280px, 68vw);
  aspect-ratio: 1/1;
  margin: 0;
  scroll-snap-align: center;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-item:hover,
.gallery-item:focus-within{
  transform: scale(1.05);
  box-shadow: 0 0 0 2px var(--molten-orange), 0 20px 40px -14px rgba(0,0,0,.5);
  z-index: 2;
}
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
  -webkit-user-drag: none;
  pointer-events: none;
}
.gallery-item:hover img{ transform: scale(1.08); }

.gallery-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease;
}
.gallery-arrow svg{ width: 20px; height: 20px; }
.gallery-arrow:hover{ background: var(--molten-orange); border-color: var(--molten-orange); color: var(--steel-navy); }
.gallery-arrow:disabled{ opacity: .35; cursor: default; pointer-events: none; }
.gallery-prev{ left: -8px; }
.gallery-next{ right: -8px; }

@media (max-width: 900px){
  .gallery-glow{ width: 480px; height: 300px; }
}

/* ==========================================================================
   Testimonials — dark, one shade lighter than the gallery for separation
   ========================================================================== */

.testimonials-section{ background: #101f30; padding: clamp(64px, 9vw, 90px) clamp(24px, 6vw, 64px); }
.testimonial-grid{
  max-width: 1300px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card{
  margin: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 32px;
}
.testimonial-mark{ display: block; font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 42px; color: var(--molten-gold); line-height: .5; margin-bottom: 12px; }
.testimonial-text{ font-family: 'Poppins', sans-serif; font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,.82); font-style: italic; margin-bottom: 20px; }
.testimonial-card footer{ display: flex; flex-direction: column; line-height: 1.4; }
.testimonial-author{ font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--white); }
.testimonial-role{ font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 1px; color: var(--molten-orange); text-transform: uppercase; margin-top: 2px; }

@media (max-width: 700px){
  .testimonial-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ — native <details>/<summary>, no JS, restyled in place
   ========================================================================== */

.faq-section{ background: var(--white); padding: clamp(64px, 9vw, 90px) clamp(24px, 6vw, 64px); }

.faq-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 56px auto 0;
}
.faq-item{
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
}
.faq-item summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--steel-navy);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary:hover{ color: var(--orange-text); }
.faq-item[open] summary{ color: var(--orange-text); }
.faq-chevron{
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--orange-text);
  transition: transform .25s var(--ease);
}
.faq-item[open] .faq-chevron{ transform: rotate(180deg); }
.faq-item p{
  margin: 0;
  padding: 0 26px 22px;
  font-family: 'Poppins', sans-serif;
  color: var(--text-grey-light);
  font-size: 15px;
  line-height: 1.6;
  max-width: 68ch;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-section{ background: var(--steel-grey-bg); padding: 64px 90px; }

/* --molten-orange fails AA as text on this light bg (~2.85:1, same issue
   noted throughout this file) — swapped for --orange-text here too. */
.contact-eyebrow{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--orange-text);
  text-transform: uppercase;
}
.contact-eyebrow .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--molten-orange); margin-right: 12px; }
.contact-headline{
  text-align: center;
  margin: 16px 0 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--steel-navy);
  letter-spacing: -1px;
}
.contact-headline .accent{ color: var(--orange-text); }
.contact-sub{
  text-align: center;
  margin: 14px auto 0;
  max-width: 640px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-grey);
}

.contact-layout{
  max-width: 1300px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 28px;
}

/* Info card — dark navy plate, same family as the Story pull-quote. Its own
   .info-tag/.info-title replace the shared .section-eyebrow/.section-headline
   for this section, so molten-orange/molten-gold are used directly here
   (no --orange-text swap needed — this card is dark, not a light section). */
.contact-info-card{
  position: relative;
  background: linear-gradient(155deg, var(--steel-navy) 0%, #16283b 100%);
  border-radius: 18px;
  padding: 40px 40px 0;
  box-shadow: 0 24px 50px rgba(13,27,42,.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.info-glow{
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle at 35% 35%, rgba(255,184,77,.22) 0%, transparent 70%);
  pointer-events: none;
}
.info-tag{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--molten-gold);
  text-transform: uppercase;
}
.info-tag .dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--molten-orange); margin-right: 10px; }
.info-title{ position: relative; z-index: 1; margin: 14px 0 0; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 24px; color: var(--white); line-height: 1.3; }
.info-desc{ position: relative; z-index: 1; margin: 12px 0 0; font-family: 'Poppins', sans-serif; font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.68); }

.info-item{ position: relative; z-index: 1; display: flex; align-items: flex-start; margin-top: 22px; }
.info-ic{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,107,26,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}
.info-ic svg{ width: 18px; height: 18px; fill: none; stroke: var(--molten-gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.info-item-title{ font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14.5px; color: var(--white); }
.info-item-sub{ font-family: 'Poppins', sans-serif; font-size: 13px; color: rgba(255,255,255,.6); margin-top: 2px; line-height: 1.5; }

/* Live map, inset within the card with a designed pin-marker treatment
   instead of the default embed chrome. Overlay/pin are pointer-events:none
   so the iframe underneath stays pannable/zoomable. */
.map-wrap{
  position: relative;
  z-index: 1;
  margin-top: 24px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
}
.map-photo{ width: 100%; height: 100%; border: 0; display: block; }
.map-overlay{
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,.35);
  pointer-events: none;
}
.map-pin{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--molten-orange), var(--molten-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  pointer-events: none;
}

.info-btns{ position: relative; z-index: 1; display: flex; gap: 12px; margin-top: auto; padding-top: 24px; padding-bottom: 32px; flex-wrap: wrap; }

/* Contact form — signature card. --molten-orange again swapped for
   --orange-text on the field focus border (2.85:1 raw, under the 3:1 UI
   -component minimum on this near-white card); the top-rule gradient and
   .trust-txt hex are likewise adjusted — see the note above .section-eyebrow. */
.form-card{
  position: relative;
  background: var(--white);
  border-radius: 18px;
  padding: 40px 40px 36px;
  box-shadow: 0 24px 50px rgba(13,27,42,.10);
  overflow: hidden;
}
.form-top-rule{
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--molten-orange), var(--molten-gold), var(--molten-orange));
}
.form-header{ display: flex; align-items: center; margin-bottom: 6px; }
.form-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,107,26,.1);
  color: var(--orange-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}
.form-icon svg{ width: 20px; height: 20px; }
.form-title{ margin: 0; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 19px; color: var(--steel-navy); }
.form-sub{ margin: 2px 0 0; font-family: 'Poppins', sans-serif; font-size: 13.5px; color: var(--text-grey-light); }
.form-desc{ margin: 14px 0 0; font-family: 'Poppins', sans-serif; font-size: 13.5px; line-height: 1.55; color: var(--text-grey-light); }

.contact-form{ display: flex; flex-direction: column; }
.form-honeypot{ display: none; }

.field{ margin-top: 18px; }
.field label{
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--steel-navy);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.field-input-wrap{ position: relative; }
.field-icon{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--steel-navy);
  opacity: .45;
  pointer-events: none;
}
.field input, .field textarea{
  width: 100%;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 13px 14px 13px 42px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: var(--steel-navy);
  background: #fafbfc;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.field textarea{ padding-left: 14px; padding-top: 12px; resize: none; height: 74px; }
.field input::placeholder, .field textarea::placeholder{ color: var(--text-grey-light); }
.field input:focus, .field textarea:focus{
  outline: none;
  border-color: var(--orange-text);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,107,26,.08);
}

.submit-btn-wrap{ margin-top: 22px; }
.submit-btn-wrap .contact-form-submit{ width: 100%; }

.trust-row{ display: flex; align-items: center; justify-content: center; margin-top: 22px; }
.trust-row svg{ flex: none; color: var(--text-grey-light); }
.trust-txt{ font-size: 12.5px; color: var(--text-grey-light); margin-left: 8px; }

.form-status{ margin-top: 14px; font-size: .88rem; color: var(--error); font-family: 'Poppins', sans-serif; }
.form-success{ margin-top: 14px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--steel-navy); }

@media (max-width: 900px){
  .contact-layout{ grid-template-columns: 1fr; }
  .contact-section{ padding: 44px 20px; }
  .contact-headline{ font-size: 28px; }
  .info-btns{ flex-direction: column; }
  .info-btns .btn{ width: 100%; text-align: center; }
}

/* ==========================================================================
   Follow — bright "Stay Connected" section (nav-linked #follow), distinct
   from the footer, which carries no social icons of its own. Bright/light
   on purpose to restore the alternating rhythm between grey Contact and
   dark Footer. --molten-orange/#ff8a3d swapped for --orange-text on text
   here since this is now a light background (same AA-contrast rule as
   every other light section on the page).
   ========================================================================== */

.follow-section{
  position: relative;
  background: var(--steel-grey-bg);
  text-align: center;
  padding: 90px 24px;
  overflow: hidden;
}
.follow-section::before{
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,107,26,.10) 0%, transparent 70%);
  pointer-events: none;
}

.follow-eyebrow{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--orange-text);
  text-transform: uppercase;
}
.follow-eyebrow .dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--molten-orange); margin-right: 10px; }

.follow-headline{
  position: relative;
  z-index: 1;
  margin: 10px 0 36px;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: var(--steel-navy);
  letter-spacing: -.5px;
}
.follow-headline .accent{ color: var(--orange-text); }

.follow-row{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.follow-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 20px rgba(13,27,42,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-navy);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .15s ease, color .2s ease;
}
.follow-icon:hover, .follow-icon:focus-visible{
  background: linear-gradient(135deg, var(--molten-orange), var(--molten-gold));
  border-color: transparent;
  color: var(--steel-navy);
  box-shadow: 0 10px 24px rgba(255,107,26,.35);
  transform: translateY(-2px);
}
.follow-icon svg{ width: 22px; height: 22px; }

/* ==========================================================================
   Utilities
   ========================================================================== */

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Footer — "Molten to Solid"
   Matches the hero's palette/gradient language for top-to-bottom cohesion.
   Note: only 3 columns (Brand / Explore / Visit The Yard) — the newsletter
   signup that would have been a 4th column was removed sitewide.
   ========================================================================== */

.site-footer{
  position: relative;
  background: #0a1622;
  overflow: hidden;
  padding-bottom: 32px;
}

.footer-top-rule{
  height: 5px;
  background: linear-gradient(90deg, var(--molten-orange), var(--molten-gold), var(--molten-orange));
}

.footer-glow{
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,107,26,.18) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cols{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 64px 40px;
}

.footer-logo{
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
}
.footer-logo span{ color: #ff8a3d; }

.footer-desc{
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
  max-width: 320px;
}

.social-row{ margin-top: 24px; display: flex; gap: 12px; }
.footer-social-icon{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background-color .2s ease, border-color .2s ease;
}
.footer-social-icon:hover{
  background: rgba(255,107,26,.2);
  border-color: var(--molten-orange);
}
.footer-social-icon .social-icon{ width: 20px; height: 20px; }

.footer-col-title{
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2.5px;
  color: var(--molten-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-col-title::after{
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--molten-orange);
  margin-top: 12px;
  border-radius: 2px;
}

.footer-link{
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  margin-bottom: 13px;
  transition: color .2s ease;
}
.footer-link:hover{ color: #ffb84d; }

.footer-contact-item{ display: flex; align-items: flex-start; margin-bottom: 18px; }
a.footer-contact-item{ transition: opacity .2s ease; }
a.footer-contact-item:hover{ opacity: .8; }
.footer-ic{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,107,26,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}
.footer-ic svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--molten-gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-txt{ font-size: 14.5px; color: rgba(255,255,255,.75); line-height: 1.5; padding-top: 6px; }
.footer-txt b{ color: #fff; display: block; font-size: 15px; margin-bottom: 2px; }

.footer-whatsapp-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  background: linear-gradient(95deg, var(--molten-orange), #ff8a3d);
  /* same fix as .btn-primary: white text on this gradient fails AA contrast */
  color: var(--steel-navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%);
}
.footer-whatsapp-btn .i-wa{ width: 18px; height: 18px; }

.footer-divider{
  max-width: 1400px;
  margin: 8px auto 0;
  height: 1px;
  background: rgba(255,255,255,.08);
}
.footer-bottom-bar{
  max-width: 1400px;
  margin: 24px auto 0;
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  /* .45 measured ~4.49:1 against #0a1622, just under AA's 4.5:1 minimum */
  color: rgba(255,255,255,.5);
}
.footer-bottom-bar a{ color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom-bar a:hover{ color: #ffb84d; }

/* ==========================================================================
   Legal pages (privacy policy)
   ========================================================================== */

.legal{ background: var(--paper); padding: clamp(56px, 8vw, 96px) 0 clamp(80px, 10vw, 120px); }
.legal-wrap{ max-width: 760px; }

.legal-updated{
  color: var(--slate);
  font-family: var(--f-body);
  font-size: .92rem;
  margin: 14px 0 44px;
}

.legal-body p{
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-body h2{
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 40px 0 12px;
}
.legal-body h2:first-child{ margin-top: 0; }
.legal-body a{
  color: var(--orange-text);
  border-bottom: 1px solid currentColor;
}
.legal-body a:hover{ color: var(--orange); }

/* ==========================================================================
   Sticky WhatsApp button
   ========================================================================== */

.whatsapp-fab{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp-icon);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.45);
  transition: transform .25s var(--ease), background-color .2s ease;
  animation: fab-pop .5s var(--ease) 1s backwards;
}
.whatsapp-fab:hover{ background: var(--whatsapp-icon-dark); transform: scale(1.06); }
.whatsapp-fab .i-wa{ width: 28px; height: 28px; }
@keyframes fab-pop{
  from{ opacity: 0; transform: scale(.6); }
  to{ opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px){
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* nav collapses a bit earlier than other breakpoints — 7 links + CTA need the room */
@media (max-width: 900px){
  .nav-links, .nav-cta{ display: none; }
  .nav-toggle{ display: flex; }
  .footer-cols{
    grid-template-columns: 1fr 1fr;
    padding: 56px 24px 24px;
    gap: 36px 24px;
  }
  .footer-brand{ grid-column: 1 / -1; }
  .footer-bottom-bar{ padding: 0 24px; }
}

@media (max-width: 560px){
  .footer-cols{ grid-template-columns: 1fr; }
  .footer-bottom-bar{ flex-direction: column; text-align: center; }
}

@media (max-width: 760px){
  .hero-content{ padding: 96px 20px 0; max-width: 100%; }
  .hero .eyebrow{ font-size: 13px; letter-spacing: 2.5px; }
  .hero-headline{ font-size: clamp(30px, 9vw, 40px); line-height: 1.15; margin: 14px 0; }
  .hero-subtext{ font-size: 15px; max-width: 100%; }
  .cta-row{ flex-direction: column; gap: 12px; margin-top: 32px; }
  .btn-primary, .btn-secondary{ width: 100%; text-align: center; }
  .stats-row{ gap: 12px; padding: 24px 20px 32px; }
  .stat-card{ flex: 0 0 calc(50% - 6px); padding: 16px; }
  .stat-value{ font-size: 22px; }
  .stat-label{ font-size: 12px; }
  .molten-accent{ width: 70%; opacity: .5; top: -10%; right: -15%; }
  .story-section{ padding-left: 24px; padding-right: 24px; }
  .story-body{ padding: 0 4px; }
  .feature-cards{ flex-direction: column; align-items: center; gap: 16px; }
  .feature-card{ width: 100%; max-width: 400px; }
  .pull-quote{ margin: 40px 16px 0; padding: 36px 24px 30px; }
  .quote-text{ font-size: 19px; }
  .cert-medallions{ gap: 28px; margin-top: 40px; }
  .medallion{ width: 130px; }
  .medallion-svg{ width: 96px; height: 114px; }
  .products-section, .whyus-section, .gallery-section, .testimonials-section, .faq-section, .contact-section{ padding-left: 24px; padding-right: 24px; }
  .product-grid{ grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .whyus-row{ gap: 36px; }
  .whyus-item{ width: 100%; max-width: 340px; }
  .gallery-track{ gap: 14px; }
  .testimonial-card{ padding: 26px; }
  .faq-item summary{ padding: 18px 20px; font-size: 15.5px; }
  .faq-item p{ padding: 0 20px 18px; font-size: 14.5px; }
  .contact-info-card{ padding: 32px 24px 0; }
  .form-card{ padding: 32px 24px 28px; }
  .info-title{ font-size: 22px; }
  .follow-section{ padding: 60px 20px; }
  .follow-headline{ font-size: 26px; }
  .follow-row{ gap: 12px; }
  .follow-icon{ width: 50px; height: 50px; }
  .follow-icon svg{ width: 20px; height: 20px; }
  .whatsapp-fab{ right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal-up, .reveal, .whatsapp-fab{ animation: none !important; transition: none !important; opacity: 1; transform: none; }
  .product-card, .product-photo img, .btn{ transition: none; }
  .product-card:hover{ transform: none; }
  .product-card:hover .product-photo img{ transform: none; }
  .gallery-track{ scroll-behavior: auto; }
  .gallery-item, .gallery-item img{ transition: none; }
  .gallery-item:hover, .gallery-item:focus-within{ transform: none; }
  .faq-chevron{ transition: none; }
  .btn-primary, .btn-secondary{ transition: none; }
  .btn-primary:hover, .btn-secondary:hover{ transform: none; }
}
