:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --panel: #ffffff;
  --panel-2: #f4f4f4;
  --line: rgba(0, 0, 0, 0.1);
  --line-strong: rgba(0, 0, 0, 0.16);
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.74);
  --dim: rgba(17, 17, 17, 0.56);
  --accent: #d71920;
  --shell: min(100% - 40px, 1320px);
  --headline: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Noto Sans JP", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.titleist-home {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.035), transparent 26%),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.page-shell {
  overflow: clip;
}

.titleist-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.titleist-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.titleist-header__inner {
  width: var(--shell);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.titleist-nav-shell {
  display: flex;
  align-items: center;
  gap: 28px;
}

.titleist-logo,
.hero-label,
.section-label,
.promo-card__kicker,
.search-rail__eyebrow {
  font-family: var(--headline);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-section .hero-label,
.hero-section h1 {
  color: #fff;
}

.titleist-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  font-weight: 700;
  z-index: 6;
  white-space: nowrap;
}

.titleist-menu-toggle {
  display: none;
  position: relative;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(83, 217, 255, 0.26);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(168, 240, 255, 0.42)),
    rgba(255, 255, 255, 0.84);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 10px 28px rgba(41, 190, 255, 0.14),
    0 0 22px rgba(41, 190, 255, 0.1);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.titleist-menu-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #0c1b2a;
  box-shadow: 0 0 12px rgba(71, 221, 255, 0.4);
  transform: translateX(-50%);
  transition:
    transform 0.28s ease,
    opacity 0.22s ease,
    top 0.28s ease;
}

.titleist-menu-toggle span:nth-child(1) {
  top: 18px;
}

.titleist-menu-toggle span:nth-child(2) {
  top: 26px;
}

.titleist-menu-toggle span:nth-child(3) {
  top: 34px;
}

.titleist-menu-toggle.is-active span:nth-child(1) {
  top: 26px;
  transform: translateX(-50%) rotate(45deg);
}

.titleist-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.titleist-menu-toggle.is-active span:nth-child(3) {
  top: 26px;
  transform: translateX(-50%) rotate(-45deg);
}

.titleist-nav,
.titleist-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.titleist-dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.titleist-dropdown__toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.76rem;
  cursor: pointer;
}

.titleist-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 220px;
  padding: 12px;
  border: 1px solid rgba(105, 214, 255, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(235, 248, 255, 0.9)),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px) scale(0.96);
  transition:
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  backdrop-filter: blur(18px);
  overflow: hidden;
  z-index: 20;
}

.titleist-dropdown__menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 34%, transparent 68%, rgba(91, 223, 255, 0.18)),
    radial-gradient(circle at top right, rgba(130, 236, 255, 0.36), transparent 34%);
  opacity: 0.88;
  pointer-events: none;
}

.titleist-dropdown__menu a {
  position: relative;
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 0.26s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 1;
}

.titleist-dropdown__menu a:hover {
  background: rgba(255, 255, 255, 0.56);
  box-shadow:
    0 0 0 1px rgba(95, 221, 255, 0.18) inset,
    0 10px 20px rgba(63, 206, 255, 0.14);
}

.titleist-dropdown.is-open .titleist-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
  box-shadow:
    0 24px 44px rgba(9, 18, 32, 0.18),
    0 0 28px rgba(84, 223, 255, 0.16);
}

.titleist-dropdown.is-open .titleist-dropdown__menu a {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.titleist-dropdown.is-open .titleist-dropdown__menu a:nth-child(1) {
  transition-delay: 0.04s;
}

.titleist-dropdown.is-open .titleist-dropdown__menu a:nth-child(2) {
  transition-delay: 0.08s;
}

.titleist-dropdown.is-open .titleist-dropdown__menu a:nth-child(3) {
  transition-delay: 0.12s;
}

.titleist-dropdown.is-open .titleist-dropdown__menu a:nth-child(4) {
  transition-delay: 0.16s;
}

@media (hover: hover) and (pointer: fine) {
  .titleist-dropdown:hover .titleist-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
    box-shadow:
      0 24px 44px rgba(9, 18, 32, 0.18),
      0 0 28px rgba(84, 223, 255, 0.16);
  }

  .titleist-dropdown:hover .titleist-dropdown__menu a {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .titleist-dropdown:hover .titleist-dropdown__menu a:nth-child(1) {
    transition-delay: 0.04s;
  }

  .titleist-dropdown:hover .titleist-dropdown__menu a:nth-child(2) {
    transition-delay: 0.08s;
  }

  .titleist-dropdown:hover .titleist-dropdown__menu a:nth-child(3) {
    transition-delay: 0.12s;
  }

  .titleist-dropdown:hover .titleist-dropdown__menu a:nth-child(4) {
    transition-delay: 0.16s;
  }
}

.titleist-nav a,
.titleist-actions a,
.titleist-dropdown__toggle {
  color: var(--muted);
  font-size: 0.92rem;
}

.titleist-actions a {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-section {
  position: relative;
  min-height: 88vh;
  background: #000;
  overflow: hidden;
}

.hero-slider {
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) brightness(0.68);
}

.hero-overlay {
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0 auto;
  padding: 120px 0 78px;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-label,
.section-label,
.promo-card__kicker,
.search-rail__eyebrow {
  margin: 0 0 14px;
  color: var(--dim);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-section h1,
.promo-card h2,
.feature-banner__content h2,
.metals-section h2,
.selector-copy h2,
.gear-hero h2,
.section-heading h2,
.community-section h2,
.support-band h2,
.footer-newsletter h2 {
  margin: 0;
  font-family: var(--headline);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.hero-section h1 {
  max-width: 760px;
  font-size: clamp(4rem, 9vw, 7.8rem);
}

.hero-copy {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
}

.hero-slider__controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-slider__arrow,
.hero-slider__dot {
  border: none;
  cursor: pointer;
}

.hero-slider__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.8rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-slider__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.hero-slider__dot.is-active {
  background: #fff;
  transform: scale(1.18);
}

.hero-button,
.promo-card__content a,
.feature-banner__content a,
.metals-section__intro a,
.selector-copy a,
.gear-hero__content a,
.column-card a,
.community-actions a,
.support-band a,
.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-weight: 700;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.hero-button:hover,
.promo-card__content a:hover,
.feature-banner__content a:hover,
.metals-section__intro a:hover,
.selector-copy a:hover,
.gear-hero__content a:hover,
.column-card a:hover,
.community-actions a:hover,
.support-band a:hover,
.store-link:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

.search-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fafafa;
}

.search-rail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 24px 0;
}

.search-tags,
.search-products,
.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-tags span,
.search-products span,
.country-list span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.promo-grid,
.selector-section,
.community-section,
.footer-newsletter,
.footer-app {
  padding-top: 44px;
}

.promo-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.promo-card,
.mini-card,
.column-card,
.community-section__media,
.community-section__content {
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 248, 248, 1));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.promo-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  box-shadow: none;
}

.promo-card--hero {
  min-height: 260px;
}

.promo-card img,
.mini-card img,
.column-card img,
.community-section__media img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.promo-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 28px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.62) 78%);
  color: #fff;
}

.promo-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  margin-bottom: 12px;
}

.promo-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.promo-card--hero .promo-card__content {
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  width: min(42%, 360px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.62) 38%, rgba(0, 0, 0, 0.84));
}

.promo-card--hero h2 {
  font-size: clamp(3rem, 4.6vw, 5.4rem);
}

.promo-card--hero p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.92);
}

.promo-card--split {
  min-height: 290px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: stretch;
  background: #fff;
}

.promo-card--split img {
  min-height: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card--split .promo-card__content {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 26px 30px;
  background: #fff;
  color: #111;
}

.promo-card--split .promo-card__kicker {
  color: var(--dim);
}

.promo-card--split p {
  color: var(--muted);
}

.promo-card--split h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.1;
}

.promo-card__title--compact {
  font-size: clamp(1.8rem, 3.1vw, 2.7rem) !important;
  line-height: 1.16 !important;
}

.promo-card--split a,
.promo-card--hero a {
  min-height: 34px;
  padding: 0 18px;
  font-size: 0.82rem;
  border: none;
  background: var(--accent);
  color: #fff;
}

.feature-banner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 26px;
  align-items: stretch;
  padding: 26px 0 0;
}

.feature-banner__media,
.selector-media {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.feature-banner__media img,
.selector-media img {
  height: 100%;
  object-fit: cover;
}

.feature-banner__content,
.metals-section__intro,
.selector-copy,
.community-section__content {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.feature-banner__content h2,
.metals-section h2,
.selector-copy h2,
.gear-hero h2,
.section-heading h2,
.community-section h2,
.support-band h2,
.footer-newsletter h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin-bottom: 16px;
}

.feature-banner__content p,
.metals-section__intro p,
.selector-copy p,
.community-section__content p,
.gear-hero__content p,
.support-band h2 {
  color: var(--muted);
}

.metals-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 26px;
  margin-top: 32px;
  padding: 0;
}

.metals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.metals-grid .mini-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(20, 24, 32, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 250, 0.98));
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
}

.metals-grid .mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 30%, transparent 68%, rgba(100, 208, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(9, 18, 32, 0.04));
  pointer-events: none;
  z-index: 2;
}

.metals-grid .mini-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  pointer-events: none;
  z-index: 2;
}

.metals-grid .mini-card img {
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1.01);
}

.mini-card__body {
  position: relative;
  z-index: 3;
  padding: 18px 18px 24px;
}

.mini-card__body h3,
.column-card h3,
.footer-links h3 {
  margin: 0 0 12px;
  font-family: var(--headline);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.mini-card__body h3 {
  font-size: 2rem;
}

.mini-card__body a,
.community-actions__secondary {
  color: var(--muted);
}

.selector-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.selector-copy__sub {
  margin: -6px 0 10px;
  color: #111;
  font-weight: 700;
}

.gear-hero {
  position: relative;
  margin-top: 44px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)),
    url("/img/titleist-home/gear-hero-custom.png") center / cover no-repeat;
}

.gear-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.42));
}

.gear-hero__inner {
  position: relative;
  z-index: 1;
  padding: 68px 0;
}

.gear-hero__content {
  max-width: 860px;
  color: #fff;
}

.gear-hero__content .section-label,
.gear-hero__content h2,
.gear-hero__content p {
  color: #fff;
}

.reservation-cta {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(110, 225, 255, 0.12) 45%, rgba(255, 255, 255, 0.08)),
    rgba(12, 18, 28, 0.5) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 10px 30px rgba(67, 210, 255, 0.24),
    0 0 24px rgba(67, 210, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.reservation-cta::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -20%;
  width: 42%;
  height: 320%;
  transform: rotate(24deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
  opacity: 0.7;
  pointer-events: none;
  transition: transform 0.45s ease;
}

.reservation-cta:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(110, 225, 255, 0.18) 45%, rgba(255, 255, 255, 0.12)),
    rgba(8, 16, 26, 0.7) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 14px 36px rgba(67, 210, 255, 0.32),
    0 0 32px rgba(67, 210, 255, 0.24);
  color: #ffffff !important;
}

.reservation-cta:hover::after {
  transform: translateX(220%) rotate(24deg);
}

.columns-section {
  padding-top: 44px;
}

.section-heading {
  margin-bottom: 24px;
}

.columns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.column-card {
  display: flex;
  flex-direction: column;
}

.column-card img {
  aspect-ratio: 1 / 1.15;
}

.column-card h3,
.column-card a {
  margin-left: 18px;
  margin-right: 18px;
}

.column-card h3 {
  margin-top: 18px;
  font-size: 1.6rem;
  line-height: 1;
}

.column-card__price {
  margin: 6px 18px 0;
  color: var(--accent);
  font-family: var(--headline);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.column-card a {
  width: fit-content;
  margin-top: auto;
  margin-bottom: 18px;
}

.community-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.support-band {
  padding: 44px 0 0;
}

.support-band__inner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer {
  margin-top: 44px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-newsletter,
.footer-app {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 560px;
}

.newsletter-form input {
  flex: 1;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.newsletter-form button {
  min-width: 124px;
  border: 1px solid var(--line-strong);
  background: #111;
  color: #fff;
  font-weight: 700;
}

.app-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.app-badges img {
  width: auto;
  height: 52px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.footer-country {
  padding-top: 28px;
}

.footer-country p {
  margin: 0 0 12px;
  font-family: var(--headline);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.footer-country small {
  display: block;
  margin-top: 18px;
  color: var(--dim);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .columns-grid,
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  @keyframes mobileDropdownPanelIn {
    0% {
      opacity: 0;
      filter: blur(10px);
      clip-path: inset(0 0 100% 0 round 16px);
      box-shadow: 0 0 0 rgba(84, 223, 255, 0);
    }

    55% {
      opacity: 1;
      filter: blur(0);
      clip-path: inset(0 0 0 0 round 16px);
      box-shadow:
        0 20px 34px rgba(9, 18, 32, 0.12),
        0 0 24px rgba(84, 223, 255, 0.2);
    }

    100% {
      opacity: 1;
      filter: blur(0);
      clip-path: inset(0 0 0 0 round 16px);
      box-shadow:
        0 12px 24px rgba(9, 18, 32, 0.08),
        0 0 20px rgba(84, 223, 255, 0.14);
    }
  }

  @keyframes mobileDropdownItemIn {
    0% {
      opacity: 0;
      transform: translateY(12px) scale(0.98);
    }

    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .feature-banner,
  .metals-section,
  .selector-section,
  .community-section,
  .support-band__inner,
  .footer-newsletter,
  .footer-app,
  .newsletter-form,
  .footer-links {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .titleist-header__inner {
    min-height: auto;
    padding: 14px 0;
  }

  .titleist-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 1px solid rgba(12, 27, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    backdrop-filter: none;
    z-index: 8;
  }

  .titleist-nav-shell {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(86, 226, 255, 0.24);
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 249, 255, 0.9)),
      rgba(255, 255, 255, 0.94);
    box-shadow:
      0 22px 48px rgba(16, 36, 54, 0.16),
      0 0 28px rgba(65, 213, 255, 0.12);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 0.24s ease,
      transform 0.24s ease;
    z-index: 7;
  }

  .titleist-nav-shell.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .titleist-nav,
  .titleist-actions {
    width: 100%;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .titleist-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .titleist-dropdown {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .titleist-dropdown__toggle {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(12, 27, 42, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: #111;
    font-family: var(--body);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.2;
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  }

  .titleist-menu-toggle span {
    background: #111;
    box-shadow: none;
  }

  .titleist-dropdown__menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    top: auto;
    right: auto;
    left: auto;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 16px;
    box-shadow: none;
    opacity: 0;
    max-height: none;
    overflow: visible;
    pointer-events: none;
    transform: none;
    transition: none;
  }

  .titleist-dropdown.is-open .titleist-dropdown__menu {
    display: grid;
    opacity: 1;
    margin-top: 10px;
    padding: 8px;
    border: 1px solid rgba(12, 27, 42, 0.08);
    pointer-events: auto;
    transform: none;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 248, 255, 0.92)),
      rgba(255, 255, 255, 0.94);
    animation: mobileDropdownPanelIn 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .titleist-actions {
    padding-top: 10px;
    border-top: 1px solid rgba(12, 27, 42, 0.08);
  }

  .titleist-nav a {
    padding: 15px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(12, 27, 42, 0.06);
    color: #111;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  }

  .titleist-dropdown__menu a {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(12, 27, 42, 0.06);
    color: #111;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  }

  .titleist-dropdown.is-open .titleist-dropdown__menu a {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    animation: mobileDropdownItemIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .titleist-dropdown.is-open .titleist-dropdown__menu a:nth-child(1) {
    animation-delay: 0.04s;
  }

  .titleist-dropdown.is-open .titleist-dropdown__menu a:nth-child(2) {
    animation-delay: 0.08s;
  }

  .titleist-dropdown.is-open .titleist-dropdown__menu a:nth-child(3) {
    animation-delay: 0.12s;
  }

  .titleist-dropdown.is-open .titleist-dropdown__menu a:nth-child(4) {
    animation-delay: 0.16s;
  }

  .titleist-actions a {
    flex: 1;
    justify-content: center;
    min-height: 44px;
    border-radius: 14px;
    background: rgba(10, 20, 32, 0.04);
  }

  body.titleist-home.nav-open {
    overflow: hidden;
  }

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

  .metals-section {
    margin-top: 24px;
    gap: 0;
    padding: 22px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff, #f6f8fa);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  }

  .metals-section__intro {
    width: 100%;
    padding: 0 0 20px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
  }

  .metals-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-top: 18px;
  }

  .mini-card {
    box-shadow: none;
  }

  .promo-card,
  .promo-card--hero {
    min-height: 420px;
  }

  .promo-card--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .promo-card--split img {
    max-height: 280px;
  }

  .promo-card--hero .promo-card__content,
  .promo-card__content {
    inset: auto 0 0 0;
    width: auto;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.84) 72%);
  }

  .promo-card--split .promo-card__content {
    position: static;
    background: #fff;
    color: #111;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    padding: 110px 0 60px;
  }

  .hero-section {
    min-height: 74vh;
  }

  .feature-banner__content,
  .metals-section__intro,
  .selector-copy,
  .community-section__content {
    padding: 26px;
  }

  .gear-hero__inner {
    padding: 52px 0;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1320px);
    --mobile-header-offset: 82px;
  }

  .hero-section,
  .hero-content {
    min-height: calc(100svh - var(--mobile-header-offset));
  }

  .hero-section h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-slider__controls {
    display: none;
  }

  .feature-banner__content h2,
  .metals-section h2,
  .gear-hero h2,
  .section-heading h2,
  .community-section h2,
  .footer-newsletter h2 {
    font-size: clamp(1.65rem, 7.2vw, 2.4rem);
  }

  .promo-card--hero h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.8rem);
  }

  .promo-card--split h2,
  .column-card h3,
  .mini-card__body h3 {
    font-size: clamp(1.25rem, 5.8vw, 1.9rem);
  }

  .column-card__price {
    font-size: 1.22rem;
  }

  .hero-copy,
  .promo-card p,
  .feature-banner__content p,
  .selector-copy p,
  .community-section__content p,
  .metals-section__intro p,
  .gear-hero__content p,
  .column-card a,
  .mini-card__body a,
  .community-actions a {
    font-size: 0.8rem;
  }

  .section-label,
  .promo-card__kicker,
  .hero-label,
  .titleist-nav a,
  .titleist-actions a {
    font-size: 0.76rem;
  }

  .hero-button,
  .promo-card__content a,
  .feature-banner__content a,
  .metals-section__intro a,
  .gear-hero__content a,
  .column-card a,
  .community-actions a,
  .reservation-cta {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.76rem;
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .metals-section {
    margin-top: 20px;
    padding: 18px;
  }

  .app-badges {
    flex-direction: column;
    align-items: flex-start;
  }
}
