:root {
  --v2-black: #080808;
  --v2-paper: #f2f0eb;
  --v2-gold: #b89e61;
  --v2-muted: #6f6f6f;
}

html { scroll-behavior: smooth; }

body.v2-page {
  background: #fff;
  color: var(--v2-black);
  margin: 0;
}

.v2-page .header {
  --about-header-dark-alpha: 0 !important;
  --about-header-fg: #080808 !important;
  --about-header-logo-invert: 0 !important;
  --about-header-white-alpha: 1 !important;
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.v2-page .header > .logo { filter: none !important; }
.v2-page main { overflow: clip; }

.v2-shell {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: 1500px;
  width: calc(100% - clamp(48px, 8vw, 160px));
}

.v2-hero {
  align-items: end;
  display: grid;
  min-height: clamp(520px, 66vh, 760px);
  padding: clamp(190px, 18vw, 280px) 0 clamp(72px, 8vw, 130px);
}

.v2-kicker {
  color: var(--v2-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.v2-hero h1,
.v2-section h2,
.v2-card h2,
.v2-card h3 {
  font-family: var(--headerfont);
  font-weight: 400;
  letter-spacing: -.015em;
  text-transform: uppercase;
}

.v2-hero h1 {
  font-size: clamp(76px, 10vw, 176px);
  line-height: .84;
  margin: 0;
  max-width: 1200px;
}

.v2-lead {
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1.45;
  margin: clamp(32px, 4vw, 58px) 0 0;
  max-width: 900px;
}

.v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.v2-button {
  align-items: center;
  background: var(--v2-black);
  border: 1px solid var(--v2-black);
  box-sizing: border-box;
  color: #fff;
  display: inline-flex;
  font-family: var(--bodyfont);
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .01em;
  min-height: 70px;
  padding: 19px 34px;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.v2-button:hover { background: #fff; border-color: var(--v2-black); color: var(--v2-black); }
.v2-button--light { background: #fff; border-color: #fff; color: var(--v2-black); }
.v2-button--outline { background: transparent; color: var(--v2-black); }
.v2-button--light:hover { background: transparent; border-color: #fff; color: #fff; }
.v2-button--outline:hover { background: var(--v2-black); color: #fff; }

.v2-section { padding: clamp(82px, 10vw, 160px) 0; }
.v2-section--paper { background: var(--v2-paper); }
.v2-section--gold { background: var(--v2-gold); }
.v2-section--dark { background: var(--v2-black); color: #fff; }

.v2-section-head {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: clamp(40px, 6vw, 78px);
}

.v2-section-head h2,
.v2-section > .v2-shell > h2 {
  font-size: clamp(58px, 6.3vw, 112px);
  line-height: .88;
  margin: 0;
}

.v2-section-head p { font-size: 18px; line-height: 1.6; margin: 0; max-width: 600px; }

.v2-grid { display: grid; gap: 2px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v2-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.v2-card {
  background: var(--v2-paper);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(34px, 5vw, 72px);
}

.v2-card--gold { background: var(--v2-gold); }
.v2-card--dark { background: var(--v2-black); color: #fff; }
.v2-card h2, .v2-card h3 { font-size: clamp(48px, 5vw, 88px); line-height: .9; margin: 0 0 34px; }
.v2-card h3 { font-size: clamp(36px, 3.3vw, 58px); }
.v2-card p, .v2-copy { font-size: clamp(17px, 1.25vw, 21px); line-height: 1.65; }
.v2-card .v2-text-link { margin-top: auto; }

.v2-text-link {
  align-items: center;
  color: currentColor;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 16px;
  padding-block: 12px;
  text-decoration: none;
  width: fit-content;
}

.v2-text-link span { font-size: 28px; font-weight: 400; transition: transform 180ms ease; }
.v2-text-link:hover span { transform: translateX(6px); }

.v2-faq { display: grid; gap: 2px; }
.v2-faq details { background: #fff; padding: 0 clamp(24px, 3vw, 46px); }
.v2-faq summary { cursor: pointer; font-size: clamp(18px, 1.5vw, 24px); font-weight: 600; list-style: none; padding: 28px 50px 28px 0; position: relative; }
.v2-faq summary::-webkit-details-marker { display: none; }
.v2-faq summary::after { content: "+"; font-size: 30px; font-weight: 400; position: absolute; right: 0; top: 20px; }
.v2-faq details[open] summary::after { content: "\2212"; }
.v2-faq details p { color: #444; line-height: 1.7; margin: 0; max-width: 900px; padding: 0 0 30px; }

.v2-price-grid { display: grid; gap: 2px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v2-price-item { align-items: baseline; background: #fff; display: flex; gap: 20px; justify-content: space-between; padding: 24px 28px; }
.v2-price-item strong { font-size: 17px; }
.v2-price-item span { color: var(--v2-muted); white-space: nowrap; }
.v2-price-grid > article:not(.v2-price-item) { background: #fff; padding: 28px; }
.v2-price-grid > article:not(.v2-price-item) h3 { font-size: 20px; margin: 0 0 8px; }
.v2-price-grid > article:not(.v2-price-item) p { color: var(--v2-muted); margin: 0; }

.v2-contact-list { display: grid; gap: 12px; margin-top: 28px; }
.v2-contact-list a { color: currentColor; font-size: clamp(18px, 1.4vw, 24px); font-weight: 600; text-decoration: none; }

.v2-functional { padding-bottom: clamp(90px, 10vw, 160px); }
.v2-functional-frame { background: var(--v2-paper); box-sizing: border-box; min-height: 500px; padding: clamp(20px, 3vw, 48px); }

.v2-page #map-body { height: min(760px, 72vh); margin: 0; width: 100%; }
.v2-page #map { min-height: 520px; }
.v2-page #sidebar { background: #fff; }

.v2-score-stats { display: grid; gap: 2px; grid-template-columns: repeat(3, 1fr); margin-bottom: 2px; }
.v2-score-stats article { background: var(--v2-gold); padding: 30px; }
.v2-score-stats span { display: block; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.v2-score-stats strong { display: block; font-family: var(--headerfont); font-size: clamp(48px, 5vw, 80px); font-weight: 400; line-height: 1; margin-top: 10px; }

.v2-page .highscore-board { margin: 0; max-width: none; }
.v2-tracking-panel { margin: 0 auto; max-width: 850px; text-align: center; }
.v2-tracking-panel .trackingnumber { margin-inline: auto; }

.v2-studio-stage { aspect-ratio: 16 / 8; background: var(--v2-black); display: grid; overflow: hidden; place-items: center; position: relative; }
.v2-studio-stage::before { background: radial-gradient(circle at 30% 40%, rgba(184,158,97,.45), transparent 32%), radial-gradient(circle at 70% 60%, rgba(100,130,145,.35), transparent 30%); content: ""; inset: 0; position: absolute; }
.v2-studio-stage > * { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .v2-grid, .v2-grid--3, .v2-price-grid { grid-template-columns: 1fr; }
  .v2-section-head { align-items: start; flex-direction: column; }
  .v2-card { min-height: 360px; }
}

@media (max-width: 700px) {
  .v2-shell { width: calc(100% - 40px); }
  .v2-hero { min-height: 500px; padding: 150px 0 72px; }
  .v2-hero h1 { font-size: clamp(64px, 22vw, 104px); }
  .v2-section { padding: 76px 0; }
  .v2-grid { gap: 1px; }
  .v2-card { min-height: 320px; padding: 34px 28px; }
  .v2-score-stats { grid-template-columns: 1fr; }
  .v2-page #map-body { height: auto; }
  .v2-page #map { min-height: 58vh; }
  .v2-studio-stage { aspect-ratio: 4 / 5; }
}

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

/* Contact v2 */
.v2-contact-page { font-family: var(--font); }
.v2-contact-page main { background: #fff; color: var(--v2-black); }
.v2-contact-hero { min-height: min(900px, 88svh); }
.v2-contact-hero h1 { font-family: var(--headerfont); font-size: clamp(76px, 8vw, 176px); font-style: italic; font-weight: 900; letter-spacing: -.025em; line-height: .84; text-transform: uppercase; }
.v2-contact-hero__inner { align-items: end; display: grid; gap: clamp(48px, 8vw, 150px); grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); }
.v2-contact-hero__copy { padding-bottom: 10px; }
.v2-contact-hero__copy .v2-lead { font-size: clamp(18px, 1.35vw, 24px); font-weight: 400; line-height: 1.5; margin-top: 0; }
.v2-contact-hero__note { color: var(--v2-muted); font-size: 15px; line-height: 1.6; margin: 22px 0 0; }
.v2-editorial-hero .v2-contact-hero__inner {
  align-content: center;
  align-items: start;
  gap: clamp(46px, 3.2vw, 58px);
  grid-template-columns: minmax(0, 1100px);
}
.v2-editorial-hero .v2-contact-hero__copy {
  max-width: 940px;
  padding-bottom: 0;
}
.v2-editorial-hero .v2-contact-hero__copy .v2-lead {
  font-size: clamp(21px, 1vw, 28px);
  line-height: 1.45;
}
.v2-editorial-hero .v2-contact-hero__note {
  font-size: clamp(14px, 1vw, 18px);
  margin-top: 24px;
}
@media (min-width: 701px) {
  .v2-editorial-hero {
    align-items: start;
    min-height: auto;
    padding-top: clamp(150px, 8.6vw, 176px);
    padding-bottom: clamp(64px, 5vw, 84px);
  }
  .v2-editorial-hero .v2-contact-hero__inner {
    align-content: start;
    gap: clamp(46px, 3.2vw, 58px);
  }
}
.v2-contact-page main a.v2-button,
.v2-contact-page main a.v2-button:link,
.v2-contact-page main a.v2-button:visited {
  background: var(--v2-black);
  border-color: var(--v2-black);
  color: #fff;
  font-size: var(--club-card-cta-size, 12px);
  font-family: var(--font);
  min-height: 60px;
  min-width: min(100%, 360px);
  padding: 18px 24px;
  text-transform: uppercase;
  width: min(100%, 360px);
}
.v2-contact-page main a.v2-button:hover,
.v2-contact-page main a.v2-button:focus-visible {
  background: var(--v2-gold);
  border-color: var(--v2-gold);
  color: var(--v2-black);
}
.v2-contact-page main a.v2-button--outline,
.v2-contact-page main a.v2-button--outline:link,
.v2-contact-page main a.v2-button--outline:visited { background: transparent; color: var(--v2-black); }
.v2-contact-page main a.v2-button--outline:hover,
.v2-contact-page main a.v2-button--outline:focus-visible { background: var(--v2-gold); border-color: var(--v2-gold); color: var(--v2-black); }
.v2-contact-page main a:not(.v2-button) { color: inherit; }

.v2-contact-routes { background: #fff; color: var(--v2-black); padding: clamp(90px, 9vw, 150px) 0; scroll-margin-top: 96px; }
.v2-contact-routes__heading, .v2-contact-faq__heading { align-items: end; display: flex; gap: 40px; justify-content: space-between; margin-bottom: clamp(44px, 6vw, 76px); }
.v2-contact-routes__heading h2, .v2-contact-faq__heading h2 { font-family: var(--headerfont); font-size: clamp(58px, 6.3vw, 112px); font-weight: 400; letter-spacing: -.015em; line-height: .88; margin: 0; text-transform: uppercase; }
.v2-contact-routes__heading p, .v2-contact-faq__heading p { font-size: var(--club-card-copy-size, 18px); font-weight: 400; line-height: 1.55; margin: 0; max-width: 480px; }
.v2-contact-routes__grid { display: grid; gap: clamp(14px, 1.4vw, 24px); grid-template-columns: repeat(3, minmax(0, 1fr)); }

.v2-contact-tile { background: transparent; box-sizing: border-box; color: var(--v2-black); display: flex; isolation: isolate; min-height: clamp(440px, 35vw, 540px); overflow: hidden; position: relative; text-decoration: none; transition: background-color 250ms ease, color 250ms ease; }
.v2-contact-tile--gold { background: var(--v2-gold); }
.v2-contact-tile::before { display: none; }
.v2-contact-tile video { height: 100%; inset: 0; object-fit: cover; opacity: 0; position: absolute; transform: scale(1.04); transition: opacity 450ms ease, transform 900ms cubic-bezier(.2,.75,.25,1); width: 100%; z-index: 0; }
.club-hover-video.v2-contact-tile > .v2-contact-tile__shade { background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3) 45%, rgba(0,0,0,.88)); inset: 0; opacity: 0; position: absolute; transition: opacity 350ms ease; z-index: 1; }
.v2-contact-tile__content { display: flex; flex: 1; flex-direction: column; padding: clamp(30px, 3.2vw, 52px); position: relative; z-index: 2; }
.v2-contact-tile h3 { color: inherit; font-family: var(--headerfont); font-size: var(--club-card-title-size, clamp(58px, 5.6vw, 86px)); font-weight: 400; letter-spacing: -.015em; line-height: .88; margin: 0; text-transform: uppercase; }
.v2-contact-tile p { color: inherit; font-size: var(--club-card-copy-size, 18px); font-weight: 400; line-height: 1.55; margin: 24px 0 0; max-width: 430px; }
.v2-contact-tile__action { align-items: center; color: inherit; display: flex; font-size: var(--club-card-cta-size, 12px); font-weight: 600; gap: 16px; margin-top: auto; padding-top: 50px; text-transform: uppercase; }
.v2-contact-tile__action > span { display: inline-block; flex: 0 0 42px; font-size: 0; height: 14px; position: relative; transition: transform 260ms ease; width: 42px; }
.v2-contact-tile__action > span::before { background: currentColor; content: ""; height: 1.5px; left: 0; position: absolute; right: 1px; top: 50%; transform: translateY(-50%); }
.v2-contact-tile__action > span::after { border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor; content: ""; height: 8px; position: absolute; right: 1px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 8px; }
.v2-contact-tile:hover .v2-contact-tile__action > span,
.v2-contact-tile:focus-visible .v2-contact-tile__action > span,
.v2-contact-tile.is-in-view .v2-contact-tile__action > span { transform: translateX(12px); }
.v2-contact-tile:hover, .v2-contact-tile:focus-visible, .v2-contact-tile.is-in-view { background: var(--v2-black); color: #fff; }
.v2-contact-tile:hover h3, .v2-contact-tile:hover p, .v2-contact-tile:hover .v2-contact-tile__action,
.v2-contact-tile:focus-visible h3, .v2-contact-tile:focus-visible p, .v2-contact-tile:focus-visible .v2-contact-tile__action,
.v2-contact-tile.is-in-view h3, .v2-contact-tile.is-in-view p, .v2-contact-tile.is-in-view .v2-contact-tile__action { color: #fff; }
.v2-contact-tile:hover .v2-contact-tile__shade, .v2-contact-tile:focus-visible .v2-contact-tile__shade, .v2-contact-tile.is-in-view .v2-contact-tile__shade { opacity: 1; }
.v2-contact-tile:hover video, .v2-contact-tile:focus-visible video, .v2-contact-tile.is-in-view video { opacity: 1; transform: scale(1); }

.v2-contact-faq { background: #fff; padding: clamp(90px, 10vw, 160px) 0; }
.v2-contact-faq .v2-faq__list { display: grid; gap: 0; }
.v2-contact-faq .v2-faq details { border-bottom: 1px solid rgba(8,8,8,.16); padding-left: 0; padding-right: 0; }
.v2-contact-faq .v2-faq details:first-child { border-top: 1px solid rgba(8,8,8,.16); }
.v2-contact-faq.v2-faq details p a,
.v2-contact-faq.v2-faq details p a:link,
.v2-contact-faq.v2-faq details p a:visited {
  color: var(--v2-gold);
  font-weight: 600;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.v2-contact-faq.v2-faq details p a:hover,
.v2-contact-faq.v2-faq details p a:focus-visible { color: var(--v2-black); }
.v2-contact-faq .v2-faq summary { font-size: clamp(18px, 1.35vw, 22px); font-weight: 600; line-height: 1.35; }
.v2-contact-faq .v2-faq details p { font-size: 16px; font-weight: 400; line-height: 1.6; }

@media (max-width: 1000px) {
  .v2-contact-hero__inner { grid-template-columns: 1fr; }
  .v2-contact-hero__copy { max-width: 740px; }
  .v2-contact-routes__grid { grid-template-columns: 1fr; }
  .v2-contact-tile { min-height: clamp(440px, 35vw, 540px); }
}

@media (max-width: 700px) {
  .v2-contact-hero { min-height: 100svh; }
  .v2-contact-hero__inner { gap: 40px; }
  .v2-contact-hero h1 { font-size: clamp(64px, 20vw, 92px); }
  .v2-contact-hero__copy .v2-lead,
  .v2-contact-tile p { font-size: 16px; }
  .v2-editorial-hero .v2-contact-hero__inner { gap: 36px; }
  .v2-editorial-hero .v2-contact-hero__copy .v2-lead { font-size: 16px; }
  .v2-editorial-hero .v2-contact-hero__note { font-size: 14px; margin-top: 18px; }
  .v2-contact-routes__heading, .v2-contact-faq__heading { align-items: start; flex-direction: column; }
  .v2-contact-routes__heading p, .v2-contact-faq__heading p { font-size: 16px; }
  .v2-contact-tile { min-height: clamp(400px, 112vw, 470px); }
  .v2-contact-tile__content { padding: 44px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .v2-contact-tile video, .v2-contact-tile__action span { transition: none; }
}

/* Maintenance & repairs — aligned with Contact & Support */
.v2-maintenance-page main { background: #fff; }
.v2-maintenance-hero .v2-actions { flex-direction: column; width: min(100%, 540px); }
.v2-maintenance-hero .v2-actions .v2-button { margin: 0; }

.v2-maintenance-services {
  background: #fff;
  color: var(--v2-black);
  padding: clamp(90px, 9vw, 150px) 0;
  scroll-margin-top: 96px;
}

.v2-maintenance-services__intro {
  font-size: var(--club-card-copy-size, 18px);
  font-weight: 400;
  line-height: 1.55;
  margin: 0 0 clamp(36px, 4vw, 58px);
  max-width: none;
  width: 100%;
}

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

.v2-maintenance-price-grid article {
  background: #f2f0eb;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: clamp(28px, 2.8vw, 46px);
}

.v2-maintenance-price-grid h3 {
  font-family: var(--headerfont);
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: .9;
  margin: 0;
  text-transform: uppercase;
}

.v2-maintenance-price-grid strong {
  font-family: var(--headerfont);
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 400;
  line-height: 1;
  margin-top: auto;
  padding-top: 42px;
}

.v2-maintenance-price-grid p {
  color: var(--v2-muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 12px 0 0;
}

.v2-maintenance-info { background: #fff; padding: 0 0 clamp(100px, 11vw, 180px); }
.v2-maintenance-info__grid { display: grid; gap: 1px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v2-maintenance-info article {
  background: var(--v2-black);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(38px, 5vw, 76px);
}
.v2-maintenance-info article.v2-maintenance-info__parts { background: var(--v2-gold); color: var(--v2-black); }
.v2-maintenance-info h2 {
  font-family: var(--headerfont);
  font-size: clamp(58px, 6.3vw, 104px);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: .88;
  margin: 0;
  text-transform: uppercase;
}
.v2-maintenance-page .v2-maintenance-info article:not(.v2-maintenance-info__parts) h2 {
  color: #fff !important;
}
.v2-maintenance-info p { font-size: var(--club-card-copy-size, 18px); line-height: 1.55; margin: 30px 0 0; max-width: 560px; }
.v2-maintenance-info .v2-text-link { margin-top: auto; text-transform: uppercase; }

@media (max-width: 1100px) {
  .v2-maintenance-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .v2-maintenance-services__intro { font-size: 16px; }
  .v2-maintenance-price-grid,
  .v2-maintenance-info__grid { grid-template-columns: 1fr; }
  .v2-maintenance-price-grid article { min-height: 230px; }
  .v2-maintenance-info article { min-height: 430px; }
}

/* Editorial heroes share the same mobile rhythm and hierarchy. */
@media (max-width: 700px) {
  .v2-editorial-hero {
    align-items: start;
    min-height: auto;
    padding-bottom: 86px;
    padding-top: clamp(168px, 22svh, 194px);
  }

  .v2-editorial-hero .v2-contact-hero__inner {
    align-content: start;
    gap: 48px;
  }

  .v2-editorial-hero h1 {
    font-size: clamp(64px, 14vw, 92px) !important;
  }

  .v2-editorial-hero .v2-contact-hero__copy {
    max-width: none;
    width: 100%;
  }

  .v2-editorial-hero .v2-contact-hero__copy .v2-lead {
    font-size: clamp(18px, 4.2vw, 22px);
    line-height: 1.48;
  }

  .v2-editorial-hero .v2-actions,
  .v2-editorial-hero .v2-actions .v2-button {
    width: 100%;
  }

  .v2-contact-page main .v2-editorial-hero a.v2-button,
  .v2-contact-page main .v2-editorial-hero a.v2-button:link,
  .v2-contact-page main .v2-editorial-hero a.v2-button:visited {
    min-height: 72px;
    max-width: none;
    width: 100%;
  }
}
