/* Ace Racquets — shared stylesheet */

:root {
  --ink: #181815;
  --ivory: #EFEFEB;
  --minium: #D4451A;
  --white: #FFFFFF;
  --maxw: 1760px;
  --gutter: clamp(24px, 5vw, 96px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--ivory);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Typography */
h1, h2, h3, h4, .nav-logo, .label {
  font-family: "Montserrat", system-ui, sans-serif;
}
h1 { font-size: 64px; font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-size: 40px; font-weight: 700; line-height: 1.1; letter-spacing: -0.005em; }
h3 { font-size: 22px; font-weight: 600; line-height: 1.25; }
p  { font-weight: 400; }
.label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.lede {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 720px;
}

/* Layout */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: 120px 0; }
section.dark  { background: var(--ink);   color: var(--white); }
section.light { background: var(--ivory); color: var(--ink); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.divider {
  height: 1px;
  background: currentColor;
  opacity: 0.18;
  margin: 56px 0;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--white);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}
.nav-logo .brand-mark {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}
.nav-logo .brand-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--minium);
  margin: 7px 0 7px;
}
.nav-logo .brand-tag {
  display: block;
  width: 100%;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--minium);
  line-height: 1;
  text-align: justify;
  text-align-last: justify;
}
.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { border-bottom-color: rgba(255,255,255,0.4); }
.nav-links a.active { border-bottom-color: var(--minium); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  padding: 100px var(--gutter) 32px;
}
.nav-overlay.open { display: block; }
.nav-overlay ul { list-style: none; }
.nav-overlay li { margin: 24px 0; }
.nav-overlay a {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Push content below fixed nav */
main { padding-top: 64px; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 16px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.btn:hover { opacity: 0.85; }
.btn-primary {
  background: var(--minium);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.dark .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

/* Hero */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 180px 0 140px;
}
.hero h1 { max-width: 980px; margin-top: 32px; }
.hero .lede { margin-top: 32px; color: rgba(255,255,255,0.78); }

/* Feature blocks (no icons, just type) */
.feature {
  border-top: 1px solid currentColor;
  padding-top: 28px;
}
.feature .label { display: block; margin-bottom: 14px; opacity: 0.6; }
.feature h3 { margin-bottom: 12px; }
.feature p { font-size: 16px; opacity: 0.85; }

/* Stat blocks */
.stat .num {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .label { display: block; margin-top: 12px; opacity: 0.65; }

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: 15px;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(24,24,21,0.15);
  vertical-align: top;
}
.dark .spec-table th, .dark .spec-table td {
  border-bottom-color: rgba(255,255,255,0.15);
}
.spec-table th {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
}

/* Product cards (type-only, no images) */
.product-card {
  background: var(--ink);
  color: var(--white);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,0.08);
}
.light .product-card {
  background: var(--ivory);
  color: var(--ink);
  border-color: rgba(24,24,21,0.15);
}
.product-card .label { opacity: 0.6; }
.product-card h3 {
  font-size: 28px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.product-card .meta {
  margin-top: 32px;
  font-size: 13px;
  opacity: 0.7;
  border-top: 1px solid currentColor;
  padding-top: 16px;
}

/* Forms */
.form { max-width: 720px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; margin-bottom: 20px; }
.field label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  opacity: 0.7;
}
.field input,
.field select,
.field textarea {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(24,24,21,0.25);
  background: var(--white);
  color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--minium);
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand {
  display: inline-block;
}
.footer-logo-svg {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
  margin-bottom: 4px;
}
.footer-brand .brand-sub {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  color: var(--white);
  opacity: 0.6;
  margin: 0;
}
.footer-brand .brand-sub {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  color: var(--white);
  opacity: 0.6;
}
.footer h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  color: var(--white);
  opacity: 0.7;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li {
  margin-bottom: 12px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  color: var(--white);
  opacity: 0.85;
}
.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.footer a:hover { color: var(--minium); }
.footer-bottom {
  background: #0D0D0D;
  padding: 18px var(--gutter);
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--minium); }
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { font-size: 11px; padding: 16px var(--gutter); }
}

/* Utility */
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.text-muted { opacity: 0.75; }
.eyebrow { color: var(--minium); }

/* ============================================
   CONTACT PAGE SECTIONS
   ============================================ */

.contact-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 200px 0 140px;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/contact-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}
.contact-hero .wrap {
  position: relative;
  z-index: 1;
}
.contact-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 1000px;
}
.contact-hero h1 .accent { color: var(--minium); }
.contact-hero .subline {
  margin-top: 24px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: rgba(255,255,255,0.65);
  max-width: 720px;
}

/* Contact details + form */
.contact-grid {
  background: var(--ivory);
  padding: 140px 0;
}
.contact-grid .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Contact details */
.contact-details .detail {
  margin-bottom: 36px;
}
.contact-details .detail:last-child { margin-bottom: 0; }
.contact-details .key {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--minium);
  margin-bottom: 10px;
}
.contact-details .val {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.contact-details .val a {
  color: var(--ink);
  border-bottom: 1px solid rgba(24,24,21,0.25);
}
.contact-details .val a:hover { border-bottom-color: var(--minium); color: var(--minium); }

/* Contact form */
.contact-form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #888;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid #CCCCCC;
  color: var(--ink);
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--minium);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23181815' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form .submit {
  width: 100%;
  background: var(--minium);
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 18px 24px;
  border: 0;
  cursor: pointer;
  margin-top: 12px;
}
.contact-form .submit:hover { opacity: 0.9; }
.contact-form .submit:disabled { opacity: 0.65; cursor: default; }
.contact-form .success {
  display: none;
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--white);
  border-left: 4px solid var(--minium);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}
.contact-form .success.show { display: block; }

@media (max-width: 960px) {
  .contact-hero { padding: 140px 0 80px; }
  .contact-hero h1 { font-size: 40px; }
  .contact-hero .subline { font-size: 17px; }
  .contact-grid { padding: 80px 0; }
  .contact-grid .row { grid-template-columns: 1fr; gap: 56px; }
  .contact-form .field-row { grid-template-columns: 1fr; gap: 0; }
}

.whyus-hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.whyus-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/whyus-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}
.whyus-hero .wrap {
  position: relative;
  z-index: 1;
  max-width: none;
  padding-left: clamp(24px, 3vw, 48px);
  padding-right: clamp(24px, 5vw, 96px);
}
.whyus-hero .label.eyebrow {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--minium);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  display: block;
}
.whyus-hero h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: 28px;
  max-width: 1100px;
}
.whyus-hero .tagline-italic {
  display: block;
  margin-top: 24px;
  font-family: "Source Sans 3", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  color: var(--minium);
}

/* Seven reasons grid */
.whyus-reasons {
  background: var(--ivory);
  padding: 140px 0;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reason-card {
  background: var(--white);
  border-top: 2px solid var(--minium);
  border-right: 1px solid #E0E0DC;
  border-bottom: 1px solid #E0E0DC;
  border-left: 1px solid #E0E0DC;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.reason-card .num {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--minium);
  margin-bottom: 14px;
  display: block;
}
.reason-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.reason-card p {
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.8;
  margin: 0;
}
/* Center the 7th card in its own row */
.reason-card.last {
  grid-column: 2;
}

@media (max-width: 1200px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-card.last { grid-column: auto; }
}
@media (max-width: 720px) {
  .whyus-hero h1 { font-size: 44px; }
  .whyus-hero .tagline-italic { font-size: 19px; }
  .whyus-reasons { padding: 80px 0; }
  .reasons-grid { grid-template-columns: 1fr; }
  .reason-card.last { grid-column: auto; }
}
.ace-studio {
  background: var(--ivory);
  padding: 140px 0;
  padding-top: 200px; /* extra top clearance under fixed nav */
}
.ace-studio .row {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 100px;
  align-items: center;
}
.ace-studio .label.eyebrow {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--minium);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 1;
}
.ace-studio h2 {
  margin-top: 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}
.ace-studio p.body {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.65;
  max-width: 640px;
  color: var(--ink);
}
.ace-studio .img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-image: url("../images/studio-design.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 960px) {
  .ace-studio { padding: 140px 0 80px; }
  .ace-studio .row { grid-template-columns: 1fr; gap: 48px; }
  .ace-studio .label.eyebrow { font-size: 40px; }
  .ace-studio h2 { font-size: 32px; }
}

.products-hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/products-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.products-hero .wrap {
  position: relative;
  z-index: 1;
  max-width: none;
  padding-left: clamp(24px, 3vw, 48px);
  padding-right: clamp(24px, 5vw, 96px);
}
.products-hero h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: 28px;
  max-width: 1100px;
}
.products-hero h1 .accent { color: var(--minium); }
.products-hero .lede {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-top: 32px;
  max-width: 820px;
}

/* Master eyebrow for products page sections */
.products-hero .label.eyebrow {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

/* Sport name TITLE - larger, bolder, less tracking */
.prod-badminton .label.eyebrow,
.prod-tennis .label.eyebrow,
.prod-process .label.eyebrow,
.prod-coming .label.eyebrow,
.tech-teaser .label.eyebrow,
.proof-banner .label.eyebrow {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--minium);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 1;
}

/* Italic tagline */
.tagline-italic {
  display: block;
  margin-top: 4px;
  font-family: "Source Sans 3", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--minium);
  line-height: 1.25;
}

/* Tier card */
.tier-card {
  background: var(--white);
  border-top: 2px solid var(--minium);
  padding: 28px 28px;
  margin-bottom: 16px;
}
.tier-card:last-child { margin-bottom: 0; }
.tier-card .name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 10px;
}
.tier-card p {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
/* Dark variant for tennis tier cards */
.tier-card.dark {
  background: #232320;
  border-top-color: var(--minium);
}
.tier-card.dark .name { color: var(--white); }
.tier-card.dark p { color: rgba(255,255,255,0.78); }

/* Badminton section */
.prod-badminton {
  background: var(--ivory);
  padding: 140px 0;
}
.prod-badminton .row {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 100px;
  align-items: start;
}
.prod-badminton p.body { margin-top: 28px; font-size: 18px; max-width: 640px; }
.prod-badminton .dash-list { margin-top: 0; }
.prod-badminton .right-tuning {
  border-top: 2px solid var(--minium);
  padding-top: 28px;
}
.prod-badminton .right-tuning .tune-label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 8px;
}

/* Tennis section */
.prod-tennis {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}
.prod-tennis .row {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: stretch;
  min-height: 560px;
}
.prod-tennis .img-col {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.prod-tennis .img-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/products-tennis.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.prod-tennis .text-col {
  padding: 140px clamp(24px, 5vw, 96px) 140px clamp(40px, 5vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prod-tennis h2 { color: var(--white); margin-top: 8px; }
.prod-tennis p.body {
  margin-top: 28px;
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
}
.prod-tennis p.body + p.body { margin-top: 20px; }
.prod-tennis p.body b {
  color: var(--white);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.04em;
}

/* Squash section */
.prod-squash {
  background: var(--ivory);
  padding: 140px 0 80px;
}
.prod-squash .inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.prod-squash p.body {
  margin-top: 28px;
  font-size: 18px;
  text-align: left;
}

/* Performance tier strip — full-width edge-to-edge */
.prod-tiers {
  background: var(--ivory);
  padding: 140px 0;
}
.prod-tiers .wrap {
  max-width: none;
  padding-left: clamp(24px, 5vw, 96px);
  padding-right: clamp(24px, 5vw, 96px);
}
.tiers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 48px);
}
.tiers-row .tier-card {
  margin-bottom: 0;
  padding: 36px 32px;
}
.tiers-row .tier-card .name { font-size: 16px; }
.tiers-row .tier-card p { font-size: 16px; }

/* OEM/ODM process strip */
.prod-process {
  background: var(--ink);
  color: var(--white);
  padding: 140px 0;
  text-align: center;
}
.prod-process h2 {
  color: var(--white);
  margin-top: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 80px;
  text-align: left;
}
.process-step {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 28px;
}
.process-step .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--minium);
  line-height: 1;
  display: block;
}
.process-step p {
  margin-top: 18px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* Coming Soon section */
.prod-coming {
  background: var(--ivory);
  padding: 140px 0;
}
.prod-coming h2 {
  margin-top: 20px;
  max-width: 720px;
}
.prod-coming p.body {
  margin-top: 28px;
  font-size: 18px;
  max-width: 820px;
  color: var(--ink);
}
.coming-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.coming-card {
  background: var(--white);
  border: 1px solid #E0E0DC;
  border-top: 4px solid var(--minium);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}
.coming-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.25;
  margin-bottom: 14px;
}
.coming-card p {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.8;
  margin: 0;
}
.prod-coming .closing {
  margin-top: 64px;
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  color: var(--minium);
}
.prod-coming .closing a {
  color: var(--minium);
  font-weight: 600;
  border-bottom: 1px solid var(--minium);
  padding-bottom: 2px;
}

@media (max-width: 1100px) {
  .coming-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    padding: 0 var(--gutter);
  }
  .coming-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}

@media (max-width: 960px) {
  .products-hero h1 { font-size: 44px; }
  .products-hero .lede { font-size: 17px; }
  .prod-badminton .row,
  .prod-tennis .row { grid-template-columns: 1fr; gap: 48px; }
  .prod-tennis .row { min-height: 0; }
  .prod-tennis .img-col { min-height: 320px; }
  .prod-tennis .text-col { padding: 80px clamp(24px, 5vw, 48px); }
  .prod-badminton, .prod-process { padding: 80px 0; }
  .prod-squash { padding: 80px 0 40px; }
  .prod-tiers { padding: 0 0 80px; }
  .tiers-row { grid-template-columns: 1fr; gap: 16px; }
  .process-row { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; }
  .prod-badminton .label.eyebrow,
  .prod-tennis .label.eyebrow,
  .prod-squash .label.eyebrow,
  .prod-coming .label.eyebrow,
  .prod-process .label.eyebrow,
  .tech-teaser .label.eyebrow,
  .proof-banner .label.eyebrow,
  .about-hero .label.eyebrow,
  .about-who .label.eyebrow,
  .about-prepreg .label.eyebrow,
  .about-vi .label.eyebrow,
  .about-proof .label.eyebrow,
  .whyus-hero .label.eyebrow { font-size: 40px; }
  .tagline-italic { font-size: 19px; }
  .prod-coming { padding: 80px 0; }
  .prod-coming .closing { font-size: 15px; margin-top: 48px; }
}

/* Master-size eyebrow titles for About page */
.about-hero .label.eyebrow,
.about-who .label.eyebrow,
.about-prepreg .label.eyebrow,
.about-vi .label.eyebrow {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--minium);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  display: block;
}

/* About proof point section */
.about-proof {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 160px 0;
  overflow: hidden;
  text-align: center;
}
.about-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/proof-facility.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.about-proof .wrap { position: relative; z-index: 1; }
.about-proof .inner {
  max-width: 900px;
  margin: 0 auto;
}
.about-proof .label.eyebrow {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--minium);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  display: block;
}
.about-proof h2 {
  margin-top: 28px;
  color: var(--white);
  white-space: nowrap;
  font-size: clamp(22px, 3.4vw, 44px);
  line-height: 1.1;
}
.about-proof p.body {
  margin: 28px auto 0;
  max-width: 720px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.about-proof .pullquote {
  margin-top: 56px;
  font-family: "Source Sans 3", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--white);
  line-height: 1.4;
  text-align: center;
}
.about-proof .pullquote::before { content: "\201C"; margin-right: 4px; }
.about-proof .pullquote::after  { content: "\201D"; margin-left: 4px; }

@media (max-width: 960px) {
  .about-proof { padding: 100px 0; }
  .about-proof h2 { white-space: normal; font-size: 28px; }
  .about-proof .pullquote { font-size: 19px; margin-top: 40px; }
}

/* About hero - full viewport with bg image */
.about-hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/about-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}
.about-hero .wrap {
  position: relative;
  z-index: 1;
  max-width: none;
  padding-left: clamp(24px, 3vw, 48px);
  padding-right: clamp(24px, 5vw, 96px);
}
.about-hero h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: 28px;
  max-width: 1100px;
}
.about-hero h1 .accent { color: var(--minium); }
.about-hero .lede {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-top: 32px;
  max-width: 760px;
}

/* Who We Are - 60/40 split with image */
.about-who {
  background: var(--ivory);
  padding: 140px 0;
}
.about-who .row {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 100px;
  align-items: center;
}
.about-who h2 { margin-top: 28px; }
.about-who p { margin-top: 28px; max-width: 640px; font-size: 18px; }
.about-who .img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-image: url("../images/about-whoweare.jpg");
  background-size: cover;
  background-position: center;
}

/* Custom bullet list with red marker */
.dash-list {
  list-style: none;
  margin-top: 36px;
  padding: 0;
}
.dash-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.55;
}
.dash-list li::before {
  content: "\00BB";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--minium);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.55;
}

/* Square bullet list - two columns */
.square-list {
  list-style: none;
  margin-top: 36px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
}
.square-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--white);
}
.square-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background: var(--minium);
}

/* Ace Prepreg section - 45/55 image left, text right */
.about-prepreg {
  background: var(--ink);
  color: var(--white);
  padding: 140px 0;
}
.about-prepreg .row {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 100px;
  align-items: center;
}
.about-prepreg .img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-image: url("../images/about-prepreg.jpg");
  background-size: cover;
  background-position: center;
}
.about-prepreg h2 { margin-top: 28px; color: var(--white); }
.about-prepreg p { margin-top: 28px; color: rgba(255,255,255,0.8); font-size: 17px; max-width: 720px; }

/* Vertical integration flow */
.about-vi {
  background: var(--ivory);
  padding: 140px 0;
}
.about-vi .inner {
  max-width: 900px;
}
.about-vi p {
  margin-top: 28px;
  font-size: 19px;
  font-weight: 300;
  color: var(--ink);
  max-width: 760px;
}
.vi-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 64px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.vi-step {
  flex: 1 1 0;
  background: var(--white);
  border: 1px solid #D9D9D6;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 140px;
}
.vi-step .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--minium);
  letter-spacing: 0.12em;
}
.vi-step .name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 12px;
  line-height: 1.3;
}
.vi-arrow {
  flex: 0 0 auto;
  align-self: center;
  color: var(--minium);
  font-size: 20px;
  font-weight: 700;
  padding: 0 8px;
  font-family: "Montserrat", sans-serif;
}
.about-vi .closing {
  margin: 64px auto 0;
  max-width: none;
  text-align: center;
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
}

@media (max-width: 960px) {
  .about-hero h1 { font-size: 44px; }
  .about-hero .lede { font-size: 17px; }
  .about-who .row,
  .about-prepreg .row {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-who, .about-prepreg, .about-vi { padding: 80px 0; }
  .square-list { grid-template-columns: 1fr; }
  .vi-flow { flex-direction: column; gap: 0; max-width: 420px; }
  .vi-step { min-height: 96px; }
  .vi-arrow { transform: rotate(90deg); padding: 12px 0; }
}

/* Full viewport hero with bg image */
.hero-full {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 64px;
}
.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-carbon.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}
.hero-full .hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
}
.hero-full .hero-content > .wrap {
  max-width: none;
  padding-left: clamp(24px, 3vw, 48px);
  padding-right: clamp(24px, 5vw, 96px);
}
.hero-full .hero-text {
  max-width: 1200px;
}
.hero-full h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: 0;
}
.hero-full h1 .accent { color: var(--minium); }
.hero-full .lede {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  margin-top: 32px;
  max-width: 820px;
}
.hero-full .hero-sports {
  display: block;
  margin-top: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--minium);
}
.hero-full .btn-row { margin-top: 48px; }

.tagline-strip {
  position: relative;
  z-index: 1;
  background: var(--minium);
  color: var(--white);
  text-align: center;
  padding: 18px 24px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Stats bar — 5 columns with dividers */
.stats-bar {
  background: var(--ivory);
  padding: 80px 0;
}
.stats-bar .row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stats-bar .cell {
  text-align: center;
  padding: 24px 16px;
  border-left: 1px solid rgba(24,24,21,0.15);
}
.stats-bar .cell:first-child { border-left: 0; }
.stats-bar .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--minium);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stats-bar .label {
  display: block;
  margin-top: 14px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.75;
}

/* Sports categories strip */
.sports-strip {
  background: var(--ink);
  color: var(--white);
  padding: 120px 0;
}
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 56px;
}
.sport-col {
  position: relative;
  background: var(--ink);
  padding: 56px 36px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--minium);
  overflow: hidden;
}
.sport-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}
.sport-col.badminton::before { background-image: url("../images/sport-badminton.jpg"); }
.sport-col.tennis::before    { background-image: url("../images/sport-tennis.jpg"); }
.sport-col.squash::before    { background-image: url("../images/sport-squash.jpg"); }
.sport-col > * { position: relative; z-index: 1; }
.sport-col h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  letter-spacing: -0.005em;
  margin-bottom: 20px;
}
.sport-col p {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  flex: 1;
}
.sport-col .learn {
  margin-top: 32px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--minium);
  display: inline-block;
}
.sport-col .learn:hover { opacity: 0.8; }
.sports-cta {
  text-align: center;
  margin-top: 64px;
}

/* Technology teaser */
.tech-teaser {
  background: var(--ivory);
  padding: 120px 0;
}
.tech-teaser .row {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}
.tech-teaser h2 { margin-top: 28px; }
.tech-teaser p { margin-top: 28px; max-width: 540px; }
.tech-teaser .link {
  display: inline-block;
  margin-top: 32px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--minium);
  border-bottom: 1px solid var(--minium);
  padding-bottom: 6px;
}
.tech-teaser .img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-image: url("../images/tech-prepreg.jpg");
  background-size: cover;
  background-position: center;
}

/* Proof point banner */
.proof-banner {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}
.proof-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/proof-facility.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.proof-banner .wrap { position: relative; z-index: 1; }
.proof-banner .inner {
  max-width: none;
  margin: 0 auto;
}
.proof-banner h2 {
  margin-top: 28px;
  white-space: nowrap;
  font-size: clamp(20px, 3.2vw, 44px);
  line-height: 1.1;
}
.proof-banner p {
  margin: 28px auto 0;
  max-width: 640px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}
.proof-banner .btn-row { justify-content: center; margin-top: 40px; }

/* Partnership CTA banner */
.partner-banner {
  background: var(--minium);
  color: var(--white);
  padding: 100px 0;
}
.partner-banner .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.partner-banner h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.005em;
}
.partner-banner p {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin-top: 20px;
  max-width: 560px;
}
.partner-banner .buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.btn-white {
  background: var(--white);
  color: var(--ink);
}
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
  h1 { font-size: 44px; }
  h2 { font-size: 32px; }
  .lede { font-size: 18px; }
  section { padding: 80px 0; }
  .hero { padding: 140px 0 100px; }
  .grid-2, .grid-3, .grid-4, .form-row, .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-full h1 { font-size: 44px; }
  .hero-full .lede { font-size: 17px; }
  .hero-full .hero-sports { font-size: 15px; letter-spacing: 0.18em; margin-top: 28px; }
  .stats-bar .row { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .cell { border-left: 0; border-top: 1px solid rgba(24,24,21,0.15); padding: 28px 12px; }
  .stats-bar .cell:nth-child(-n+2) { border-top: 0; }
  .stats-bar .num { font-size: 40px; }
  .sports-grid { grid-template-columns: 1fr; gap: 4px; }
  .sport-col { min-height: 340px; }
  .sport-col h3 { font-size: 30px; }
  .tech-teaser .row { grid-template-columns: 1fr; gap: 48px; }
  .partner-banner .row { grid-template-columns: 1fr; gap: 40px; }
  .proof-banner h2 { white-space: normal; font-size: 28px; }
  .partner-banner h3 { font-size: 30px; }
  .partner-banner .buttons { flex-direction: column; }
  .tagline-strip { font-size: 11px; letter-spacing: 0.16em; padding: 14px 16px; }
}

/* Mobile-only overrides */
@media (max-width: 768px) {
  h1 { font-size: 40px; }
  .hero-full h1 { font-size: 40px; }
  .about-hero h1,
  .products-hero h1,
  .whyus-hero h1,
  .contact-hero h1,
  .studio-hero h1 { font-size: 40px; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-logo .brand-mark { font-size: 22px; }
  .nav-logo .brand-tag { font-size: 11px; }
  .nav-overlay { background: #181815; }

  /* Stats bar wraps to 2+3 grid */
  .stats-bar .row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }
  .stats-bar .cell { border-top: 1px solid rgba(24,24,21,0.15); border-left: 0; padding: 28px 12px; }
  .stats-bar .cell:nth-child(1) { grid-column: 1 / 4; border-top: 0; }
  .stats-bar .cell:nth-child(2) { grid-column: 4 / 7; border-top: 0; }
  .stats-bar .cell:nth-child(3) { grid-column: 1 / 3; }
  .stats-bar .cell:nth-child(4) { grid-column: 3 / 5; }
  .stats-bar .cell:nth-child(5) { grid-column: 5 / 7; }
  .stats-bar .num { font-size: 32px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand .brand-name { font-size: 20px; }
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}
