/* ---------- Tokens ---------- */
:root {
  --bg: #ecedef;
  --bg-2: #d5d5d5;
  --bg-3: #242424;
  --bg-4: #e4e4e4;
  --brand-1: #1e1e1e;
  --text-primary: #242424;
  --text-secondary: #565656;
  --text-tertiary: #797979;
  --text-quaternary: #a1a1a1;
  --white: #ffffff;
  --radius: 15px;
  --radius-pill: 30px;

  --font-display: "Anta", sans-serif;
  --font-body:
    "Avenir Next", Avenir, "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.4;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1272px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1312px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text-primary);
  margin-bottom: 25px;
}

.section-title--center {
  text-align: center;
  margin-bottom: 40px;
}

section {
  padding: 60px 0;
}

/* ---------- Motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  white-space: nowrap;
}

.btn-light {
  background: var(--bg);
  color: var(--text-primary);
}
.btn-dark {
  background: var(--brand-1);
  color: var(--bg);
}
.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.icon-btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.icon-btn--flip img {
  transform: scaleX(-1);
}

/* ---------- Nav ---------- */
.nav-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding-top: 25px;
  padding-bottom: 25px;
}

.nav-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 28px;
  width: auto;
}

.nav-items {
  display: flex;
  gap: 40px;
  color: #ecedef;
  font-size: 16px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 25px;
}
.nav-cart img {
  width: 100%;
  height: 100%;
}

.nav-toggle {
  display: none;
  width: 26px;
  height: 25px;
}
.nav-toggle img {
  width: 100%;
  height: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 865px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ecedef;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.hero-object-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 55px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 590px;
}

.hero-subtext {
  max-width: 325px;
  font-size: 18px;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-headline-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.05;
  text-align: right;
  text-shadow: -4px 0 18.8px rgba(0, 0, 0, 0.25);
}

.hero-arrows {
  display: flex;
  gap: 17px;
}

/* ---------- New Drops ---------- */
.drops-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.drops-track::-webkit-scrollbar {
  display: none;
}

.drop-card {
  position: relative;
  flex: 0 0 270px;
  height: 357px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
}

.drop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drop-card:hover::after {
  opacity: 1;
}

.drop-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-weight: 500;
  font-size: 30px;
  color: #ecedef;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.drop-card:hover .drop-label {
  opacity: 1;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-quaternary);
  padding: 0;
}
.dot.is-active {
  background: var(--text-primary);
}

/* ---------- Products ---------- */
.racquet-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.racquet-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.racquet-name {
  font-size: 20px;
}
.racquet-colors {
  width: 92px;
}

.racquet-swatches {
  display: flex;
  gap: 13px;
}
.racquet-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 2px transparent;
  transition: box-shadow 0.2s ease;
}
.racquet-swatch.is-active {
  box-shadow: 0 0 0 2px #ecedef, 0 0 0 4px var(--text-primary, #242424);
}

.racquet-display {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.racquet-figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(780px, 92vw);
  aspect-ratio: 780 / 720;
}

.racquet-watermark {
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 130px);
  line-height: 1.15;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(149, 152, 149, 0.2),
    color-mix(in srgb, var(--racquet-accent, #bcea64) 20%, transparent)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.racquet-img {
  position: absolute;
  height: 100%;
  max-height: 720px;
  width: auto;
  opacity: 1;
  transition: opacity 0.15s ease;
}
.racquet-img.is-fading {
  opacity: 0;
}

/* ---------- Services ---------- */
.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  border-top: 1px solid rgba(36, 36, 36, 0.15);
  padding: 16px 0;
}
.service-item:last-child {
  border-bottom: 1px solid rgba(36, 36, 36, 0.15);
}

.service-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 26px;
  color: var(--text-tertiary);
  padding: 5px 0;
  transition: color 0.3s ease;
}

.service-item.is-open .service-toggle,
.service-toggle:hover {
  color: var(--text-primary);
  font-size: 26px;
}

.service-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin: -8px;
  cursor: pointer;
  flex-shrink: 0;
}

.service-icon {
  width: 19px;
  height: 19px;
}

.service-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin-top 0.4s ease;
}

.service-item.is-open .service-body {
  margin-top: 16px;
  max-height: 500px;
  opacity: 1;
}

.service-icon-btn img {
  transition: transform 0.3s ease;
}

.service-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  max-width: 594px;
  align-self: stretch;
}

.service-text p {
  color: var(--text-tertiary);
  font-size: 18px;
}
.service-text .btn {
  align-self: flex-start;
}

.service-img {
  flex: 1 1 400px;
  min-width: 0;
  max-width: 559px;
  aspect-ratio: 559 / 308;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

/* ---------- About ---------- */
.about-wrap {
  padding-top: 0;
}

.about {
  background: var(--brand-1);
  border-radius: var(--radius);
  padding: 50px clamp(24px, 5vw, 70px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #ecedef;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 55px);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 659px;
}

.about-text p {
  color: #d5d5d5;
  font-size: 18px;
  max-width: 522px;
}

/* ---------- Brands ---------- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 15px;
}

.brand-tile {
  aspect-ratio: 1;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.brand-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-tile--all {
  font-size: 14px;
  white-space: nowrap;
  padding: 10px;
}

/* ---------- Community ---------- */
.community {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: stretch;
}

.community-title {
  flex: 1 1 300px;
  max-width: 349px;
  display: flex;
  flex-direction: column;
}
.community-title .section-title {
  line-height: 1.1;
}

.community-pics {
  margin-top: 20px;
  display: flex;
  align-items: stretch;
  gap: 15px;
  flex: 1 1 auto;
}

.community-main {
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1 1 auto;
}
.community-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-self: flex-end;
}
.community-arrow {
  width: 29px;
  height: 29px;
  display: flex;
  flex-shrink: 0;
}
.community-arrow img {
  width: 100%;
  height: 100%;
}

.quotes {
  flex: 2 1 500px;
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.quotes::-webkit-scrollbar {
  display: none;
}

.quote-card {
  flex: 0 0 305px;
  scroll-snap-align: start;
  background: var(--bg-4);
  border-radius: var(--radius);
  padding: 30px 33px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.quote-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}
.quote-mark {
  width: 26px;
  height: 20px;
  margin-top: 20px;
}
.quote-text {
  font-size: 20px;
  margin-top: 10px;
}

.quote-name {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.quote-name p:first-child {
  font-size: 16px;
}
.quote-role {
  font-style: italic;
  font-size: 14px;
  color: var(--text-tertiary);
}

/* ---------- Contact ---------- */
.contact {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-map-col {
  flex: 1 1 400px;
  max-width: 541px;
}
.contact-map {
  width: 100%;
  height: 371px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 30px;
}

.contact-form-col {
  flex: 1 1 400px;
  max-width: 599px;
}

.form-row {
  display: flex;
  gap: 44px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--text-primary);
  flex: 1 1 200px;
}

.contact-form label.form-message {
  gap: 20px;
  margin-bottom: 30px;
}

.contact-form input {
  border: none;
  border-bottom: 1px solid rgba(36, 36, 36, 0.3);
  background: transparent;
  padding: 0;
  font: inherit;
  color: var(--text-primary);
}
.contact-form input:focus {
  outline: none;
  border-bottom-color: var(--text-primary);
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-tertiary);
  min-height: 1em;
}

.contact-info-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
  font-size: 14px;
}

.contact-info-row .label {
  color: var(--text-tertiary);
  /* margin-bottom: 12px; */
}
.contact-info {
  display: flex;
  flex-direction: column;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  flex: 1 1 auto;
}
.mail-to {
    margin-top: 10px;
}
.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-socials a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-socials img {
  width: 14px;
  height: 14px;
}

/* ---------- Footer ---------- */
.footer {
  padding-top: 45px;
  padding-bottom: 30px;
}

.footer-top {
  border-top: 1px solid rgba(36, 36, 36, 0.15);
  padding-top: 45px;
  display: flex;
  align-items: flex-start;
  gap: clamp(80px, 14vw, 220px);
  flex-wrap: wrap;
}

.footer-cols {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1 1 auto;
}

.footer-logo {
  height: 37px;
  width: auto;
  flex-shrink: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer-heading {
  font-weight: 600;
  font-size: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-links a {
  color: var(--text-tertiary);
  font-size: 16px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--text-primary);
}

.footer-signup {
  flex: 1 1 300px;
  max-width: 336px;
}
.footer-signup p {
  margin-bottom: 25px;
}

#newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
#newsletter-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(36, 36, 36, 0.3);
  background: transparent;
  font: inherit;
  padding: 4px 0 8px;
  color: var(--text-primary);
  margin-bottom: 15px;
}
#newsletter-form input:focus {
  outline: none;
  border-bottom-color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(36, 36, 36, 0.15);
  font-size: 14px;
  color: var(--text-tertiary);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-items {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  body.nav-open .nav-items {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 20px;
    background: var(--brand-1);
    padding: 24px;
  }
  .hero-headline-wrap {
    align-items: flex-start;
  }
  .hero-headline {
    text-align: left;
  }
  .hero-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  section {
    padding: 40px 0;
  }
  .hero {
    min-height: 640px;
  }
  .hero-content {
    padding-top: 140px;
  }
  .about {
    flex-direction: column;
    align-items: flex-start;
  }
  .racquet-figure {
    width: min(480px, 90vw);
  }
}
