@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Inter:wght@300;400;500;600&display=swap');

/* ==========================================================================
   SPINTECH BEARING HOUSE
   Design system: QUIET PRECISION
   Matte navy · champagne brass · editorial serif · hairline rules
   One coherent layer — no legacy overrides.
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---------- Tokens ---------- */
:root {
  --navy:        #1c2e4a;                  /* base */
  --navy-deep:   #16253c;                  /* alternate sections / footer */
  --navy-mid:    #223a5c;                  /* lifted panels */
  --card:        #21365a;                  /* cards */
  --ink:         #101d31;                  /* deepest (bands, scrims) */
  --porcelain:   #f2efe8;                  /* headline / card plates */
  --steel:       #a7b1c4;                  /* body text */
  --steel-dim:   #7e8aa1;                  /* captions / labels */
  --brass:       #c9a24b;                  /* single accent */
  --brass-lt:    #e3c98c;
  --hair:        rgba(255,255,255,0.08);   /* hairline on navy */
  --hair-brass:  rgba(201,162,75,0.32);
  --font:        'Inter', 'Segoe UI', Arial, sans-serif;
  --serif:       'Fraunces', Georgia, serif;
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --tr:          0.35s var(--ease);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 300;
  background: var(--navy);
  color: var(--porcelain);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
::selection { background: rgba(201,162,75,0.35); color: #fff; }
:focus-visible { outline: 1px solid var(--brass); outline-offset: 3px; }

/* thin quiet scrollbar */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: #3a4d6e; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--brass); }

/* ---------- Utilities ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; }

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  text-align: center;
  letter-spacing: -0.01em;
  color: var(--porcelain);
  margin-bottom: 10px;
}
.section-title span { color: var(--brass); font-style: italic; }
.section-subtitle {
  text-align: center;
  color: var(--steel);
  margin-bottom: 56px;
  font-size: 0.98rem;
}
.gold-line {
  width: 44px; height: 1px;
  background: var(--brass); opacity: 0.65;
  margin: 18px auto 44px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.btn-gold, .btn-dark { background: var(--brass); color: var(--ink); }
.btn-gold:hover, .btn-dark:hover { background: var(--brass-lt); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--hair-brass);
  color: var(--porcelain);
}
.btn-outline:hover { border-color: var(--brass); color: var(--brass-lt); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(22,37,60,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hair);
  transition: background var(--tr), box-shadow var(--tr);
}
header.scrolled { background: rgba(22,37,60,0.95); box-shadow: 0 10px 34px rgba(6,12,24,0.45); }

nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.logo { display: flex; align-items: center; gap: 13px; }
.logo img { height: 46px; width: auto; }
.logo-text {
  font-family: var(--serif);
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  line-height: 1.35;
  color: var(--porcelain);
}
.logo-text span { color: var(--brass); font-size: 0.78rem; letter-spacing: 0.22em; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  position: relative;
  padding: 6px 0;
  transition: color var(--tr);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width var(--tr), left var(--tr);
}
.nav-links a:hover, .nav-links a.active { color: var(--porcelain); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; left: 0; }

.nav-cta { margin-left: 16px; padding: 12px 24px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--brass); transition: var(--tr); }

/* ==========================================================================
   HERO  (photo-led)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-photo {
  position: absolute; inset: 0 0 0 auto; width: 62%;
  background: var(--ink) url('../images/hero-bearing.jpg') center/cover no-repeat;
  filter: grayscale(1) contrast(1.08) brightness(0.75);
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(28,46,74,0.55), rgba(20,34,56,0.45));
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 30%, rgba(28,46,74,0.9) 50%, rgba(28,46,74,0.62) 74%, rgba(16,29,49,0.88) 100%);
}
.hero-scrim::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,29,49,0.55), transparent 25%, transparent 66%, rgba(16,29,49,0.82));
}
.hero-inner { position: relative; z-index: 3; width: 100%; }
.hero-content { max-width: 600px; }

.hero-index {
  font-family: var(--serif);
  font-size: 0.78rem; letter-spacing: 0.3em;
  color: var(--steel-dim);
  margin-bottom: 22px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brass);
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--brass); opacity: 0.75; }

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--brass); }
.hero p {
  font-size: 1.02rem;
  color: var(--steel);
  max-width: 440px;
  margin-bottom: 42px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 54px; }

.hero-stats-row { display: flex; border-top: 1px solid var(--hair); padding-top: 26px; max-width: 540px; }
.hstat { padding-right: 28px; }
.hstat + .hstat { border-left: 1px solid var(--hair); padding-left: 28px; }
.hstat .k { font-family: var(--serif); font-size: 1.4rem; color: var(--porcelain); }
.hstat .l { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel-dim); margin-top: 6px; }

/* gentle load-in */
.hero-index, .hero-eyebrow, .hero h1, .hero p, .hero-btns, .hero-stats-row {
  opacity: 0; animation: rise 0.9s var(--ease) forwards;
}
.hero-eyebrow    { animation-delay: 0.08s; }
.hero h1         { animation-delay: 0.16s; }
.hero p          { animation-delay: 0.26s; }
.hero-btns       { animation-delay: 0.36s; }
.hero-stats-row  { animation-delay: 0.46s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   VALUES BAR
   ========================================================================== */
.values-bar {
  background: var(--navy-deep);
  border-top: 1px solid var(--hair-brass);
  border-bottom: 1px solid var(--hair);
  padding: 38px 0;
}
.values-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value-item { padding-left: 20px; border-left: 1px solid var(--hair-brass); }
.value-text strong {
  display: block;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 5px;
}
.value-text span { font-size: 0.85rem; color: var(--steel); }

/* ==========================================================================
   ABOUT SNAPSHOT (home)
   ========================================================================== */
.about-snapshot { padding: 120px 0; background: var(--navy-deep); }
.about-snapshot .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 84px; align-items: center;
}
.about-img-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.about-img-wrap::before {
  content: ''; position: absolute; z-index: 0;
  width: 76%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.14) 0%, rgba(201,162,75,0.03) 45%, transparent 70%);
  filter: blur(10px);
}
.about-img-wrap img {
  position: relative; z-index: 1; width: 94%;
  filter: drop-shadow(0 30px 50px rgba(6,12,24,0.55));
}
.about-img-badge {
  position: absolute; z-index: 2; bottom: 0; right: 4%;
  background: var(--brass); color: var(--ink);
  padding: 18px 22px; border-radius: 2px;
  text-align: center; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; line-height: 1.5;
  box-shadow: 0 18px 40px rgba(6,12,24,0.5);
}
.about-img-badge strong { display: block; font-family: var(--serif); font-size: 1.9rem; font-weight: 500; letter-spacing: 0; }
.about-text .section-title { text-align: left; }
.about-text .gold-line { margin-left: 0; }
.about-text p { color: var(--steel); margin-bottom: 20px; font-size: 0.96rem; }
.about-points { margin: 28px 0 34px; }
.about-points li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 10px 0;
  color: var(--steel); font-size: 0.92rem;
  border-bottom: 1px solid var(--hair);
}
.about-points li::before { content: '—'; color: var(--brass); flex-shrink: 0; font-size: 0.8rem; }

/* ==========================================================================
   FEATURES  (numbered)
   ========================================================================== */
.features { padding: 120px 0; background: var(--navy); position: relative; overflow: hidden; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); margin-top: 24px; }
.feature-card {
  background: var(--navy);
  padding: 46px 38px;
  transition: background var(--tr);
}
.feature-card:hover { background: var(--navy-deep); }
.feature-num {
  font-family: var(--serif);
  font-size: 1rem; font-style: italic;
  color: var(--brass);
  margin-bottom: 20px;
}
.feature-num::after { content: ''; display: block; width: 26px; height: 1px; background: var(--hair-brass); margin-top: 14px; }
.feature-card h3 {
  font-family: var(--font);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--porcelain);
  margin-bottom: 14px;
}
.feature-card p { color: var(--steel); font-size: 0.89rem; line-height: 1.75; }

/* ==========================================================================
   PRODUCT CARDS  (home preview + catalogue)
   ========================================================================== */
.products-preview { padding: 120px 0; background: var(--navy-deep); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 24px; }

.product-card, .catalog-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.product-card:hover, .catalog-card:hover {
  transform: translateY(-4px);
  border-color: var(--hair-brass);
  box-shadow: 0 24px 48px rgba(6,12,24,0.45);
}

/* porcelain catalogue plate — deliberate, consistent product presentation */
.product-card-img, .catalog-img-wrap {
  width: 100%; height: 230px;
  background: var(--porcelain);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--hair-brass);
}
.product-card-img { object-fit: contain; padding: 22px; }
.catalog-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 22px; transition: transform 0.6s var(--ease); }
.catalog-card:hover .catalog-img-wrap img { transform: scale(1.04); }

.product-card-body, .catalog-body { padding: 26px 28px 30px; }
.product-card-body h3, .catalog-body h3 {
  font-size: 1.15rem;
  color: var(--porcelain);
  margin-bottom: 10px;
}
.product-card-body p { color: var(--steel); font-size: 0.88rem; margin-bottom: 20px; }
.catalog-usage {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.catalog-body p { color: var(--steel); font-size: 0.88rem; margin-bottom: 8px; }
.catalog-overview { color: var(--steel-dim) !important; font-size: 0.82rem !important; margin-bottom: 18px !important; }

.enquire-btn {
  display: inline-block;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass);
  border-bottom: 1px solid var(--hair-brass);
  padding-bottom: 4px;
  transition: color var(--tr), border-color var(--tr);
}
.enquire-btn:hover { color: var(--brass-lt); border-color: var(--brass); }
.enquire-btn::after { content: '  →'; }

.catalog-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--hair);
}
.catalog-badge {
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--steel-dim);
  border: 1px solid var(--hair);
  padding: 4px 12px; border-radius: 999px;
}
.products-cta { text-align: center; margin-top: 56px; }

.catalog-section { padding: 90px 0 120px; background: var(--navy); }
.catalog-intro {
  text-align: center; color: var(--steel);
  max-width: 640px; margin: 0 auto 64px;
  font-size: 0.96rem; line-height: 1.8;
}
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ==========================================================================
   INDUSTRIES
   ========================================================================== */
.industries-section { padding: 120px 0; background: var(--navy); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); margin-top: 24px; }
.industry-card {
  background: var(--navy);
  padding: 44px 20px;
  text-align: center;
  transition: background var(--tr);
  cursor: default;
}
.industry-card:hover { background: var(--navy-deep); }
.industry-card h3 {
  font-family: var(--font);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel);
  transition: color var(--tr);
}
.industry-card:hover h3 { color: var(--brass-lt); }

.industry-full { padding: 90px 0 120px; background: var(--navy); }
.industry-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 24px; }
.industry-full-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: 40px 34px;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.industry-full-card:hover {
  transform: translateY(-4px);
  border-color: var(--hair-brass);
  box-shadow: 0 24px 48px rgba(6,12,24,0.45);
}
.industry-full-card h3 { font-size: 1.3rem; color: var(--porcelain); margin-bottom: 14px; }
.industry-full-card h3::after { content: ''; display: block; width: 26px; height: 1px; background: var(--brass); opacity: 0.6; margin-top: 14px; }
.industry-full-card p { color: var(--steel); font-size: 0.89rem; margin: 14px 0; }
.industry-bearings {
  font-size: 0.78rem; color: var(--steel-dim);
  border-top: 1px solid var(--hair);
  padding-top: 14px; margin-top: 16px;
  line-height: 1.7;
}
.industry-bearings strong {
  display: block;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 4px;
}

/* ==========================================================================
   TESTIMONIALS + REVIEW FORM
   ========================================================================== */
.testimonials { padding: 120px 0; background: var(--navy-deep); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 24px; }
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: 40px 34px;
  transition: border-color var(--tr);
}
.testimonial-card:hover { border-color: var(--hair-brass); }
.quote-mark {
  font-family: var(--serif); font-style: italic;
  font-size: 3rem; line-height: 0.6;
  color: var(--brass); opacity: 0.45;
  margin-bottom: 20px;
}
.stars { color: var(--brass); font-size: 0.78rem; letter-spacing: 0.3em; margin-bottom: 16px; }
.testimonial-card p {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  color: var(--steel); font-size: 0.98rem; line-height: 1.8;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--hair); padding-top: 20px; }
.author-avatar {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--hair-brass); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.05rem; color: var(--brass);
}
.author-info strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--porcelain); }
.author-info span { font-size: 0.74rem; letter-spacing: 0.04em; color: var(--steel-dim); }

.review-cta-text { margin-top: 72px; }
.review-form-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: 48px 44px;
  text-align: left;
}
.review-form-wrap .form-submit { width: 100%; margin-top: 6px; }
#reviews { scroll-margin-top: 96px; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  padding: 110px 0;
  background: var(--navy-deep);
  border-top: 1px solid var(--hair-brass);
  border-bottom: 1px solid var(--hair-brass);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% 0%, rgba(201,162,75,0.07), transparent 60%);
}
.cta-banner .container { position: relative; }
.cta-banner h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.cta-banner p { color: var(--steel); max-width: 520px; margin: 0 auto 40px; font-size: 0.98rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer { background: var(--ink); border-top: 1px solid var(--hair-brass); padding: 84px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid var(--hair);
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--steel); font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; max-width: 300px; }
.footer-socials { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--hair);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--steel);
  transition: border-color var(--tr), color var(--tr);
}
.social-icon svg { width: 15px; height: 15px; }
.social-icon:hover { border-color: var(--brass); color: var(--brass-lt); }
.footer-col h4 {
  font-family: var(--font);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}
.footer-col ul li { padding: 7px 0; font-size: 0.88rem; }
.footer-col ul li a { color: var(--steel); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--porcelain); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 0.85rem; color: var(--steel);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-contact-item:last-child { border-bottom: none; }
.contact-icon { color: var(--brass); flex-shrink: 0; margin-top: 3px; display: inline-flex; }
.contact-icon svg { width: 15px; height: 15px; }
.footer-gst { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--steel-dim); margin-top: 16px; }
.footer-bottom { text-align: center; padding: 26px 0; font-size: 0.76rem; color: var(--steel-dim); }
.footer-bottom span { color: var(--brass); }

/* ==========================================================================
   PAGE HEADER  (inner pages — editorial, left-aligned)
   ========================================================================== */
.page-header {
  padding: 178px 0 76px;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(50% 110% at 88% 100%, rgba(201,162,75,0.08), transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.page-header h1 span { color: var(--brass); font-style: italic; }
.page-header .gold-line { display: none; }
.breadcrumb {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--steel-dim);
}
.breadcrumb a { color: var(--brass); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--brass-lt); }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-story { padding: 110px 0; background: var(--navy); }
.about-story .container {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
.story-img-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.story-img-wrap::before {
  content: ''; position: absolute; z-index: 0;
  width: 76%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.13) 0%, transparent 70%);
  filter: blur(10px);
}
.float-bearing { position: relative; z-index: 1; width: 100%; filter: drop-shadow(0 30px 50px rgba(6,12,24,0.55)); }
.about-story-text p { color: var(--steel); font-size: 0.96rem; line-height: 1.85; margin-bottom: 20px; }

.team-section { padding: 110px 0; background: var(--navy-deep); }
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 24px;
  max-width: 860px; margin-left: auto; margin-right: auto;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: 48px 40px;
  text-align: center;
  transition: border-color var(--tr);
}
.team-card:hover { border-color: var(--hair-brass); }
.team-avatar {
  width: 74px; height: 74px;
  margin: 0 auto 24px;
  border: 1px solid var(--hair-brass);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.7rem; color: var(--brass);
}
.team-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.team-role {
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.team-card p { color: var(--steel); font-size: 0.89rem; line-height: 1.75; }

.mission-vision { padding: 110px 0; background: var(--navy); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 24px; }
.mv-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-top: 2px solid var(--brass);
  border-radius: 4px;
  padding: 52px 46px;
}
.mv-card h3 { font-size: 1.5rem; color: var(--porcelain); margin-bottom: 18px; }
.mv-card p { color: var(--steel); font-size: 0.94rem; line-height: 1.85; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-section { padding: 90px 0 110px; background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; margin-top: 24px; }
.contact-info h3, .contact-form-wrap h3 { font-size: 1.6rem; margin-bottom: 30px; }
.contact-detail {
  display: flex; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair);
  align-items: flex-start;
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--hair-brass);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brass);
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-text strong {
  display: block;
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}
.contact-detail-text p, .contact-detail-text a { font-size: 0.9rem; color: var(--steel); line-height: 1.7; }
.contact-detail-text a:hover { color: var(--brass-lt); }

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: 52px 46px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hair);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--porcelain);
  font-size: 0.9rem;
  font-family: var(--font);
  transition: border-color var(--tr), background var(--tr);
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--steel-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--brass);
  background: rgba(201,162,75,0.04);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: var(--navy-deep); color: var(--porcelain); }
.form-submit { width: 100%; padding: 17px; }

.map-section { padding: 0 0 110px; background: var(--navy); }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.map-wrap h4 {
  font-family: var(--font);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.map-wrap iframe {
  width: 100%; height: 300px;
  border: 1px solid var(--hair);
  border-radius: 4px;
  filter: grayscale(65%) contrast(1.02);
  transition: filter var(--tr);
}
.map-wrap iframe:hover { filter: grayscale(0%); }

/* ==========================================================================
   FLOATING CONTACT BUTTONS
   ========================================================================== */
.whatsapp-float, .mail-float {
  position: fixed; right: 28px; z-index: 900;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(6,12,24,0.5);
  transition: transform var(--tr);
}
.whatsapp-float { bottom: 28px; background: #1fa855; }
.mail-float { bottom: 92px; background: var(--brass); }
.whatsapp-float:hover, .mail-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }
.mail-float svg { width: 22px; height: 22px; fill: var(--ink); }
.whatsapp-tooltip, .mail-tooltip {
  position: absolute; right: 64px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 7px 14px; border-radius: 2px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--tr);
}
.whatsapp-tooltip { background: #1fa855; color: #fff; }
.mail-tooltip { background: var(--brass); color: var(--ink); }
.whatsapp-float:hover .whatsapp-tooltip, .mail-float:hover .mail-tooltip { opacity: 1; }

/* ==========================================================================
   SCROLL PROGRESS + REVEAL
   ========================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 2000;
  height: 2px; width: 0%;
  background: var(--brass);
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .features-grid, .catalog-grid, .industry-full-grid, .products-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: fixed; top: 78px; left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column; gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--hair-brass);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 32px; width: 100%; border-bottom: 1px solid var(--hair); }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-photo { width: 100%; filter: grayscale(1) contrast(1.08) brightness(0.38); }
  .hero-scrim { background: linear-gradient(180deg, rgba(22,37,60,0.7), rgba(16,29,49,0.85)); }
  .hero p { max-width: 100%; }

  .values-bar .container { grid-template-columns: repeat(2, 1fr); }
  .about-snapshot .container, .about-story .container { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid, .map-grid, .mv-grid, .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .logo img { height: 40px; }
  .logo-text { font-size: 0.85rem; }

  .hero { padding: 120px 0 64px; min-height: auto; }
  .hero-stats-row { flex-wrap: wrap; gap: 18px 0; }
  .hstat { padding-right: 20px; }
  .hstat + .hstat { padding-left: 20px; }
  .hero-btns .btn { flex: 1 1 auto; text-align: center; padding: 14px 20px; }

  .values-bar .container { grid-template-columns: 1fr; gap: 20px; }
  .features-grid, .catalog-grid, .industry-full-grid, .products-grid,
  .testimonials-grid, .industries-grid { grid-template-columns: 1fr; }

  .about-snapshot, .features, .products-preview, .industries-section,
  .testimonials, .catalog-section, .industry-full, .about-story,
  .team-section, .mission-vision, .contact-section { padding: 72px 0; }
  .cta-banner { padding: 72px 0; }
  .page-header { padding: 140px 0 56px; }

  .contact-form-wrap, .review-form-wrap { padding: 34px 24px; }
  .mv-card { padding: 38px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .whatsapp-float { width: 48px; height: 48px; right: 20px; bottom: 20px; }
  .mail-float { width: 48px; height: 48px; right: 20px; bottom: 80px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .hero-index, .hero-eyebrow, .hero h1, .hero p, .hero-btns, .hero-stats-row, .reveal { opacity: 1; transform: none; }
}

/* Safety: no horizontal scroll */
html, body { max-width: 100%; overflow-x: hidden; }
