@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --ink: #222;
  --muted: #6b6b6b;
  --line: #e9e9e9;
  --bg: #fff;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-weight: 300;
}
.condensed {
  font-family: 'PT Sans Narrow', 'Open Sans', system-ui, sans-serif;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 22px;
}

.site-header {
  padding: 12px 18px 10px;
  position: relative;
  display: flex;
  justify-content: center;
}
.site-header::after {
  content: none;
}
.header-inner {
  width: 100%;
  max-width: var(--max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 48px;
  height: auto;
}
.brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  letter-spacing: 0.5px;
  line-height: 1;
}
.brand-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  position: relative;
  padding-top: 12px;
}
.nav a,
.nav button {
  background: none;
  border: none;
  font: inherit;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 6px;
  cursor: pointer;
}
.nav a:hover,
.nav button:hover,
.nav a:focus-visible,
.nav button:focus-visible {
  opacity: 0.7;
  outline: none;
}
.nav::before {
  content: none;
}

.dropdown {
  position: relative;
}
.icon-arrow-down {
  display: inline-block;
  margin-left: 6px;
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
  transition: transform 0.15s ease;
}
.dropdown:hover .icon-arrow-down,
.dropdown:focus-within .icon-arrow-down {
  transform: rotate(-45deg) translateY(2px);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px -16px rgba(0, 0, 0, 0.25);
  padding: 8px 0;
  display: none;
  min-width: 200px;
  z-index: 10;
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 14px;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: #f7f7f7;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px 0;
  }
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .brand {
    justify-content: center;
  }
  .brand img {
    width: 52px;
  }
  .brand-title {
    font-size: 32px;
  }
  .nav {
    width: 100%;
    justify-content: center;
    gap: 18px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
}

.hero {
  padding: 18px 0 10px;
}
.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.2px;
  margin: 4px 0 6px;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 44px;
  margin: 10px 0 6px;
}
.page-title.condensed {
  font-family: 'PT Sans Narrow', 'Open Sans', system-ui, sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.hero-sub {
  font-size: 20px;
  color: var(--muted);
  margin: 4px 0 12px;
}
.hero-sub.condensed {
  font-weight: 400;
  letter-spacing: 0.3px;
}
.intro {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.intro.strong {
  color: var(--ink);
  font-weight: 600;
  margin-top: 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px 0 30px;
}
.card {
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  padding: 14px;
  background: #fff;
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card-img img {
  width: 70%;
  height: auto;
}
.card-title {
  margin-top: 12px;
  font-weight: 600;
}
.card-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  padding: 18px 0 40px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fafafa;
}
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.gallery-thumbs .main-image {
  width: 100%;
  max-width: 360px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f9f9 0%, #f3f3f3 100%);
  display: grid;
  place-items: center;
  padding: 10px;
}
.gallery-thumbs #mainProductImage {
  width: 100%;
  height: 280px;
  object-fit: contain;
  display: block;
}
.gallery-thumbs .thumb-row {
  width: 100%;
  max-width: 400px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 2px 2px;
  scroll-snap-type: x mandatory;
}
.gallery-thumbs .thumb {
  border: 1px solid var(--line);
  background: #fff;
  padding: 4px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 68px;
  scroll-snap-align: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.gallery-thumbs .thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb:focus-visible {
  border-color: #cfcfcf;
  box-shadow: 0 6px 18px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
  outline: none;
}
.gallery-thumbs .thumb.is-active {
  border-color: #222;
  box-shadow: 0 10px 28px -20px rgba(0, 0, 0, 0.4);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 12px;
  color: var(--muted);
}
.body {
  line-height: 1.75;
  margin: 10px 0 18px;
}

.cta {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #222;
  padding: 12px 16px;
  font-weight: 600;
  border: 1px solid #222;
}
.cta:hover {
  opacity: 0.9;
}

.fineprint {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.footer {
  padding: 10px 0;
  position: relative;
}
.footer::before {
  content: '';
  display: block;
  width: min(100%, calc(var(--max) + 44px));
  margin: 0 auto 12px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .gallery img {
    height: 220px;
  }
  .gallery-thumbs .thumb-row {
    scroll-snap-type: x mandatory;
  }
}
@media (min-width: 720px) {
  .gallery-thumbs .thumb-row {
    overflow: visible;
    flex-wrap: wrap;
    justify-content: center;
    scroll-snap-type: none;
  }
}
@media (max-width: 520px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .page-title {
    font-size: 38px;
  }
}

.hero-banner {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--line);
}
.hero-banner img {
  width: 100%;
  height: min(70vh, 720px);
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  max-width: var(--max);
  margin: 0 auto;
  color: #fff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.hero-overlay h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  margin: 0 0 10px;
}
.hero-cta {
  display: inline-block;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  text-decoration: none;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 22px 0 10px;
}
.category-card {
  position: relative;
  border: 1px solid var(--line);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #000;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.02);
}
.category-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

@media (max-width: 980px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  .hero-banner img {
    height: 56vh;
  }
}
