:root {
  --black: #080807;
  --ink: #10100f;
  --charcoal: #171716;
  --stone: #e9e1d4;
  --muted: #a79e92;
  --soft: rgba(233, 225, 212, 0.72);
  --line: rgba(233, 225, 212, 0.13);
  --gold: #c4a36d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--stone);
  font-family: Arial, Helvetica, sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(8, 8, 7, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--stone);
  border-color: var(--gold);
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(22px, 6vw, 86px) 78px;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.96), rgba(8, 8, 7, 0.72) 52%, rgba(8, 8, 7, 0.5)),
    url("assets/polo-midnight-navy.png") right center / min(52vw, 720px) auto no-repeat,
    var(--black);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 8vw, 8.2rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 0.98;
}

.hero p:not(.eyebrow),
.about-preview p,
.catalog-hero p,
.statement p {
  color: var(--soft);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.8;
}

.section,
.section-narrow {
  padding: 86px clamp(22px, 6vw, 86px);
}

.section-narrow {
  max-width: 1120px;
}

.statement p {
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.3vw, 3.5rem);
  line-height: 1.08;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

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

.category-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.82;
  transition: opacity 220ms ease, transform 700ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.84));
}

.category-card span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.category-card:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.about-preview {
  border-top: 1px solid var(--line);
}

.about-preview p:not(.eyebrow) {
  max-width: 760px;
}

.catalog-hero {
  padding: 118px clamp(22px, 6vw, 86px) 54px;
  border-bottom: 1px solid var(--line);
}

.catalog-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 7.6rem);
}

.catalog-hero p:not(.eyebrow) {
  max-width: 620px;
}

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

.catalog-card {
  min-width: 0;
}

.image-button {
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.image-button img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92);
  transition: filter 220ms ease, transform 700ms ease;
}

.image-button:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.035);
}

.catalog-card h2 {
  margin: 18px 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-card p {
  margin: 0;
  color: var(--muted);
}

.footer {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 42px clamp(22px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: #050505;
  text-align: center;
}

.footer span {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 22px);
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(880px, 92dvh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

.lightbox-image-wrap {
  min-height: 0;
  background: #050505;
}

.lightbox-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 92dvh;
  object-fit: contain;
}

.lightbox-info {
  padding: 34px;
  border-left: 1px solid var(--line);
}

.lightbox-info h2 {
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox-info p {
  color: var(--soft);
  line-height: 1.7;
}

.lightbox-color {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 8, 7, 0.72);
  color: var(--stone);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 1.3rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: var(--gold);
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    white-space: nowrap;
  }

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

  .hero {
    background:
      linear-gradient(180deg, rgba(8, 8, 7, 0.95), rgba(8, 8, 7, 0.74)),
      url("assets/polo-midnight-navy.png") center bottom / auto 78% no-repeat,
      var(--black);
  }

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

@media (max-width: 740px) {
  .site-header {
    padding: 14px 18px;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 74vh;
    padding: 86px 18px 50px;
  }

  .section,
  .section-narrow,
  .catalog-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section,
  .section-narrow {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .section-heading {
    display: block;
  }

  .category-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card img {
    min-height: 460px;
  }

  .lightbox-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .lightbox-image-wrap img {
    max-height: 64dvh;
  }

  .lightbox-info {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px;
  }

  .lightbox-nav {
    top: 34%;
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next,
  .lightbox-close {
    right: 10px;
  }
}
