:root {
  /* Premium V1.5 natural palette */
  --olive: #6b6f4d;
  --estate-green: #263d2c;
  --sage: #516b56;
  --walnut: #6b4e37;
  --ivory: #f2eee6;
  --ivory-soft: #fbf8f1;
  --putty: #cfc4b1;
  --stone-soft: #eee8dd;
  --champagne: #beac8e;
  --deep-teal: #3e4b47;

  /* RGB values for transparent surfaces */
--estate-green-rgb: 38, 61, 44;
--sage-rgb: 81, 107, 86;
--ivory-soft-rgb: 251, 248, 241;
--champagne-rgb: 190, 172, 142;
--walnut-rgb: 107, 78, 55;
--olive-rgb: 107, 111, 77;
--stone-soft-rgb: 238, 232, 221;
--northstar-olive-rgb: 57, 68, 45;

  /* Existing website variable mapping */
  --green-dark: var(--estate-green);
  --green: var(--sage);
  --green-soft: #8d987b;
  --sand: var(--champagne);
  --sand-dark: #927a58;

  --text: #28362d;
  --muted: #6e776f;
  --line: rgba(107, 111, 77, 0.22);
  --shadow: 0 18px 50px rgba(38, 61, 44, 0.12);

  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Trajan Pro", "Cinzel", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  color: var(--ivory-soft);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
background: rgba(var(--northstar-olive-rgb), 0.88);
border-bottom: 1px solid rgba(var(--champagne-rgb), 0.16);
backdrop-filter: blur(12px);
box-shadow: 0 6px 22px rgba(var(--estate-green-rgb), 0.1);
}

.brand img {
  height: 60px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--ivory-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.82;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover {
  color: var(--sand);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(var(--ivory-soft-rgb), 0.24);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ivory-soft);
  margin: 6px auto;
}

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 140px 24px 70px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(var(--estate-green-rgb), 0.24) 0%,
      rgba(var(--estate-green-rgb), 0.42) 55%,
      rgba(var(--estate-green-rgb), 0.72) 100%
    ),
    linear-gradient(
      90deg,
      rgba(var(--estate-green-rgb), 0.28) 0%,
      rgba(var(--estate-green-rgb), 0.12) 50%,
      rgba(var(--estate-green-rgb), 0.28) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
}

/* V1.5 homepage hero refinement */
.hero:not(.sub-hero) {
  align-items: center;
  padding: 132px 24px 76px;
}

.hero:not(.sub-hero) .hero-content {
  max-width: 920px;
  text-align: center;
}

.hero:not(.sub-hero) h1 {
  font-size: clamp(2.25rem, 4.8vw, 4.65rem);
  line-height: 1.04;
  letter-spacing: 0.055em;
}

.hero:not(.sub-hero) .hero-text,
.hero:not(.sub-hero) .access-note {
  margin-left: auto;
  margin-right: auto;
}

.hero:not(.sub-hero) .hero-actions {
  justify-content: center;
}

.hero:not(.sub-hero) .hero-actions .btn {
  width: auto;
  min-width: 150px;
  padding: 0 28px;
  border-radius: 7px;
  white-space: nowrap;
}

.hero:not(.sub-hero) .hero-btn-explore {
  background: rgba(var(--northstar-olive-rgb), 0.94);
  color: var(--ivory-soft);
  border-color: rgba(var(--champagne-rgb), 0.34);
}

.hero:not(.sub-hero) .hero-btn-explore:hover {
  background: rgba(var(--northstar-olive-rgb), 1);
  color: var(--ivory-soft);
  border-color: rgba(var(--champagne-rgb), 0.58);
  transform: translateY(-2px);
}

.hero:not(.sub-hero) .hero-btn-enquire {
  background: rgba(177, 164, 140, 0.92);
  color: var(--estate-green);
  border-color: rgba(var(--ivory-soft-rgb), 0.34);
}

.hero:not(.sub-hero) .hero-btn-enquire:hover {
  background: rgba(190, 177, 151, 0.98);
  color: var(--estate-green);
  border-color: rgba(var(--ivory-soft-rgb), 0.55);
  transform: translateY(-2px);
}

.eyebrow,
.section-label {
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 620px;
  color: rgba(var(--ivory-soft-rgb), 0.82);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.55;
  margin-top: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.access-note {
  margin-top: 30px;
  max-width: 760px;
  color: rgba(var(--ivory-soft-rgb), 0.58);
  font-size: 0.8rem;
  line-height: 1.5;
}

@media (min-width: 851px) {
  .hero:not(.sub-hero) .eyebrow {
    margin-bottom: 20px;
    color: rgba(var(--champagne-rgb), 0.88);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
  }
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--sand);
  color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--ivory-soft);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(var(--ivory-soft-rgb), 0.08);
  color: var(--ivory-soft);
  border-color: rgba(var(--ivory-soft-rgb), 0.28);
}

.btn-secondary:hover {
  background: rgba(var(--ivory-soft-rgb), 0.15);
  border-color: var(--champagne);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--ivory-soft);
  border-color: rgba(255, 250, 240, 0.32);
}

.btn-outline:hover {
  background: rgba(255, 250, 240, 0.1);
  border-color: var(--sand);
}

/* SOCIAL PLAY BUTTONS */

#socials .btn {
  min-width: 156px;
  padding: 0 26px;
  border-radius: 7px;
  white-space: nowrap;
}

#socials .btn-primary {
  background: rgba(177, 164, 140, 0.94);
  color: var(--estate-green);
  border-color: rgba(var(--champagne-rgb), 0.52);
}

#socials .btn-primary:hover {
  background: rgba(190, 177, 151, 1);
  color: var(--estate-green);
  border-color: rgba(var(--ivory-soft-rgb), 0.5);
}

#socials .btn-secondary {
  background: rgba(var(--stone-soft-rgb), 0.08);
  color: var(--ivory-soft);
  border-color: rgba(var(--stone-soft-rgb), 0.42);
}

#socials .btn-secondary:hover {
  background: rgba(var(--stone-soft-rgb), 0.16);
  color: var(--ivory-soft);
  border-color: rgba(var(--stone-soft-rgb), 0.68);
}

/* SECTIONS */

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 110px 0;
}

.intro-section {
  padding-top: 48px;
  padding-bottom: 28px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: end;
}

.intro-grid > div:last-child p:last-child {
  margin-bottom: 0;
}

.intro-grid p {
  font-size: 1.08rem;
  margin-bottom: 20px;
}

.section-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.section-top p {
  font-size: 1.02rem;
}

/* IMAGE STRIP */

.image-strip {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.image-strip img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-strip img:nth-child(2) {
  transform: translateY(34px);
}

/* HOMEPAGE PRIMARY CLUB PATHWAYS */

.hero-services {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 40px), var(--max));
  margin: -42px auto 0;
}

.club-pathways-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(var(--champagne-rgb), 0.38);
  border-radius: 10px;
  background:
  radial-gradient(
    circle at 18% 24%,
    rgba(var(--ivory-soft-rgb), 0.32),
    transparent 34%
  ),
  radial-gradient(
    circle at 82% 72%,
    rgba(var(--walnut-rgb), 0.045),
    transparent 40%
  ),
  linear-gradient(
    105deg,
    rgba(var(--ivory-soft-rgb), 0.12),
    rgba(var(--champagne-rgb), 0.045) 48%,
    rgba(var(--ivory-soft-rgb), 0.09)
  ),
  var(--stone-soft);
  box-shadow:
  0 10px 26px rgba(var(--estate-green-rgb), 0.08),
  inset 0 1px 0 rgba(var(--ivory-soft-rgb), 0.38);
}

.club-pathway {
  min-width: 0;
  min-height: 146px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 23px 18px;
  border-right: 1px solid rgba(var(--champagne-rgb), 0.3);
  transition: background 0.2s ease;
}

.club-pathway:last-child {
  border-right: none;
}

.club-pathway:hover {
  background: rgba(var(--ivory-soft-rgb), 0.5);
}

.pathway-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.pathway-icon-custom {
  background: transparent;
  border-radius: 0;
}

.pathway-icon-custom img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pathway-copy {
  min-width: 0;
  padding-top: 2px;
}

.pathway-copy h3 {
  color: var(--estate-green);
  font-size: 0.96rem;
  line-height: 1.18;
  letter-spacing: 0.065em;
}

.pathway-copy h3::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin: 9px 0 10px;
  background: var(--champagne);
}

.pathway-copy p {
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.48;
}

/* HOMEPAGE SECONDARY FACILITIES */

.club-secondary-pathways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.club-secondary-pathway {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 20px;
  border: 1px solid rgba(var(--champagne-rgb), 0.3);
  border-radius: 8px;
  background:
    linear-gradient(
      105deg,
      rgba(var(--ivory-soft-rgb), 0.2),
      rgba(var(--champagne-rgb), 0.045)
    ),
    var(--stone-soft);
  box-shadow: 0 7px 20px rgba(var(--estate-green-rgb), 0.055);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.club-secondary-pathway:hover {
  background: rgba(var(--ivory-soft-rgb), 0.82);
  border-color: rgba(var(--champagne-rgb), 0.58);
  transform: translateY(-2px);
}

.secondary-pathway-copy h3 {
  margin: 0 0 3px;
  color: var(--estate-green);
  font-size: 0.9rem;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.secondary-pathway-copy p {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.secondary-pathway-arrow {
  flex: 0 0 auto;
  color: var(--walnut);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.club-secondary-pathway:hover .secondary-pathway-arrow {
  transform: translateX(3px);
}

@media (max-width: 850px) {
  /* HOMEPAGE MOBILE FACILITIES */

  .hero-services {
    width: min(calc(100% - 28px), var(--max));
    margin-top: -34px;
  }

  .club-pathways-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .club-pathway {
    min-height: 72px;
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(var(--champagne-rgb), 0.3);
    border-radius: 8px;
    background:
      linear-gradient(
        105deg,
        rgba(var(--ivory-soft-rgb), 0.2),
        rgba(var(--champagne-rgb), 0.045)
      ),
      var(--stone-soft);
    box-shadow: 0 7px 20px rgba(var(--estate-green-rgb), 0.055);
  }

  .club-pathway::after {
    content: "→";
    grid-column: 3;
    grid-row: 1;
    color: var(--walnut);
    font-size: 1.05rem;
    line-height: 1;
  }

  .pathway-icon {
    width: 42px;
    height: 42px;
  }

  .pathway-icon svg {
    width: 23px;
    height: 23px;
  }

  .pathway-copy {
    padding-top: 0;
  }

  .pathway-copy h3 {
    margin: 0 0 3px;
    font-size: 0.9rem;
    line-height: 1.15;
  }

  .pathway-copy h3::after {
    display: none;
  }

  .pathway-copy p {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .club-secondary-pathways {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
  }

  .club-secondary-pathway {
    min-height: 64px;
    padding: 12px 16px;
  }
}

/* CARDS */

.card-grid {
  display: grid;
  gap: 18px;
}

.five-grid {
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  min-height: 235px;
  padding: 26px;
  border-radius: 10px;
  background: rgba(var(--ivory-soft-rgb), 0.94);
  border: 1px solid rgba(var(--champagne-rgb), 0.34);
  box-shadow: 0 10px 30px rgba(var(--estate-green-rgb), 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.service-card span {
  color: var(--sand-dark);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.service-card h3 {
  color: var(--green-dark);
  margin: 28px 0 14px;
}

.service-card p {
  font-size: 0.94rem;
}

.accent-card {
  background: var(--green-dark);
}

.accent-card h3,
.accent-card p {
  color: var(--ivory-soft);
}

.accent-card span {
  color: var(--sand);
}

/* FEATURE SECTIONS */

.feature-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.feature-section.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-section.reverse .feature-image {
  order: 2;
}

.feature-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-content {
  padding: 30px 0;
}

.feature-content p {
  font-size: 1.04rem;
  margin: 24px 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}

.pill-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(70, 97, 77, 0.1);
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

/* HOMEPAGE COACHING LABELS */

#coaching .pill-list {
  gap: 9px;
}

#coaching .pill-list span {
  padding: 9px 13px;
  border-radius: 7px;
  background: rgba(var(--stone-soft-rgb), 0.78);
  color: var(--estate-green);
  border: 1px solid rgba(var(--champagne-rgb), 0.26);
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--sand-dark);
  padding-bottom: 4px;
}

.text-link:hover {
  color: var(--sand-dark);
}

/* DARK SECTION */

.dark-section {
  width: 100%;
  max-width: none;
  padding: 110px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--green-dark);
  color: var(--ivory-soft);
}

.dark-section h2,
.dark-section p {
  color: var(--ivory-soft);
}

.dark-section p {
  opacity: 0.74;
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.wide-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

/* HOMEPAGE IMAGE FRAMES */

.image-strip img,
#coaching .feature-image img,
#services .feature-image img,
#socials .wide-image img {
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(var(--estate-green-rgb), 0.1);
}

/* OFFICIAL DPRC PALM-SHADOW TRANSITION */

#coaching.feature-section {
  position: relative;
  isolation: isolate;
}

@media (min-width: 851px) {
#coaching.feature-section::before {
  content: "";
  position: absolute;
  top: -185px;
  right: -310px;
  z-index: 0;
  width: 880px;
  height: 500px;
  background:
    url("assets/palm-shadow.png")
    center / contain
    no-repeat;
opacity: 0.12;
filter: none;
  transform: rotate(-10deg);
  pointer-events: none;
}
}

/* HOMEPAGE COACHING EDITORIAL FEATURE */

@media (min-width: 1051px) {
#coaching.feature-section {
  position: relative;
  grid-template-columns: minmax(0, 1.2fr) minmax(500px, 0.9fr);
  gap: 0;
  align-items: center;
  padding: 82px 0;
}

  #coaching .feature-image {
    position: relative;
    z-index: 1;
  }

#coaching .feature-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
}

#coaching .feature-content {
  position: relative;
  z-index: 2;
  margin-left: -86px;
  padding: 36px 38px;
  border: 1px solid rgba(var(--champagne-rgb), 0.3);
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      rgba(var(--ivory-soft-rgb), 0.98),
      rgba(var(--stone-soft-rgb), 0.96)
    );
  box-shadow: 0 14px 32px rgba(var(--estate-green-rgb), 0.09);
}

#coaching .feature-content h2 {
  max-width: 470px;
  font-size: clamp(2.15rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0.025em;
}

  #coaching .feature-content p {
    margin: 22px 0;
  }

  #coaching .pill-list {
    margin: 24px 0 26px;
  }
}

#socials.dark-section {
  background: rgb(var(--northstar-olive-rgb));
}

/* HOMEPAGE RACKET SERVICES EDITORIAL FEATURE */

@media (min-width: 1051px) {
  #services.feature-section {
    position: relative;
    grid-template-columns: minmax(500px, 0.9fr) minmax(0, 1.2fr);
    gap: 0;
    align-items: center;
    padding: 82px 0;
  }

  #services .feature-content {
    position: relative;
    z-index: 2;
    margin-right: -86px;
    padding: 36px 38px;
    border: 1px solid rgba(var(--champagne-rgb), 0.3);
    border-radius: 10px;
    background:
      linear-gradient(
        135deg,
        rgba(var(--ivory-soft-rgb), 0.98),
        rgba(var(--stone-soft-rgb), 0.96)
      );
    box-shadow: 0 14px 32px rgba(var(--estate-green-rgb), 0.09);
  }

  #services .feature-image {
    position: relative;
    z-index: 1;
    order: 2;
  }

  #services .feature-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center;
  }

  #services .feature-content h2 {
    max-width: 470px;
    font-size: clamp(2.15rem, 3vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: 0.025em;
  }

  #services .feature-content > p {
    margin: 22px 0;
  }

#services .mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 24px 0 26px;
}

  #services .mini-grid div {
    padding: 9px 13px;
    border-radius: 7px;
    background: rgba(var(--stone-soft-rgb), 0.78);
    border: 1px solid rgba(var(--champagne-rgb), 0.26);
    box-shadow: none;
  }

  #services .mini-grid h3 {
    margin: 0;
    color: var(--estate-green);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
  }

  #services .mini-grid p {
    display: none;
  }
}

/* MINI GRID */

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 30px 0;
}

.mini-grid div {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.62);
}

.mini-grid h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
}

.mini-grid p {
  margin: 0;
  font-size: 0.9rem;
}

/* HOMEPAGE RACKET SERVICE TILES */

#services .mini-grid {
  gap: 10px;
}

#services .mini-grid div {
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(var(--stone-soft-rgb), 0.62);
  border: 1px solid rgba(var(--champagne-rgb), 0.28);
  box-shadow: inset 0 1px 0 rgba(var(--ivory-soft-rgb), 0.34);
}

#services .mini-grid h3 {
  margin-bottom: 8px;
  color: var(--estate-green);
  font-size: 0.96rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

#services .mini-grid p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

/* ACCESS */

.access-section {
  padding-top: 80px;
}

.access-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      rgba(var(--ivory-soft-rgb), 0.92),
      rgba(var(--stone-soft-rgb), 0.68)
    ),
    url("assets/access.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(var(--champagne-rgb), 0.3);
  box-shadow: 0 12px 32px rgba(var(--estate-green-rgb), 0.08);
}

.access-card p {
  max-width: 680px;
  font-size: 1.05rem;
  margin-top: 18px;
}

/* CONTACT */

.contact-section {
  padding-top: 40px;
}

.contact-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 54px;
  align-items: center;
  padding: 52px;
border-radius: 10px;
background: rgb(var(--northstar-olive-rgb));
color: var(--ivory-soft);
border: 1px solid rgba(var(--champagne-rgb), 0.2);
box-shadow: 0 12px 32px rgba(var(--estate-green-rgb), 0.1);
}

.contact-card img {
  width: 210px;
  margin: 0 auto;
}

.contact-card h2,
.contact-card p,
.contact-card a {
  color: var(--ivory-soft);
}

.contact-card p {
  opacity: 0.82;
  margin-top: 14px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* FOOTER */

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 30px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .five-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child {
    grid-column: span 2;
  }

  .feature-section,
  .feature-section.reverse {
    grid-template-columns: 1fr;
  }

  .feature-section.reverse .feature-image {
    order: 0;
  }

  .feature-image img {
    height: 520px;
  }
}

@media (max-width: 850px) {
  :root {
    --radius: 22px;
  }

.site-header {
  height: 68px;
  padding: 0 14px;
}

  .brand img {
    height: 46px;
  }

  .menu-toggle {
    display: block;
  }

.site-nav {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 12px 16px;
  border-radius: 0 0 20px 20px;
  background: rgba(var(--estate-green-rgb), 0.98);
  border-bottom: 1px solid rgba(var(--champagne-rgb), 0.2);
  box-shadow: 0 18px 40px rgba(var(--estate-green-rgb), 0.18);
}

  .site-nav.active {
    display: flex;
  }

.site-nav a {
  width: 100%;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(var(--ivory-soft-rgb), 0.1);
}

  .hero {
    min-height: 92vh;
    padding: 120px 20px 54px;
  }

  .hero:not(.sub-hero) {
  min-height: 88vh;
  padding: 108px 20px 52px;
}

.hero:not(.sub-hero) h1 {
  font-size: clamp(2.35rem, 11vw, 3.8rem);
  line-height: 1.05;
}

.hero:not(.sub-hero) .hero-actions {
  width: min(100%, 360px);
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.hero:not(.sub-hero) .hero-actions .btn {
  width: 100%;
}

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-grid,
  .section-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .image-strip {
    grid-template-columns: 1fr;
  }

  .image-strip img,
  .image-strip img:nth-child(2) {
    height: 280px;
    transform: none;
  }

  .contact-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .contact-actions {
    justify-content: center;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.8rem;
  }

  .section {
    width: min(calc(100% - 28px), var(--max));
    padding: 80px 0;
  }

  .five-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .feature-section {
    width: min(calc(100% - 28px), var(--max));
    padding: 60px 0;
  }

  .feature-image img {
    height: 380px;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .access-card {
    padding: 34px 24px;
  }

  .wide-image img {
    height: 340px;
  }

  .btn {
    width: 100%;
  }

  .contact-actions .btn {
    width: 100%;
  }
}
/* V1 polish: mobile Social Play section */
@media (max-width: 620px) {
  #socials.dark-section {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 80px 20px;
  }

  #socials h2 {
    font-size: 2.05rem;
    line-height: 1.08;
    letter-spacing: 0.01em;
  }

  #socials .section-top {
    gap: 22px;
  }

  #socials .section-top p {
    font-size: 0.98rem;
  }

  #socials .wide-image img {
    height: 300px;
  }
}

/* V1 polish: contact icon buttons */
.icon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--stone-soft-rgb), 0.08);
  border: 1px solid rgba(var(--champagne-rgb), 0.34);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.icon-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.icon-btn:hover {
  background: rgba(var(--stone-soft-rgb), 0.16);
  border-color: rgba(var(--champagne-rgb), 0.7);
  transform: translateY(-2px);
}

@media (max-width: 850px) {
  .icon-actions {
    justify-content: center;
  }
}
/* ENQUIRY FORM - COMPACT */

.enquiry-section {
  padding-top: 60px;
  padding-bottom: 70px;
}

.enquiry-section .section-top {
  margin-bottom: 28px;
}

.enquiry-section h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.enquiry-form {
  padding: 28px;
  border-radius: 10px;
  background: rgba(var(--ivory-soft-rgb), 0.72);
  border: 1px solid rgba(var(--champagne-rgb), 0.3);
  box-shadow: 0 10px 30px rgba(var(--estate-green-rgb), 0.07);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(70, 97, 77, 0.2);
  border-radius: 7px;
  background: rgba(255, 250, 240, 0.88);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  padding: 11px 13px;
  outline: none;
  transition: 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 88px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(102, 115, 106, 0.58);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sand-dark);
  background: var(--ivory-soft);
  box-shadow: 0 0 0 3px rgba(200, 178, 140, 0.14);
}

.full-field {
  grid-column: span 2;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.form-actions .btn {
  border: none;
  border-radius: 7px;
  cursor: pointer;
  min-height: 44px;
}

.enquiry-form .form-actions .btn-primary {
  background: rgba(163, 151, 129, 0.98);
  color: var(--estate-green);
  border: 1px solid rgba(var(--champagne-rgb), 0.48);
}

.enquiry-form .form-actions .btn-primary:hover {
  background: rgba(177, 164, 140, 1);
  color: var(--estate-green);
  border-color: rgba(var(--champagne-rgb), 0.7);
  transform: translateY(-2px);
}

.form-actions p {
  max-width: 460px;
  font-size: 0.84rem;
  color: var(--muted);
}

/* MOBILE FORM */

@media (max-width: 850px) {
  .enquiry-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .enquiry-form {
    padding: 22px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions p {
    text-align: center;
  }
}
/* V1 polish: calmer premium section headings */
.section-top h2,
.feature-content h2,
.access-card h2,
.contact-card h2 {
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  line-height: 1.14;
  letter-spacing: 0.025em;
}

.feature-content h2 {
  max-width: 760px;
}

.section-top h2 {
  max-width: 760px;
}

@media (max-width: 850px) {
  .section-top h2,
  .feature-content h2,
  .access-card h2,
  .contact-card h2 {
    font-size: clamp(1.75rem, 7vw, 2.6rem);
    line-height: 1.12;
  }
}
/* V1 polish: calmer intro heading */
.intro-grid h2 {
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  line-height: 1.14;
  letter-spacing: 0.025em;
  max-width: 760px;
}

@media (max-width: 850px) {
  .intro-grid h2 {
    font-size: clamp(1.75rem, 7vw, 2.6rem);
    line-height: 1.12;
  }
}

/* V1 polish: anchor landing */
[id] {
  scroll-margin-top: 96px;
}

/* MOBILE NAVIGATION LANDINGS */
@media (max-width: 850px) {
  /* Facilities cards sit directly beneath the fixed header */
  #facilities {
    scroll-margin-top: 68px;
  }

  /* These sections have 60px internal top padding */
  #coaching,
  #services {
    scroll-margin-top: 18px;
  }

  /* Socials already has 80px internal top padding */
  #socials {
    scroll-margin-top: 0;
  }

  /* Enquiry has 50px internal top padding */
  #enquiry {
    scroll-margin-top: 28px;
  }
}

/* V1.5 detail-page hero refinement */

.sub-hero {
  min-height: 100vh;
  align-items: center;
  padding: 132px 24px 76px;
}

.sub-hero .hero-content {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.sub-hero h1 {
  font-size: clamp(2.7rem, 5.2vw, 5.3rem);
  line-height: 1.03;
  letter-spacing: 0.045em;
}

.sub-hero .hero-text {
  max-width: 900px;
  margin: 18px auto 0;
  line-height: 1.5;
  white-space: nowrap;
}

/* RACKET SERVICES HERO */

.racket-hero .hero-content {
  max-width: 1120px;
}

.racket-hero .hero-text {
  width: 100%;
  max-width: none;
  text-align: center;
}

.racket-philosophy .btn {
  border-radius: 7px;
}

.sub-hero .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.sub-hero .hero-actions .btn {
  min-width: 190px;
  padding: 0 26px;
  border-radius: 7px;
  white-space: nowrap;
}

.sub-hero .btn-primary {
  background: rgba(177, 164, 140, 0.94);
  color: var(--estate-green);
  border-color: rgba(var(--champagne-rgb), 0.48);
}

.sub-hero .btn-primary:hover {
  background: rgba(190, 177, 151, 1);
  color: var(--estate-green);
  border-color: rgba(var(--ivory-soft-rgb), 0.5);
}

.sub-hero .btn-secondary {
  background: rgba(var(--northstar-olive-rgb), 0.9);
  color: var(--ivory-soft);
  border-color: rgba(var(--champagne-rgb), 0.34);
}

.sub-hero .btn-secondary:hover {
  background: rgb(var(--northstar-olive-rgb));
  color: var(--ivory-soft);
  border-color: rgba(var(--champagne-rgb), 0.62);
}

/* SQUASH PAGE HERO */

.squash-hero .hero-content {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.squash-hero .eyebrow {
  margin-bottom: 22px;
}

.squash-hero .hero-text {
  max-width: 920px;
  margin: 26px auto 0;
  line-height: 1.55;
  text-align: center;
  white-space: normal;
}

.squash-hero .squash-hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.squash-hero .squash-hero-actions .btn {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 7px !important;
  white-space: nowrap;
}

.squash-hero .squash-btn-primary {
  width: 238px;
}

.squash-hero .squash-btn-secondary {
  width: 190px;
}

@media (max-width: 850px) {
  .squash-hero .squash-hero-actions {
    width: min(100%, 360px);
    flex-direction: column;
    align-items: stretch;
  }

  .squash-hero .squash-btn-primary,
  .squash-hero .squash-btn-secondary {
    width: 100%;
  }
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* TENNIS PAGE OPTION BLOCK */

.tennis-options {
  padding-top: 72px;
  padding-bottom: 38px;
}

/* TENNIS PAGE ENQUIRY BANNER */

.tennis-enquiry-banner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.tennis-enquiry-banner img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(var(--estate-green-rgb), 0.1);
}

#tennis-enquiry,
#pickleball-enquiry,
#racket-enquiry,
#squash-enquiry,
#basketball-enquiry {
  padding-top: 58px;
  padding-bottom: 72px;
}

#tennis-enquiry .section-top,
#pickleball-enquiry .section-top,
#racket-enquiry .section-top,
#squash-enquiry .section-top,
#basketball-enquiry .section-top {
  align-items: end;
  margin-bottom: 28px;
}

#tennis-enquiry .section-top > p,
#pickleball-enquiry .section-top > p,
#racket-enquiry .section-top > p,
#squash-enquiry .section-top > p,
#basketball-enquiry .section-top > p {
  max-width: 470px;
  margin-bottom: 0;
}

#tennis-enquiry .enquiry-form,
#pickleball-enquiry .enquiry-form,
#racket-enquiry .enquiry-form,
#squash-enquiry .enquiry-form,
#basketball-enquiry .enquiry-form {
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(var(--estate-green-rgb), 0.08);
}

#squash-enquiry,
#basketball-enquiry {
  scroll-margin-top: 42px;
}

.tennis-options .three-grid {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--champagne-rgb), 0.34);
  border-radius: 10px;
  background: var(--stone-soft);
  box-shadow:
    0 10px 28px rgba(var(--estate-green-rgb), 0.07),
    inset 0 1px 0 rgba(var(--ivory-soft-rgb), 0.34);
}

.tennis-options .service-card {
  min-height: 210px;
  padding: 30px 28px;
  border: 0;
  border-right: 1px solid rgba(var(--champagne-rgb), 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  justify-content: flex-start;
}

.tennis-options .service-card:last-child {
  border-right: none;
}

.tennis-options .service-card h3 {
  margin: 0 0 16px;
  color: var(--estate-green);
  font-size: 1.08rem;
  line-height: 1.2;
}

.tennis-options .service-card h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 12px;
  background: var(--champagne);
}

.tennis-options .service-card p {
  max-width: 310px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

@media (max-width: 850px) {
  .three-grid {
    grid-template-columns: 1fr;
  }

  .sub-hero .hero-text {
  white-space: normal;
}

  .sub-hero {
    min-height: 72vh;
  }

  .tennis-options {
    padding-top: 54px;
    padding-bottom: 26px;
  }

  .tennis-enquiry-banner {
    width: 100%;
    max-width: none;
  }

  .tennis-enquiry-banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
  }

#tennis-enquiry,
#pickleball-enquiry,
#racket-enquiry {
  padding-top: 44px;
}

  .tennis-options .service-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(var(--champagne-rgb), 0.28);
  }

  .tennis-options .service-card:last-child {
    border-bottom: 0;
  }
}

/* V1.5 detail page image duo */

.detail-image-duo {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.detail-image-duo img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(var(--estate-green-rgb), 0.1);
}

/* TENNIS PAGE EDITORIAL IMAGE PAIR */

.tennis-image-duo {
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
}

.tennis-image-duo img:first-child {
  height: 410px;
}

.tennis-image-duo img:last-child {
  height: 350px;
}

@media (max-width: 850px) {
  .detail-image-duo {
    width: min(calc(100% - 28px), var(--max));
    grid-template-columns: 1fr;
  }

  .detail-image-duo img,
  .tennis-image-duo img:first-child,
  .tennis-image-duo img:last-child {
    height: 300px;
  }
}

/* V1.5 clickable facility cards */
.service-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.service-card-link:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--champagne-rgb), 0.68);
  box-shadow: 0 16px 38px rgba(var(--estate-green-rgb), 0.11);
}

.service-card-link:focus-visible {
  outline: 3px solid rgba(156, 131, 92, 0.45);
  outline-offset: 4px;
}

/* V1.5 DETAIL PAGE IMAGE GRID */

.detail-image-grid {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.detail-image-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(var(--estate-green-rgb), 0.1);
}

/* PICKLEBALL PAGE EDITORIAL IMAGE GROUP */

.pickleball-image-grid {
  grid-template-columns: 0.94fr 1.12fr 0.94fr;
}

.pickleball-image-grid img:first-child,
.pickleball-image-grid img:last-child {
  height: 330px;
}

.pickleball-image-grid img:first-child {
  transform: translateY(-40px);
}

.pickleball-image-grid img:nth-child(2) {
  height: 370px;
  transform: none;
}

/* RACKET SERVICES EDITORIAL IMAGE GROUP */

.racket-image-grid {
  grid-template-columns: 0.94fr 1.12fr 0.94fr;
}

.racket-image-grid img:first-child,
.racket-image-grid img:last-child {
  height: 330px;
}

.racket-image-grid img:nth-child(2) {
  height: 370px;
  transform: none;
}

.racket-image-grid img:first-child {
  transform: translateY(-40px);
}

@media (max-width: 850px) {
  .detail-image-grid {
    width: min(calc(100% - 28px), var(--max));
    grid-template-columns: 1fr;
  }

.detail-image-grid img,
.pickleball-image-grid img:first-child,
.pickleball-image-grid img:nth-child(2),
.pickleball-image-grid img:last-child,
.racket-image-grid img:first-child,
.racket-image-grid img:nth-child(2),
.racket-image-grid img:last-child {
  height: 300px;
  transform: none;
}
}

/* V1.5 mobile-only section rhythm */
.mobile-section-image {
  display: none;
}

@media (max-width: 850px) {
  .mobile-section-image {
    display: block;
    margin: 26px 0 26px;
  }

  .mobile-section-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  /* Hide desktop/supporting image layouts on mobile where we now use one main section image */
  .image-strip {
    display: none;
  }

  .feature-section > .feature-image {
    display: none;
  }

  #socials .wide-image {
    display: none;
  }

  /* Tighten mobile section flow */
  .intro-grid {
    gap: 20px;
  }

  .feature-content {
    padding: 0;
  }

  .feature-content p {
    margin-top: 0;
  }

  #socials .section-top {
    margin-bottom: 28px;
  }
}
/* V1.5 mobile-only detail page rhythm */
@media (max-width: 850px) {
  .detail-image-duo,
  .detail-image-grid {
    display: none;
  }
}
/* V1.5 full-width update ticker */
body {
  padding-bottom: calc(54px + env(safe-area-inset-bottom));
}

.dprc-update-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(44px + env(safe-area-inset-bottom));
  z-index: 80;
  overflow: hidden;
  background: rgba(var(--northstar-olive-rgb), 0.97);
  border-top: 1px solid rgba(var(--champagne-rgb), 0.22);
  box-shadow: 0 -8px 24px rgba(var(--estate-green-rgb), 0.14);
  backdrop-filter: blur(12px);
  padding-bottom: env(safe-area-inset-bottom);
}

.dprc-update-track {
  height: 44px;
  display: flex;
  align-items: center;
  width: max-content;
  animation: dprcTicker 42s linear infinite;
}

.dprc-update-bar:hover .dprc-update-track {
  animation-play-state: paused;
}

.dprc-update-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 26px;
  color: rgba(var(--ivory-soft-rgb), 0.84);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
}

.dprc-update-item::after {
  content: "•";
  color: rgba(var(--champagne-rgb), 0.72);
  margin-left: 12px;
}

.dprc-update-item strong {
  color: var(--champagne);
  font-weight: 800;
}

.dprc-update-item:hover {
  color: var(--sand);
}

@keyframes dprcTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 850px) {
  body {
    padding-bottom: calc(46px + env(safe-area-inset-bottom));
  }

  .dprc-update-bar {
    height: calc(38px + env(safe-area-inset-bottom));
  }

  .dprc-update-track {
    height: 38px;
  }

  .dprc-update-item {
    gap: 9px;
    padding: 0 18px;
    font-size: 0.64rem;
    letter-spacing: 0.075em;
  }

  .dprc-update-item::after {
    margin-left: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dprc-update-track {
    animation: none;
  }

  .dprc-update-bar {
    overflow-x: auto;
  }
}