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

:root {
  --ink: #222;
  --muted: #6b6b6b;
  --line: #e9e9e9;
  --bg: #fff;
  --bg-soft: #faf8f4;
  --max: 1100px;
  --accent: #1f5b4f;
  --accent-dark: #17463d;
  --shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
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;
}
img {
  max-width: 100%;
}
.condensed {
  font-family: 'PT Sans Narrow', 'Open Sans', system-ui, sans-serif;
}

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

.site-header {
  padding: 12px 18px 10px;
  position: relative;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
}
.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: 12px;
  box-shadow: 0 12px 30px -16px rgba(0, 0, 0, 0.25);
  padding: 8px 0;
  display: none;
  min-width: 220px;
  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;
}

.hero {
  padding: 18px 0 10px;
}
.hero-compact {
  padding-top: 8px;
}
.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;
  line-height: 1.05;
  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;
  max-width: 760px;
}
.hero-sub.condensed {
  font-weight: 400;
  letter-spacing: 0.3px;
}
.intro {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 760px;
}
.intro.strong {
  color: var(--ink);
  font-weight: 600;
  margin-top: 12px;
}
.eyebrow,
.mini-kicker,
.kicker {
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 10px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.section-heading h2,
.intro-strip h2,
.value-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
  margin: 0;
}
.text-link {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.text-link:hover {
  text-decoration: underline;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px 0 30px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fbfbfb;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.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: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 30px;
  padding: 18px 0 40px;
  align-items: start;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafafa;
  padding: 10px;
}
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.gallery-thumbs .main-image {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f9f9 0%, #f3f3f3 100%);
  display: grid;
  place-items: center;
  padding: 14px;
}
.gallery-thumbs #mainProductImage {
  width: 100%;
  height: clamp(280px, 42vw, 460px);
  object-fit: contain;
  display: block;
}
.gallery-thumbs .thumb-row {
  width: 100%;
  max-width: 440px;
  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: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 76px;
  scroll-snap-align: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.gallery-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  background: #fafafa;
}
.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);
}

.body {
  line-height: 1.75;
  margin: 10px 0 18px;
}
.product-details-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 20px;
}
.product-cta-stack {
  display: grid;
  gap: 10px;
}
.cta-note {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.cta {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  padding: 14px 18px;
  font-weight: 700;
  border: 1px solid var(--accent);
  border-radius: 999px;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px -18px rgba(31, 91, 79, 0.8);
}
.cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.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;
}
.footer a {
  color: inherit;
}

.hero-banner {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: #111;
}
.hero-banner img {
  width: 100%;
  height: min(68vh, 760px);
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.72;
}
.hero-banner-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.18) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 22px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.hero-copy {
  max-width: 640px;
  color: #fff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}
.hero-overlay h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  margin: 0 0 14px;
}
.hero-lead {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
  margin: 0;
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.hero-cta:hover {
  transform: translateY(-1px);
}
.hero-cta-primary {
  background: #fff;
  color: #111;
  border: 1px solid #fff;
}
.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.intro-strip {
  padding-top: 26px;
  padding-bottom: 10px;
}
.intro-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
}
.intro-strip p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 0 10px;
}
.category-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  background: #000;
  box-shadow: var(--shadow);
}
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 12%, rgba(0, 0, 0, 0.58) 100%);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}
.category-card:hover img {
  transform: scale(1.06);
}
.category-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: 0.4px;
  line-height: 1;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.value-band {
  padding-top: 22px;
}
.value-card {
  background: var(--bg-soft);
  border: 1px solid #eee3d1;
  border-radius: 24px;
  padding: 28px;
}
.value-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.value-points div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #efe7d9;
  border-radius: 18px;
  padding: 18px;
}
.value-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}
.value-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-copy {
  padding-top: 12px;
}
.product-hero {
  padding-bottom: 0;
}

@media (max-width: 900px) {
  .cards,
  .value-points,
  .category-grid,
  .intro-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-details-card {
    position: static;
  }
  .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: 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);
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .hero-banner img {
    height: 62vh;
  }
  .hero-overlay {
    align-items: end;
    padding-bottom: 24px;
  }
}

@media (max-width: 520px) {
  .cards,
  .category-grid,
  .value-points,
  .intro-strip-grid {
    grid-template-columns: 1fr;
  }
  .wrap {
    padding: 26px 18px;
  }
  .page-title {
    font-size: 38px;
  }
  .hero-banner img {
    height: 54vh;
  }
  .hero-overlay h1 {
    font-size: 42px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta {
    width: 100%;
  }
  .category-card {
    aspect-ratio: 4 / 4.3;
  }
  .gallery-thumbs #mainProductImage {
    height: 300px;
  }
}
