/* ==========================================================================
   PRODEB BREWERY — Shared Stylesheet
   Design tokens: copper/gold on charcoal & warm cream, slab display + sans body
   ========================================================================== */

:root{
  /* Color tokens */
  --ink:        #14171B;   /* near-black charcoal */
  --ink-soft:   #262B31;
  --copper:     #B9713D;   /* primary accent — copper kettle */
  --copper-dark:#8F5327;
  --gold:       #D9A441;   /* secondary accent — logo highlight */
  --steel:      #5C6670;   /* cool steel gray */
  --cream:      #F6F3EC;   /* warm light background */
  --cream-deep: #ECE5D6;
  --white:      #FFFFFF;
  --line:       rgba(20,23,27,0.12);
  --line-dark:  rgba(246,243,236,0.14);

  /* Type */
  --f-display: "Zilla Slab", Georgia, serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "IBM Plex Mono", "Courier New", monospace;

  /* Layout */
  --maxw: 1200px;
  --radius: 6px;
  --shadow: 0 10px 30px -12px rgba(20,23,27,0.35);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin:0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,h4{ font-family: var(--f-display); font-weight: 600; line-height: 1.12; margin:0 0 .5em; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }
p{ margin: 0 0 1em; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
.container{ max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow{
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  display:flex; align-items:center; gap:10px;
  margin-bottom: 14px;
}
.eyebrow::before{ content:""; width:22px; height:2px; background: var(--copper); display:inline-block; }
.section{ padding: clamp(56px, 8vw, 96px) 0; }
.section--tight{ padding: clamp(40px, 6vw, 64px) 0; }
.section--dark{ background: var(--ink); color: var(--cream); }
.section--deep{ background: var(--cream-deep); }
.section-head{ max-width: 640px; margin-bottom: 56px; }
.section-head p{ color: var(--steel); font-size: 1.05rem; }
.section--dark .section-head p{ color: rgba(246,243,236,0.7); }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: linear-gradient(135deg, var(--gold), var(--copper)); color: var(--ink); }
.btn-primary:hover{ box-shadow: 0 10px 24px -8px rgba(185,113,61,.55); }
.btn-outline{ border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover{ border-color: var(--copper); color: var(--copper); }
.btn-ghost-dark{ border-color: var(--line-dark); color: var(--cream); background: transparent; }
.btn-ghost-dark:hover{ border-color: var(--gold); color: var(--gold); }
.btn-block{ width:100%; }
.btn-sm{ padding: 10px 18px; font-size: .85rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position: sticky; top:0; z-index: 500;
  background: rgba(246,243,236,0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  max-width: var(--maxw); margin:0 auto; padding: 12px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.nav__logo img{ height: 46px; width:auto; }
.nav__links{ display:flex; align-items:center; gap:32px; }
.nav__links a{
  font-size: .92rem; font-weight: 600; color: var(--ink-soft);
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav__links a:hover, .nav__links a.is-active{ color: var(--copper); border-color: var(--copper); }
.nav__cta{ display:flex; align-items:center; gap:14px; }
.nav__toggle{
  display:none; background:none; border:0; width:40px; height:40px;
  flex-direction:column; justify-content:center; align-items:center; gap:5px;
}
.nav__toggle span{ width:22px; height:2px; background: var(--ink); display:block; }

@media (max-width: 900px){
  .nav__links{
    position: absolute; top: 100%; left: 0; right: 0;
    height: calc(100vh - 70px); background: var(--cream);
    flex-direction:column; align-items:stretch; padding: 28px 24px 60px;
    gap: 6px; transform: translateX(100%); transition: transform .3s var(--ease);
    overflow-y:auto;
  }
  .nav__links li { width: 100%; display: block; }
  .nav__links a{ width:100%; padding: 14px 0; border-bottom: 1px solid var(--line); display: block; }
  .nav__links.is-open{ transform: translateX(0); }
  .nav__toggle{ display:flex; }
  .nav__cta .btn span.long{ display:inline; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position: relative;
  background: radial-gradient(120% 140% at 85% 0%, #22201c 0%, var(--ink) 55%, #0f1114 100%);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(64px, 10vw, 88px) 0 clamp(72px, 12vw, 100px);
}
.hero__grid{
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items:center;
}
.hero__kicker{
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing:.16em; text-transform:uppercase;
  color: var(--gold); margin-bottom:18px; display:flex; align-items:center; gap:10px;
}
.hero__kicker::before{ content:""; width:22px; height:2px; background: var(--gold); }
.hero h1{
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  color: var(--white);
}
.hero h1 em{ font-style: normal; color: var(--gold); }
.hero__sub{ font-size: 1.12rem; color: rgba(246,243,236,.72); max-width: 540px; margin-bottom: 32px; }
.hero__actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom: 44px; }
.hero__stats{ display:flex; gap: 36px; flex-wrap:wrap; }
.hero__stat b{ font-family: var(--f-display); font-size: 1.9rem; color: var(--gold); display:block; }
.hero__stat span{ font-size:.82rem; color: rgba(246,243,236,.6); font-family: var(--f-mono); letter-spacing:.03em; }

.hero__art{ position:relative; }
.vessel-plate{
  position:relative; border:1px solid var(--line-dark); border-radius: 10px;
  padding: 26px; background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}
.vessel-plate svg{ width:100%; height:auto; }
.rivet-row{ display:flex; justify-content:space-between; margin-top:18px; }
.rivet-row span{ width:6px; height:6px; border-radius:50%; background: var(--gold); opacity:.5; }

@keyframes steam{
  0%{ transform: translateY(0) scaleY(1); opacity:.55; }
  100%{ transform: translateY(-26px) scaleY(1.3); opacity:0; }
}
.steam{ animation: steam 3.2s ease-in-out infinite; transform-origin: bottom center; }
.steam.d2{ animation-delay: .8s; }
.steam.d3{ animation-delay: 1.6s; }
.steam.d4{ animation-delay: 2.2s; }

@keyframes glowPulse{
  0%,100%{ opacity:.5; transform: scale(1); }
  50%{ opacity:.85; transform: scale(1.08); }
}
.glow-pulse{ animation: glowPulse 4.5s ease-in-out infinite; transform-origin: center; }

@keyframes gaugeSweep{
  0%,100%{ transform: rotate(-28deg); }
  50%{ transform: rotate(28deg); }
}
.gauge-needle{ transform-origin: 109px 250px; animation: gaugeSweep 3.6s ease-in-out infinite; }

@keyframes liquidRise{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
.liquid-rise{ animation: liquidRise 3.8s ease-in-out infinite; }
.liquid-rise.liquid-slow{ animation-duration: 5.2s; animation-delay: .4s; }

@keyframes bubbleRise{
  0%{ transform: translateY(0); opacity:.7; }
  85%{ opacity:.4; }
  100%{ transform: translateY(-90px); opacity:0; }
}
.bubble{ animation: bubbleRise 2.6s ease-in infinite; }
.bubble.b2{ animation-delay: .6s; animation-duration: 2.2s; }
.bubble.b3{ animation-delay: 1.1s; animation-duration: 3s; }
.bubble.b4{ animation-delay: 1.7s; animation-duration: 2.4s; }

@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__art{ order:-1; max-width: 420px; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about__grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap:56px; align-items:flex-start; }
.about__figure{
  border-radius: var(--radius); overflow:hidden; position:relative;
  background: linear-gradient(160deg, var(--copper), var(--copper-dark));
  aspect-ratio: 4/5;
}
.about__figure svg{ width:100%; height:100%; }
.about__copy p{ font-size: 1.05rem; color: var(--ink-soft); }
.about__facts{ display:grid; grid-template-columns: repeat(2,1fr); gap:18px; margin-top:28px; }
.fact{
  border:1px solid var(--line); border-radius: var(--radius); padding: 16px 18px;
  background: var(--white);
}
.fact b{ font-family:var(--f-mono); color: var(--copper); font-size:.78rem; letter-spacing:.05em; text-transform:uppercase; display:block; margin-bottom:6px; }
.fact span{ font-size:.95rem; color: var(--ink-soft); }
@media (max-width: 860px){ .about__grid{ grid-template-columns:1fr; gap:36px; } .about__figure{ aspect-ratio: 16/9; } }

/* ==========================================================================
   USP — spec plates
   ========================================================================== */
.usp-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap:20px; }
.usp-card{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; position:relative; transition: transform .25s var(--ease), box-shadow .25s;
}
.usp-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--copper); }
.usp-card .num{
  font-family: var(--f-mono); font-size:.75rem; color: var(--copper);
  border:1px solid var(--line); border-radius: 20px; padding:3px 10px; display:inline-block; margin-bottom:16px;
}
.usp-card h4{ font-size: 1.05rem; margin-bottom:8px; }
.usp-card p{ font-size:.9rem; color: var(--steel); margin:0; }
@media (max-width: 1080px){ .usp-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 680px){ .usp-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px){ .usp-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   CATEGORY SPLIT
   ========================================================================== */
.category-split{ display:grid; grid-template-columns: 1fr 1fr; gap:24px; }
.cat-card{
  position:relative; border-radius: 10px; overflow:hidden; min-height: 420px;
  display:flex; flex-direction:column; justify-content:flex-end; padding: 36px;
  color: var(--cream); isolation:isolate;
}
.cat-card__media{
  position:absolute; inset:0; z-index:-2;
  transition: transform .7s var(--ease);
  transform-origin: center;
  will-change: transform;
}
.cat-card__media svg{ width:100%; height:100%; display:block; }
.cat-card:hover .cat-card__media{ transform: scale(1.12); }
.cat-card__overlay{
  position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, rgba(15,17,20,.15) 0%, rgba(15,17,20,.55) 55%, rgba(15,17,20,.92) 100%);
  transition: background .4s;
}
.cat-card:hover .cat-card__overlay{ background: linear-gradient(180deg, rgba(15,17,20,.1) 0%, rgba(15,17,20,.5) 50%, rgba(15,17,20,.9) 100%); }
.cat-card .tag{ font-family: var(--f-mono); font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; color: var(--gold); margin-bottom:12px; }
.cat-card h3{ color: var(--white); font-size:1.8rem; margin-bottom:10px; }
.cat-card p{ color: rgba(246,243,236,.78); font-size:.95rem; max-width:34ch; }
.cat-card .cat-link{
  margin-top:20px; display:inline-flex; align-items:center; gap:8px; font-weight:700; color: var(--gold);
  font-size:.92rem;
}
.cat-card .cat-link .arrow{ transition: transform .25s var(--ease); }
.cat-card:hover .cat-link .arrow{ transform: translateX(6px); }
@media (max-width: 760px){ .category-split{ grid-template-columns:1fr; } }
@media (prefers-reduced-motion: reduce){ .cat-card:hover .cat-card__media{ transform:none; } }

/* ==========================================================================
   CLIENTS
   ========================================================================== */
.marquee{ overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track{ display:flex; gap:56px; width:max-content; animation: scroll 34s linear infinite; align-items: center; }
.marquee:hover .marquee__track{ animation-play-state: paused; }
.marquee__track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}
.marquee__track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ==========================================================================
   ACHIEVEMENTS
   ========================================================================== */
.stat-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:1px; background: var(--line-dark); border:1px solid var(--line-dark); border-radius: 10px; overflow:hidden; }
.stat-cell{ background: var(--ink); padding: 34px 24px; text-align:center; }
.stat-cell b{ font-family: var(--f-display); font-size: 2.4rem; color: var(--gold); display:block; }
.stat-cell span{ font-family: var(--f-mono); font-size:.78rem; letter-spacing:.04em; color: rgba(246,243,236,.62); }
@media (max-width: 760px){ .stat-grid{ grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   PRODUCT LIST (brewery/distillery pages)
   ========================================================================== */
.product{
  display:grid; grid-template-columns: .8fr 1.2fr; gap:40px; align-items:center;
  padding: 48px 0; border-bottom: 1px solid var(--line);
}
.product:last-child{ border-bottom:0; }
.product:nth-child(even){ direction: rtl; }
.product:nth-child(even) > *{ direction: ltr; }
.product__figure{
  aspect-ratio: 4/3; border-radius: var(--radius); overflow:hidden;
  background: linear-gradient(160deg, var(--cream-deep), var(--steel) 140%);
  position:relative;
}
.product__figure svg{ width:100%; height:100%; transition: transform .6s var(--ease); transform-origin:center; }
.product:hover .product__figure svg{ transform: scale(1.08); }
.product__tag{ font-family: var(--f-mono); font-size:.75rem; color: var(--copper); text-transform:uppercase; letter-spacing:.08em; margin-bottom:10px; display:block; }
.product h3{ font-size:1.55rem; margin-bottom:10px; }
.product__desc{ color: var(--ink-soft); font-size:1rem; }
.product__usps{ display:grid; grid-template-columns: 1fr 1fr; gap:10px 20px; margin: 18px 0 22px; }
.product__usps li{ font-size:.9rem; color: var(--steel); display:flex; gap:8px; align-items:flex-start; }
.product__usps li::before{ content:"—"; color: var(--copper); flex-shrink:0; }
.product__cta{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.product__cta p{ margin:0; font-size:.9rem; color: var(--steel); }
@media (max-width: 820px){
  .product{ grid-template-columns:1fr; }
  .product:nth-child(even){ direction: ltr; }
}

/* ==========================================================================
   EXPERTISE LIST (simple, no explanation)
   ========================================================================== */
.expertise-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap:16px; }
.expertise-item{
  display:flex; align-items:center; gap:14px;
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; font-weight:600; font-size:.98rem; color: var(--ink-soft);
  transition: transform .25s var(--ease), border-color .25s;
}
.expertise-item:hover{ transform: translateY(-4px); border-color: var(--copper); }
.expertise-item .expertise-num{
  flex-shrink:0; width:34px; height:34px; border-radius:50%;
  background: linear-gradient(135deg, var(--gold), var(--copper)); color:var(--ink);
  display:flex; align-items:center; justify-content:center; font-family:var(--f-mono); font-size:.8rem; font-weight:700;
}

/* ==========================================================================
   EQUIPMENT TABS — Brewery Essentials / Accessories
   ========================================================================== */
.equip-tabs{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 36px; }
.equip-tab-btn{
  padding: 13px 26px; border-radius: 999px; font-weight:700; font-size:.92rem;
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink-soft);
  transition: all .25s var(--ease);
}
.equip-tab-btn.is-active{ background: linear-gradient(135deg, var(--gold), var(--copper)); color: var(--ink); border-color: transparent; box-shadow: var(--shadow); }
.equip-tab-btn:not(.is-active):hover{ border-color: var(--copper); color: var(--copper); }

.equip-panel{ display:none; }
.equip-panel.is-active{ display:block; }

.equip-layout{ display:grid; grid-template-columns: 280px 1fr; gap: 28px; align-items:flex-start; }
.equip-list{ display:flex; flex-direction:column; gap:6px; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; background:var(--white); }
.equip-list__item{
  display:block; width:100%; text-align:left; padding: 15px 18px; font-size:.92rem; font-weight:600;
  color: var(--ink-soft); background:transparent; border:0; border-left: 3px solid transparent;
  border-bottom: 1px solid var(--line); transition: background .2s, border-color .2s, color .2s;
}
.equip-list__item:last-child{ border-bottom:0; }
.equip-list__item:hover{ background: var(--cream-deep); color: var(--copper); }
.equip-list__item.is-active{ background: var(--cream-deep); border-left-color: var(--copper); color: var(--copper); }

.equip-detail{ position:relative; min-height: 380px; }
.equip-detail__panel{ display:none; animation: fadeUp .4s var(--ease); }
.equip-detail__panel.is-active{ display:grid; grid-template-columns: .8fr 1.2fr; gap: 32px; align-items:center; }
@keyframes fadeUp{ from{ opacity:0; transform: translateY(10px);} to{ opacity:1; transform:none; } }
.equip-detail__media{ aspect-ratio: 4/3; border-radius: var(--radius); overflow:hidden; background:#20242b; }
.equip-detail__media svg{ width:100%; height:100%; transition: transform .6s var(--ease); }
.equip-detail__media:hover svg{ transform: scale(1.08); }
.equip-detail__body span.product__tag{ margin-bottom:8px; }
.equip-detail__body h3{ font-size:1.4rem; margin-bottom:10px; }
.equip-detail__body p{ color: var(--ink-soft); font-size:.98rem; margin-bottom:20px; }

@media (max-width: 860px){
  .equip-layout{ grid-template-columns: 1fr; }
  .equip-list{
    flex-direction:row; overflow-x:auto; border-radius: 999px; gap:0;
    -webkit-overflow-scrolling: touch; scrollbar-width: thin;
  }
  .equip-list::-webkit-scrollbar{ height:4px; }
  .equip-list__item{
    white-space:nowrap; flex-shrink:0; border-bottom:0; border-right:1px solid var(--line);
    border-left:0; border-bottom: 3px solid transparent;
  }
  .equip-list__item.is-active{ border-left-color:transparent; border-bottom-color: var(--copper); }
  .equip-detail__panel.is-active{ grid-template-columns: 1fr; }
  .equip-detail{ min-height:auto; }
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-panel{
  background: var(--white); border:1px solid var(--line); border-radius: 10px;
  padding: clamp(24px, 5vw, 40px); box-shadow: var(--shadow);
}
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size:.8rem; font-weight:600; color: var(--ink-soft); }
.field input, .field select, .field textarea{
  border:1.5px solid var(--line); border-radius: 5px; padding: 12px 14px;
  font-family: var(--f-body); font-size: .95rem; background: var(--cream); color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--copper); }
.field textarea{ resize:vertical; min-height:90px; }
.form-foot{ font-size:.8rem; color: var(--steel); margin-top:8px; }
/* Form Validation */
.req { color: #e74c3c; margin-left: 3px; }
.error-msg { color: #e74c3c; font-size: 0.75rem; display: none; margin-top: -4px; }
.field.is-invalid .error-msg { display: block; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #e74c3c; }
@media (max-width:600px){ .form-grid{ grid-template-columns:1fr; } }

/* Modal popup form */
.modal-overlay{
  position:fixed; inset:0; background: rgba(20,23,27,0.6); backdrop-filter: blur(4px);
  display:flex; align-items:center; justify-content:center; padding: clamp(12px, 3vw, 20px);
  opacity:0; pointer-events:none; transition: opacity .3s var(--ease); z-index: 900;
}
.modal-overlay.is-open{ opacity:1; pointer-events:auto; }
.modal{
  background: var(--cream); border-radius: 12px; max-width: 560px; width:100%;
  max-height: 90vh; overflow-y:auto; position:relative; transform: translateY(16px) scale(.98);
  transition: transform .3s var(--ease); box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}
.modal-overlay.is-open .modal{ transform: translateY(0) scale(1); }
.modal__head{ padding: clamp(20px, 5vw, 30px) clamp(20px, 5vw, 34px) 6px; }
.modal__head .eyebrow{ margin-bottom:8px; }
.modal__head h3{ font-size:1.5rem; margin-bottom:4px; }
.modal__head p{ color: var(--steel); font-size:.92rem; }
.modal__body{ padding: 18px clamp(20px, 5vw, 34px) clamp(24px, 5vw, 34px); }
.modal__close{
  position:absolute; top:16px; right:16px; width:36px; height:36px; border-radius:50%;
  background: var(--white); border:1px solid var(--line); font-size:1.1rem; color: var(--ink-soft);
  display:flex; align-items:center; justify-content:center; z-index:2;
}
.modal__close:hover{ border-color: var(--copper); color: var(--copper); }

/* ==========================================================================
   FLOATING WIDGETS
   ========================================================================== */
.floating-stack{ position: fixed; right: 22px; bottom: 22px; z-index: 800; display:flex; flex-direction:column; gap:14px; align-items:flex-end; }
.fab{
  width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 24px -8px rgba(20,23,27,.45); border:none; transition: transform .25s var(--ease);
}
.fab:hover{ transform: scale(1.08); }
.fab svg{ width:28px; height:28px; }
.fab--whatsapp{ background:#25D366; color:#fff; }
.fab--enquire{ background: linear-gradient(135deg, var(--gold), var(--copper)); color: var(--ink); }
.fab-label{
  position:absolute; right:70px; top:50%; transform: translateY(-50%);
  background: var(--ink); color:var(--cream); font-size:.78rem; font-weight:600;
  padding:6px 12px; border-radius:6px; white-space:nowrap; opacity:0; pointer-events:none;
  transition: opacity .2s;
}
.fab-wrap{ position:relative; }
.fab-wrap:hover .fab-label{ opacity:1; }
@media (max-width: 600px){ .fab{ width:50px; height:50px; } .fab svg{ width:24px; height:24px; } .fab-label{ display:none; } .floating-stack{ right:14px; bottom:14px; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--ink); color: rgba(246,243,236,.82); padding-top: clamp(60px, 10vw, 90px); }
.footer-form-wrap{ margin-bottom: clamp(48px, 8vw, 80px); }
.footer-grid{ display:grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap:40px; padding-bottom: 46px; border-bottom:1px solid var(--line-dark); }
.footer-col h5{ font-family: var(--f-mono); font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; color: var(--gold); margin-bottom:18px; }
.footer-col ul li{ margin-bottom:10px; }
.footer-col ul li a{ font-size:.92rem; color: rgba(246,243,236,.72); transition: color .2s; }
.footer-col ul li a:hover{ color: var(--gold); }
.footer-col img{ height:42px; margin-bottom:16px; }
.footer-col p{ font-size:.88rem; color: rgba(246,243,236,.6); }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{ width:34px; height:34px; border:1px solid var(--line-dark); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.footer-social a:hover{ border-color: var(--gold); color: var(--gold); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 24px 0; font-size:.8rem; color: rgba(246,243,236,.5); flex-wrap:wrap; gap:10px; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; gap:28px; } .footer-bottom { flex-direction: column; text-align: center; justify-content: center; } }

/* Utility */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }
.toast{
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%) translateY(-20px);
  background: var(--ink); color:var(--cream); padding: 14px 22px; border-radius: 8px;
  font-size:.9rem; opacity:0; pointer-events:none; transition: opacity .3s, transform .3s; z-index: 1000;
  border-left: 3px solid var(--gold);
}
.toast.is-open{ opacity:1; transform: translateX(-50%) translateY(0); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
}

.equip-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
