:root {
  --bg: #f7f6f3;
  --ink: #111;
  --muted: #777;
  --line: rgba(17, 17, 17, 0.12);
  --gold: #b79c54;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 34px;
  color: #fff;
  mix-blend-mode: difference;
}

.site-header.solid {
  position: sticky;
  background: rgba(247, 246, 243, 0.92);
  color: var(--ink);
  mix-blend-mode: normal;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.35));
}

.site-header nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.24), rgba(0,0,0,0.08) 45%, rgba(0,0,0,0.5));
}

.hero-copy {
  position: absolute;
  left: clamp(24px, 6vw, 82px);
  bottom: clamp(34px, 8vh, 86px);
  max-width: 640px;
  color: #fff;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 10vw, 132px);
  font-weight: 500;
  line-height: 0.86;
}

.hero-copy p {
  max-width: 520px;
  margin: 0;
  font-size: clamp(15px, 2vw, 22px);
  line-height: 1.45;
}

.collections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(28px, 5vw, 72px);
  background: var(--bg);
}

.collection-panel {
  display: flex;
  min-height: clamp(360px, 54vh, 560px);
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(34px, 6vw, 78px);
  background: #111;
  color: #fff;
  transition: filter 0.3s ease;
}

.collection-panel.light {
  background: #ece8de;
  color: #111;
}

.collection-panel:hover {
  filter: contrast(1.08);
}

.collection-panel span {
  max-width: 520px;
  color: var(--gold);
  font-size: clamp(36px, 5.4vw, 80px);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 0.95;
}

.collection-panel strong {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 400;
}

.section-heading {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 78px) 0 clamp(18px, 3vw, 32px);
  text-align: center;
}

.tiktok-strip {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px) 24px;
  background: #fff;
  color: var(--ink);
  text-align: center;
}

.tiktok-strip p {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 21px);
  line-height: 1.5;
}

.tiktok-strip a {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold);
  font-weight: 800;
  transition: transform 0.22s ease, color 0.22s ease;
  transform-origin: center;
}

.tiktok-strip a:hover {
  color: #9f8135;
  transform: scale(1.12);
}

.section-heading.compact {
  padding-top: clamp(12px, 3vw, 40px);
}

.section-heading h2 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 0.95;
}

.preview-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 0;
  background: var(--bg);
}

.product-card,
.catalog-card {
  display: block;
  overflow: hidden;
  background: var(--bg);
  min-height: 0;
}

.product-card img,
.catalog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
}

.product-card div,
.catalog-info {
  padding: 18px 0 4px;
  background: transparent;
  text-shadow: none;
  text-align: center;
}

.product-card h2,
.catalog-info h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
}

.product-card p,
.catalog-info p {
  margin: 0 0 16px;
  max-width: 390px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.product-card span,
.catalog-info strong {
  font-size: 14px;
  font-weight: 600;
}

.category-surface {
  width: min(100%, 1440px);
  margin: 0 auto;
  background: var(--bg);
  overflow: hidden;
}

.category-page {
  padding-top: clamp(14px, 2.4vw, 30px);
}

.category-heading {
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(10px, 2vw, 24px) clamp(22px, 6vw, 80px) clamp(18px, 3vw, 32px);
}

.category-heading h1 {
  flex: 0 1 760px;
  margin: 0;
  max-width: 760px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.95;
}

.category-heading p {
  flex: 1 1 320px;
  max-width: 500px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.catalog-info {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}

.floating-contact {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.26), transparent 30%),
    linear-gradient(145deg, #18130a, #050505 58%, #b79c54);
  color: #f4d98c;
  box-shadow: 0 18px 60px rgba(0,0,0,0.34), inset 0 0 0 1px rgba(183,156,84,0.4);
  cursor: pointer;
}

.floating-contact svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0,0,0,0.42);
}

.contact-modal.open {
  display: grid;
}

.contact-sheet {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid rgba(183, 156, 84, 0.18);
  border-radius: 22px;
  background: #f8f6ef;
  box-shadow: 0 28px 80px rgba(0,0,0,0.35);
}

.contact-sheet h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.contact-sheet button:not(.close) {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 16px 86px 16px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 15px;
  line-height: 1.45;
  cursor: pointer;
  transition: color 0.24s ease, transform 0.24s ease;
}

.contact-sheet button:not(.close) span {
  display: inline-block;
  transition: transform 0.24s ease;
}

.contact-sheet button:not(.close):hover {
  color: #7c6529;
}

.contact-sheet button:not(.close):hover span {
  transform: translateY(-4px);
}

.contact-sheet button:not(.close) em {
  position: absolute;
  top: 50%;
  right: 0;
  opacity: 0;
  transform: translateY(-35%);
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.contact-sheet button:not(.close).copied em {
  opacity: 1;
  transform: translateY(-50%);
}

.close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.close:hover {
  border-color: var(--line);
  transform: rotate(90deg);
}

.brand-footer {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: #241b10;
}

.brand-footer > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-text {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: clamp(38px, 7vw, 76px);
  text-shadow: 0 1px 18px rgba(255,255,255,0.9);
}

.footer-text h2 {
  max-width: 640px;
  margin: 0 0 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 6vw, 74px);
  font-weight: 600;
  line-height: 0.96;
}

.footer-text p {
  max-width: 920px;
  margin: 0 0 24px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
}

.footer-text div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-size: 15px;
  font-weight: 700;
}

.copyright {
  position: relative;
  z-index: 1;
  padding: 0 clamp(38px, 7vw, 76px) clamp(28px, 4vw, 44px);
  color: #1b160d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 1px 16px rgba(255,255,255,0.9);
}

@media (max-width: 840px) and (pointer: coarse), (max-width: 480px) {
  .site-header {
    height: 64px;
    padding: 0 18px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

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

  .preview-grid,
  .catalog-grid {
    width: min(100% - 28px, 520px);
    gap: 22px;
    padding: 28px 0;
  }

  .section-heading {
    width: min(100% - 28px, 520px);
    padding: 32px 0 16px;
  }

  .collection-panel {
    min-height: 360px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .collection-panel span {
    max-width: 100%;
  }

  .collections {
    padding: 18px;
    gap: 18px;
  }

  .catalog-info {
    min-height: 0;
  }

  .category-heading {
    display: block;
  }

  .category-heading h1 {
    margin: 0 0 14px;
  }

  .category-heading p {
    max-width: 520px;
    margin: 0;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
    width: 66px;
    height: 66px;
  }
}
