:root {
  --ink: #151719;
  --ink-soft: #2b3036;
  --muted: #626b75;
  --line: #dfe4ea;
  --line-strong: #c9d0d8;
  --paper: #ffffff;
  --wash: #f4f7f9;
  --wash-2: #eef3f6;
  --accent: #df341f;
  --accent-dark: #a82415;
  --accent-soft: #fff0ec;
  --green: #1f7a4d;
  --radius: 8px;
  --shadow: 0 18px 60px rgba(33, 43, 54, 0.14);
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 74px 0;
}

.section.tight {
  padding: 48px 0;
}

.section.wash {
  background: var(--wash);
}

.section-header {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
.hero-title {
  font-size: clamp(2.45rem, 5.3vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.18;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 62ch;
  color: #4e5863;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 228, 234, 0.92);
  backdrop-filter: blur(18px);
}

.top-strip {
  border-bottom: 1px solid var(--line);
  background: #101316;
  color: #f7fafc;
  font-size: 0.82rem;
}

.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 18px;
}

.top-strip a {
  color: #ffffff;
}

.top-strip span,
.top-strip a {
  white-space: nowrap;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
}

.footer-logo {
  height: 54px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--accent);
  border-radius: 6px;
  font-size: 0.92rem;
  letter-spacing: 0;
}

.brand-word {
  color: var(--ink);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  color: #2d343c;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  flex: 0 0 42px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.btn:active {
  transform: translateY(1px);
}

.btn.secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.btn.secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero {
  position: relative;
  min-height: clamp(560px, 82dvh, 760px);
  overflow: hidden;
  background: #121417;
  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 13, 16, 0.84) 0%, rgba(10, 13, 16, 0.60) 36%, rgba(10, 13, 16, 0.18) 68%, rgba(10, 13, 16, 0.03) 100%),
    linear-gradient(0deg, rgba(10, 13, 16, 0.26), rgba(10, 13, 16, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 82dvh, 760px);
  padding: 50px 0 72px;
}

.hero-copy {
  width: 100%;
  max-width: 760px;
  min-width: 0;
}

.hero-title {
  max-width: 780px;
  font-size: clamp(2.45rem, 4.7vw, 4.55rem);
  text-wrap: balance;
}

.hero-copy p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.hero-meta span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.hero-controls {
  position: absolute;
  z-index: 3;
  right: max(18px, calc((100vw - var(--container)) / 2));
  bottom: 28px;
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dot.active {
  background: #fff;
}

.stats-strip {
  position: relative;
  z-index: 3;
  margin-top: -38px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.stat {
  padding: 22px;
  background: #fff;
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  height: clamp(220px, 24vw, 300px);
  overflow: hidden;
  background: var(--wash-2);
}

.card-media.wide {
  aspect-ratio: 16 / 10;
  height: clamp(250px, 28vw, 340px);
}

.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.card:hover .card-media img {
  transform: scale(1.035);
}

.card-body {
  padding: 20px;
}

.photo-caption-title {
  margin: 0;
  padding: 18px 18px 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.5vw, 1.32rem);
  font-weight: 850;
  text-align: center;
}

.photo-caption-link {
  display: block;
  padding: 14px 16px 0;
  color: var(--accent-dark);
  font-size: 0.94rem;
  font-weight: 820;
  text-align: center;
}

.photo-caption-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.factory-area-card .card-body p {
  min-height: 76px;
}

.card-body p {
  min-height: 50px;
  margin-bottom: 18px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.golf-model-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 8px solid #1f5f9f;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(33, 43, 54, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.golf-model-card:hover {
  transform: translateY(-4px);
  border-color: #c8d5df;
  box-shadow: 0 22px 48px rgba(33, 43, 54, 0.14);
}

.golf-model-media {
  position: relative;
  display: grid;
  min-height: 330px;
  padding: 48px 22px 18px;
  overflow: hidden;
  background: #f0f1f2;
}

.golf-model-media::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(21, 23, 25, 0.12), rgba(21, 23, 25, 0) 68%);
  pointer-events: none;
}

.golf-model-media img {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 100%;
  height: 260px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 420ms ease;
}

.golf-model-card:hover .golf-model-media img {
  transform: scale(1.035);
}

.golf-model-brand {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  color: #1965a8;
  font-size: 1.34rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.golf-model-code {
  position: absolute;
  top: 43px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  background: #242424;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.golf-model-caption {
  padding: 28px 18px 24px;
  text-align: center;
}

.golf-model-caption h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  font-weight: 760;
}

.golf-model-caption p {
  min-height: 24px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.golf-model-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.golf-model-actions .btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-dark);
  font-weight: 850;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 44px;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--wash-2);
}

.split-media img {
  aspect-ratio: 16 / 11;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 720;
}

.category-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.category-feature {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: #111;
}

.category-feature img {
  height: 100%;
  object-fit: cover;
}

.category-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.05));
}

.category-feature .overlay-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.category-feature p {
  color: rgba(255, 255, 255, 0.84);
}

.category-list {
  display: grid;
  gap: 14px;
}

.category-row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 128px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.category-row img {
  height: 104px;
  border-radius: 6px;
  object-fit: cover;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 760;
}

.badge.red {
  border-color: rgba(223, 52, 31, 0.28);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.page-hero {
  padding: 74px 0 48px;
  background:
    linear-gradient(120deg, rgba(244, 247, 249, 1), rgba(255, 255, 255, 0.82)),
    var(--wash);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 38px;
  align-items: center;
}

.page-hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--accent-dark);
  font-weight: 700;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tab {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.tab.active,
.tab:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 34px;
  align-items: start;
}

.gallery-main {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash-2);
}

.gallery-main img {
  aspect-ratio: 16 / 11;
  height: 100%;
  object-fit: cover;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.thumb-btn {
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--wash-2);
  cursor: pointer;
}

.thumb-btn.active {
  border-color: var(--accent);
}

.thumb-btn img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

.detail-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.detail-panel .lead {
  font-size: 1.02rem;
}

.factory-nav-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.factory-nav-list h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.factory-nav-list a {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 760;
  background: #fff;
}

.factory-nav-list a:hover,
.factory-nav-list a.active {
  border-color: rgba(223, 52, 31, 0.38);
  color: var(--accent-dark);
  background: var(--accent-soft);
}

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

.highlight {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--wash);
  font-weight: 800;
}

.spec-section {
  margin-top: 28px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: #fff;
}

.spec-table th,
.spec-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: var(--ink);
  background: var(--wash);
  font-weight: 850;
}

.spec-table td {
  color: var(--muted);
}

.note-panel {
  padding: 22px;
  border: 1px solid rgba(31, 122, 77, 0.28);
  border-radius: var(--radius);
  background: #eef8f3;
}

.masonry {
  columns: 3 260px;
  column-gap: 16px;
}

.masonry button {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--wash-2);
  cursor: zoom-in;
}

.masonry img {
  width: 100%;
  height: auto;
}

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

.certificate {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
}

.certificate img {
  height: clamp(360px, 42vw, 620px);
  object-fit: contain;
  background: #fff;
}

.contact-band {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(21, 23, 25, 0.94), rgba(21, 23, 25, 0.78)),
    #151719;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 38px;
  align-items: start;
}

.form-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: currentColor;
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(223, 52, 31, 0.16);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.form-note.success {
  color: #b9f4d3;
  font-weight: 800;
}

.form-note.error {
  color: #ffd1ca;
  font-weight: 800;
}

.light-form {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.light-form .form-note,
.light-form p {
  color: var(--muted);
}

.light-form .form-note.success {
  color: var(--green);
}

.light-form .form-note.error {
  color: var(--accent-dark);
}

.site-footer {
  padding: 48px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #101316;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.9fr;
  gap: 28px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.empty-state {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.84);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: min(1120px, 96vw);
  max-height: 86vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .top-strip {
    display: none;
  }

  .nav-bar {
    flex-wrap: wrap;
    height: auto;
    min-height: var(--header-height);
    padding: 10px 0 8px;
  }

  .nav-links {
    position: static;
    order: 3;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 4px 0 0;
    overflow-x: auto;
    background: transparent;
    border-top: 0;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    height: 38px;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
  }

  .menu-toggle {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .btn {
    display: none;
  }

  .grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section {
    padding: 58px 0;
  }

  .hero,
  .hero-content {
    min-height: clamp(520px, 78dvh, 680px);
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(10, 13, 16, 0.86), rgba(10, 13, 16, 0.38));
  }

  .stats-grid,
  .grid.cols-3,
  .split,
  .category-band,
  .page-hero .container,
  .detail-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    padding-top: 54px;
  }

  .category-feature {
    min-height: 360px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-bar {
    height: var(--header-height);
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-logo {
    height: 40px;
  }

  .footer-logo {
    height: 48px;
  }

  .hero,
  .hero-content {
    min-height: 590px;
  }

  h1,
  .hero-title {
    max-width: 10ch;
    font-size: clamp(2.05rem, 10vw, 2.72rem);
  }

  .hero-copy p {
    max-width: 30ch;
    font-size: 1rem;
  }

  .hero-actions,
  .card-actions,
  .golf-model-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-strip {
    margin-top: 0;
  }

  .stats-grid,
  .grid.cols-4,
  .feature-list,
  .highlight-grid,
  .cert-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .category-row {
    grid-template-columns: 104px 1fr;
  }

  .category-row img {
    height: 96px;
  }

  .thumb-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-media,
  .card-media.wide {
    height: 230px;
  }

  .golf-model-media {
    min-height: 290px;
  }

  .golf-model-media img {
    height: 225px;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    border-bottom: 0;
  }
}
