/* ==========================================================================\n   Noah Dubois — Home\n   English single-language build\n   ========================================================================== */

:root {
  --ink: #090909;
  --panel: #111111;
  --bone: #f2f0e9;
  --soft: #d5d3cc;
  --muted: #999a96;
  --line: rgba(242, 240, 233, 0.14);
  --line-strong: rgba(242, 240, 233, 0.22);
  --blue: #315cff;
  --pad: clamp(20px, 4vw, 68px);
  --nav-height: 72px;
}

/* Base -------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--bone);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--blue);
  color: #fff;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(70px, 10.2vw, 164px);
  line-height: 0.82;
  letter-spacing: -0.078em;
  text-transform: uppercase;
}

h2 {
  margin: 8px 0 0;
  font-size: clamp(50px, 7.2vw, 116px);
  line-height: 0.89;
  letter-spacing: -0.067em;
  text-transform: uppercase;
}

.wrap {
  padding-inline: var(--pad);
}

.section {
  padding: 108px var(--pad);
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.section-note {
  max-width: 430px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.eyebrow,
.kicker {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.cta.primary {
  background: var(--bone);
  color: var(--ink);
}

/* Content is always visible. JS only adds progressive enhancements. */
.reveal {
  opacity: 1;
  transform: none;
}

#talent,
#services,
#about,
#contact,
#reach {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

/* Navigation -------------------------------------------------------------- */

.nav {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--pad);
  background: linear-gradient(to bottom, rgba(9, 9, 9, 0.96), rgba(9, 9, 9, 0.68), transparent);
  backdrop-filter: blur(8px);
}

.brand {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.home-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  opacity: 0.94;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-mark:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.04);
}

.home-mark img {
  width: 100%;
  height: 100%;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
}

.navlinks a {
  opacity: 0.7;
  transition: opacity 180ms ease;
}

.navlinks a:hover {
  opacity: 1;
}

.navlinks .nav-cta {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  opacity: 1;
}

.menu-toggle {
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.38);
  color: var(--bone);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 15px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  display: none;
  pointer-events: none;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(3px);
  transition: opacity 280ms ease;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 380px);
  height: 100%;
  overflow: auto;
  padding: 96px 28px 32px;
  border-left: 1px solid var(--line);
  background: #0b0b0b;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.22, 0.72, 0.18, 1);
}

.mobile-menu.open {
  pointer-events: auto;
}

.mobile-menu.open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mobile-menu-inner > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
  font-size: clamp(25px, 7vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.mobile-menu-inner > a::after {
  content: "↗︎";
  font-size: 13px;
  letter-spacing: 0;
  opacity: 0.5;
}

.mobile-menu-inner > a[href^="#"]::after {
  content: "↓";
}

.mobile-menu-inner .nav-cta {
  justify-content: center;
  margin-top: 24px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0;
}

.mobile-menu-inner .nav-cta::after {
  content: "↗︎";
}

/* Hero -------------------------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  align-items: center;
  min-height: 100svh;
  padding-top: 112px;
  padding-bottom: 36px;
  column-gap: clamp(34px, 5vw, 78px);
}

.hero-copy .kicker {
  transform: translateY(-6px);
}

.hero-line-built {
  display: inline-block;
  margin-left: -10px;
}

.hero-copy p {
  max-width: 610px;
  margin: 26px 0 0;
  color: #d0cfca;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
}

.micro {
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.micro strong {
  color: var(--bone);
}

.tailors-inline-link,
.about-tailors-link,
.about-org-link,
.service p a {
  color: inherit;
  border-bottom: 1px solid rgba(242, 240, 233, 0.32);
  transition: color 180ms ease, border-color 180ms ease;
}

.tailors-inline-link:hover,
.about-tailors-link:hover,
.about-org-link:hover,
.service p a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: clamp(0px, 1.5vw, 20px);
}

.hero-portrait-card {
  position: relative;
  width: min(100%, 430px);
  padding: 9px;
  border: 1px solid var(--line);
  background: #0d0d0d;
}

.hero-portrait-card::before {
  content: "";
  position: absolute;
  top: 34px;
  left: -1px;
  z-index: 2;
  width: 4px;
  height: 72px;
  background: var(--blue);
}

.hero-photo {
  position: relative;
  width: 100%;
  height: min(55vh, 590px);
  overflow: hidden;
  background: #151515;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 34%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.05) contrast(1.04) saturate(0.92);
}

/* Clubs & brands ---------------------------------------------------------- */

.logo-band {
  overflow: hidden;
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-band-top {
  display: flex;
  justify-content: space-between;
  padding: 0 var(--pad) 20px;
}

.club-marquee {
  --club-gap: clamp(34px, 4vw, 62px);
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.club-marquee::-webkit-scrollbar { display: none; }
.club-marquee[data-enhanced="true"] { overflow: hidden; }

.club-marquee::before,
.club-marquee::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: min(8vw, 100px);
  pointer-events: none;
}

.club-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}

.club-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--ink), transparent);
}

.club-track,
.club-set {
  display: flex;
  align-items: center;
  width: max-content;
}

.club-track {
  gap: var(--club-gap);
  padding: 10px 0;
}

.club-set { gap: var(--club-gap); }
.club-track[data-enhanced="true"] { animation: club-scroll 38s linear infinite; }

/* Pause on real mouse hover only. On touch devices, :hover can remain
   latched after tapping a logo and would otherwise freeze the marquee. */
@media (hover: hover) and (pointer: fine) {
  .club-marquee:hover .club-track { animation-play-state: paused; }
}

/* Keyboard users still get a stable target while tabbing through the links. */
.club-marquee:focus-within .club-track { animation-play-state: paused; }

/* Every organisation gets the same physical slot. The image itself is sized
   optically so wide wordmarks and compact crests carry comparable visual weight. */
.club-logo {
  --logo-w: 108px;
  --logo-h: 50px;
  display: grid;
  flex: 0 0 136px;
  place-items: center;
  width: 136px;
  height: 76px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  opacity: 0.92;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.club-logo:hover,
.club-logo:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(49, 92, 255, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.club-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: var(--logo-w);
  max-height: var(--logo-h);
  object-fit: contain;
}

/* Optical sizing, tuned against the rendered result rather than source pixels. */
.club-fnatic { --logo-w: 72px; --logo-h: 48px; }
.club-gameward { --logo-w: 52px; --logo-h: 52px; }
.club-geekay { --logo-w: 92px; --logo-h: 46px; }
.club-gentle-mates { --logo-w: 52px; --logo-h: 52px; }
.club-manchester-city { --logo-w: 48px; --logo-h: 48px; }
.club-novo { --logo-w: 44px; --logo-h: 52px; }
.club-pwr { --logo-w: 48px; --logo-h: 48px; }
.club-team-heretics { --logo-w: 48px; --logo-h: 48px; }
.club-team-razer { --logo-w: 52px; --logo-h: 52px; }
.club-virtus-pro { --logo-w: 52px; --logo-h: 48px; }

.club-gameward img,
.club-gentle-mates img { filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.05)); }

@keyframes club-scroll {
  to { transform: translateX(calc(-50% - (var(--club-gap) / 2))); }
}

/* Featured talent --------------------------------------------------------- */

.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.talent-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #121212;
}

.talent-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.talent-card:hover img {
  transform: scale(1.018);
}

.talent-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.06) 48%, rgba(0, 0, 0, 0.02));
}

.tawk-card img { object-position: 35% center; }
.tempoh-card img { object-position: center 26%; }
.twopiece-card img { object-position: 62% center; }
.yujin-card img { object-position: center 22%; }


.talent-meta {
  position: absolute;
  right: 16px;
  bottom: 15px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.talent-name {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.talent-sub {
  margin-top: 6px;
  color: #ddd;
  font-size: 8px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.talent-arrow {
  color: var(--blue);
  font-size: 19px;
  font-variant-emoji: text;
}

.talent-more {
  margin-top: 26px;
}

/* Philosophy -------------------------------------------------------------- */

.philosophy-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.philosophy {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 60px;
}

.lead {
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.copy {
  max-width: 650px;
  color: #c7c6c1;
  font-size: 18px;
  line-height: 1.62;
}

.rule {
  height: 1px;
  margin: 38px 0 26px;
  background: var(--line);
}

.pull {
  max-width: 620px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.pull span {
  color: var(--blue);
}

/* Services ---------------------------------------------------------------- */

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.service {
  padding: 30px 0 64px;
  border-bottom: 1px solid var(--line);
}

.service:nth-child(odd) {
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.service:nth-child(even) {
  padding-left: 34px;
}

.num {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.service h3 {
  margin: 42px 0 12px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.service p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  text-align: justify;
  text-justify: inter-word;
}

#services .section-note {
  text-align: justify;
  text-justify: inter-word;
}

/* Track record ------------------------------------------------------------ */

.track-record {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  padding: 42px 22px 42px 0;
}

.metric + .metric {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-size: clamp(42px, 4.8vw, 76px);
  letter-spacing: -0.06em;
}

.metric span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* International reach ---------------------------------------------------- */

/* Accented uppercase glyphs need a little more breathing room in French. */
html[lang="fr"] #reach .section-head h2 {
  margin-top: 22px;
}

.reach-section {
  padding-top: 104px;
  padding-bottom: 108px;
}

.reach-shell {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reach-map {
  position: relative;
  min-height: clamp(430px, 55vw, 760px);
  overflow: hidden;
  background: var(--ink);
}

.reach-svg {
  position: absolute;
  inset: 5% 2% 3%;
  width: 96%;
  height: 92%;
}

.reach-country {
  fill: #171717;
  stroke: #343434;
  stroke-width: 0.72;
  vector-effect: non-scaling-stroke;
  transition: fill 220ms ease, opacity 220ms ease, filter 220ms ease;
}

.reach-country-active {
  fill: var(--blue);
  stroke: rgba(255, 255, 255, 0.28);
  cursor: default;
}

.reach-svg:hover .reach-country-active {
  opacity: 0.68;
}

.reach-svg .reach-country-active:hover {
  opacity: 1;
  filter: brightness(1.16);
}

.reach-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 51% 44%, rgba(49, 92, 255, 0.055), transparent 46%);
}

.reach-map-tooltip {
  position: absolute;
  z-index: 4;
  min-width: 150px;
  max-width: 240px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 13, 13, 0.96);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translate(12px, 12px);
  backdrop-filter: blur(12px);
  pointer-events: none;
  transition: opacity 150ms ease;
}

.reach-map-tooltip.is-visible {
  opacity: 1;
}

.reach-map-tooltip strong {
  display: block;
  margin-bottom: 7px;
  color: var(--bone);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reach-map-tooltip span {
  display: block;
  color: #a9a8a3;
  font-size: 12px;
  line-height: 1.55;
}

.reach-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.reach-region {
  padding: 24px 22px 25px;
}

.reach-region + .reach-region {
  border-left: 1px solid var(--line);
}

.reach-region strong {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.reach-region span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* About ------------------------------------------------------------------- */

.about-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.about {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 58px;
}

.about-photo {
  position: sticky;
  top: 96px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: grayscale(0.04);
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 20px 30px;
  margin-top: 36px;
}

.about-item {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.about-kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-copy {
  margin: 0;
  color: #c9c8c2;
  font-size: 14px;
  line-height: 1.72;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  text-wrap: pretty;
  hyphens: auto;
}

.about-copy strong {
  color: var(--bone);
  font-weight: 700;
}

.about-closing {
  color: #c9c8c2;
  font-weight: 400;
}

/* Contact ----------------------------------------------------------------- */

.contact {
  padding: 110px var(--pad);
  background: var(--bone);
  color: var(--ink);
}

.contact h2 {
  font-size: clamp(72px, 12vw, 190px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 50px;
  margin-top: 40px;
}

.contact p {
  max-width: 640px;
  color: #44443f;
  font-size: 20px;
  line-height: 1.5;
}

.contact-links {
  display: grid;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.contact-links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  font-size: 14px;
  transition: padding 180ms ease;
}

.contact-links a:hover {
  padding-right: 4px;
  padding-left: 4px;
}

/* Footer ------------------------------------------------------------------ */

.footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px var(--pad);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer > span:last-child {
  text-align: right;
}

.footer-mark {
  display: block;
  width: 30px;
  height: 30px;
  opacity: 0.74;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-mark:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-mark img {
  width: 100%;
  height: 100%;
}

.footer-tailors-link {
  text-decoration: underline;
  text-decoration-color: rgba(153, 154, 150, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-tailors-link:hover {
  color: var(--bone);
  text-decoration-color: currentColor;
}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 1150px) {
  .talent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .talent-card {
    min-height: 500px;
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    column-gap: 34px;
  }

  .hero-portrait-card {
    max-width: 390px;
  }
}

@media (max-width: 960px) {
  .navlinks {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .home-mark {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .hero-copy .kicker {
    transform: translateY(-4px);
  }

  .hero-line-built {
    margin-left: -7px;
  }

  .hero-side {
    justify-content: flex-start;
    padding-right: 0;
  }

  .hero-portrait-card {
    width: min(100%, 410px);
    max-width: none;
  }

  .hero-photo {
    height: 48vh;
  }

  .philosophy,
  .about,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    position: relative;
    top: 0;
    max-width: 640px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .service:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }

  .service:nth-child(even) {
    padding-left: 0;
  }

  .track-record {
    grid-template-columns: 1fr 1fr;
  }

  .metric:nth-child(3) {
    border-left: 0;
  }

  .metric:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .tempoh-card img {
    object-position: center 24%;
  }

  .reach-map {
    min-height: 520px;
  }

  .reach-svg {
    inset: 8% -8% 6%;
    width: 116%;
    height: 86%;
  }

  .reach-map-tooltip {
    display: none;
  }

  .reach-regions {
    grid-template-columns: 1fr;
  }

  .reach-region + .reach-region {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

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

  .talent-card {
    min-height: 470px;
  }
}

@media (max-width: 560px) {
  :root {
    --nav-height: 64px;
  }

  .nav {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand {
    font-size: 14px;
    letter-spacing: -0.035em;
  }

  h1 {
    font-size: 17vw;
  }

  .section,
  .contact {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .philosophy-section,
  .about-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .club-marquee {
    --club-gap: 30px;
  }

  .club-track[data-enhanced="true"] {
    animation-duration: 28s;
  }

  .club-logo {
    flex-basis: 112px;
    width: 112px;
    height: 66px;
    padding: 7px 9px;
    border-radius: 12px;
    transform: scale(0.92);
    transform-origin: center;
  }

  .club-logo:hover,
  .club-logo:focus-visible {
    transform: scale(0.92) translateY(-2px);
  }

  .logo-band-top {
    flex-direction: column;
    gap: 16px;
  }

  .about-body {
    grid-template-columns: 1fr;
  }

  .track-record {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric + .metric {
    padding-right: 0;
    padding-left: 0;
  }

  .metric + .metric {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .reach-section {
    padding-top: 74px;
    padding-bottom: 80px;
  }

  .reach-map {
    min-height: 390px;
  }

  .reach-svg {
    inset: 12% -19% 6%;
    width: 138%;
    height: 80%;
  }

  .contact-links a {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding-top: 28px;
    padding-bottom: 28px;
    text-align: center;
  }

  .footer > span:last-child {
    text-align: center;
  }

  .footer-mark {
    order: -1;
    width: 34px;
    height: 34px;
    margin-bottom: 3px;
  }
}

/* Accessibility / motion -------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }

  .club-track {
    transform: none;
    animation: none;
  }
}
@media (max-width: 390px) {
  html, body { max-width: 100%; overflow-x: clip; }
  .philosophy > *, .about > *, .contact-grid > *, .section-head > * { min-width: 0; }
  .lead { font-size: clamp(34px, 10.5vw, 40px); }
  .copy, .pull, .section-note, .page-intro { max-width: 100%; }
  .copy, .pull { overflow-wrap: break-word; }
}
@media (max-width: 360px) {
  :root { --pad: 16px; }
  .nav { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
  .lead { font-size: clamp(32px, 10.25vw, 37px); }
  .pull { font-size: 21px; }
}
