:root {
  --bg: #0d0d0d;
  --bg-soft: #141414;
  --bg-lift: #1a1a1a;
  --line: #2a2a2a;
  --text: #f4f0ea;
  --muted: #b7ada2;
  --subtle: #766f68;
  --gold: #d6b56d;
  --rose: #b87968;
  --green: #6f8b7a;
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0));
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 32px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 180ms ease, border-color 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  background: rgba(13, 13, 13, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(244, 240, 234, 0.34);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.menu-toggle span {
  background: var(--text);
  display: block;
  height: 1px;
  transition: transform 160ms ease;
  width: 18px;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.menu-panel {
  background: rgba(13, 13, 13, 0.98);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 15;
}

body.menu-open .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-panel__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100vh;
  padding: 128px 32px 48px;
}

.menu-panel a {
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 7vw, 76px);
  font-style: italic;
  padding-bottom: 18px;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  min-height: 100vh;
}

.hero__copy {
  align-content: center;
  background: var(--bg);
  display: grid;
  padding: 120px 52px 64px;
  position: relative;
  z-index: 2;
}

.hero__copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  line-height: 1.02;
  margin: 0;
  max-width: 720px;
}

.hero__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 28px 0 0;
  max-width: 470px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero__image {
  background-image: linear-gradient(to right, var(--bg), rgba(13, 13, 13, 0.05) 28%), url("../site/hero.jpg");
  background-position: center;
  background-size: cover;
  min-height: 560px;
}

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

.button,
.filter-pill {
  align-items: center;
  border: 1px solid rgba(244, 240, 234, 0.32);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 44px;
  padding: 0 20px;
  text-decoration: none;
  text-transform: uppercase;
}

.button--light {
  background: var(--text);
  color: var(--bg);
}

.button--ghost {
  background: transparent;
  color: var(--text);
}

.marquee {
  background: var(--bg-lift);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
}

.marquee__track {
  animation: drift 44s linear infinite;
  display: flex;
  gap: 54px;
  width: max-content;
}

.marquee span {
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 92px 32px;
}

.section--flush {
  padding-left: 0;
  padding-right: 0;
}

.section__heading {
  margin: 0 auto 36px;
  max-width: 1180px;
  padding: 0 32px;
}

.section__heading--split {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr minmax(260px, 430px);
}

.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
}

.section__intro,
.statement p,
.info-panel p,
.faq-list p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.featured-strip,
.event-strip {
  cursor: grab;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 32px 10px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.event-strip {
  justify-content: center;
}

.featured-strip::-webkit-scrollbar,
.event-strip::-webkit-scrollbar {
  display: none;
}

.featured-card,
.event-strip img {
  flex: 0 0 320px;
  height: 430px;
  overflow: hidden;
  scroll-snap-align: start;
}

.featured-card {
  background: var(--bg-soft);
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
  position: relative;
  text-align: left;
}

.featured-card img,
.event-strip img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.featured-card:hover img,
.event-strip img:hover {
  transform: scale(1.035);
}

.featured-card__meta {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
  bottom: 0;
  left: 0;
  padding: 64px 18px 18px;
  position: absolute;
  right: 0;
}

.featured-card__meta strong,
.product-card h3 {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}

.featured-card__meta span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 6px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 34px;
  max-width: 1180px;
}

.filter-pill {
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.filter-pill.is-active,
.filter-pill:hover {
  border-color: var(--text);
  color: var(--text);
}

.catalogue-grid {
  display: grid;
  gap: 34px 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.catalogue-actions {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.product-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(214, 181, 109, 0.48);
  transform: translateY(-2px);
}

.product-card__image {
  aspect-ratio: 3 / 4;
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}

.product-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

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

.status {
  background: rgba(13, 13, 13, 0.74);
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 8px 10px;
  position: absolute;
  right: 10px;
  text-transform: uppercase;
  top: 10px;
}

.status--sold {
  background: rgba(184, 121, 104, 0.9);
}

.product-card__body {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto;
  min-height: 74px;
  padding: 16px;
}

.product-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 8px 0 0;
}

.product-card__price {
  color: var(--gold);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 0;
  text-align: right;
  white-space: nowrap;
}

.section--statement {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.statement {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
}

.statement h2 {
  font-style: italic;
  margin-bottom: 22px;
}

.about-story {
  margin: 0 auto;
  max-width: 1120px;
}

.story-column {
  display: grid;
  gap: 0;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.story-block {
  border-top: 1px solid var(--line);
  padding: 42px 0 26px;
}

.story-block p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 16px;
}

.story-block .story-emphasis {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
}

.about-heart {
  background: #111;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 70px calc(50% - 50vw) 0;
  padding: 78px 32px;
  text-align: center;
}

.about-heart blockquote {
  border: 0;
  margin: 0 auto 28px;
  max-width: 760px;
  padding: 0;
}

.about-heart blockquote p {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 4vw, 44px);
  font-style: italic;
  line-height: 1.35;
}

.about-heart > p:last-child {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 auto;
  max-width: 720px;
}

.two-column {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(240px, 0.75fr) 1.25fr;
  margin: 0 auto;
  max-width: 1180px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details,
.info-panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 22px;
}

.faq-list summary {
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.faq-list p {
  margin-top: 14px;
}

.text-link {
  color: var(--gold);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-top: 20px;
  text-decoration: none;
  text-transform: uppercase;
}

.contact {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  text-align: center;
}

.contact__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 34px auto 0;
  max-width: 1120px;
}

.contact__grid a {
  align-items: center;
  border: 1px solid var(--line);
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  padding: 24px 18px;
  text-decoration: none;
}

.contact__grid svg {
  fill: none;
  height: 34px;
  margin-bottom: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 34px;
}

.contact__grid span {
  color: var(--gold);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact__note {
  margin: 18px auto 0;
  max-width: 620px;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  letter-spacing: 0.12em;
  padding: 24px 32px;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

.product-dialog {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  max-width: min(980px, calc(100vw - 28px));
  padding: 0;
  width: 980px;
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.dialog-close {
  background: var(--text);
  border: 0;
  color: var(--bg);
  cursor: pointer;
  font-size: 28px;
  height: 42px;
  line-height: 1;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 42px;
  z-index: 2;
}

.dialog-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
}

.dialog-product__image {
  background: var(--bg-soft);
  min-height: 560px;
}

.dialog-product__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.dialog-product__copy {
  align-content: center;
  display: grid;
  padding: 56px 42px;
}

.dialog-product__copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 18px;
}

.dialog-product__copy .status {
  position: static;
  width: max-content;
}

.dialog-product__copy dl {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.dialog-product__copy dt {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dialog-product__copy dd {
  color: var(--muted);
  line-height: 1.7;
  margin: 4px 0 0;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    background: linear-gradient(rgba(13, 13, 13, 0.72), rgba(13, 13, 13, 0.86)), url("../site/hero.jpg");
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image {
    display: none;
  }

  .section__heading--split,
  .two-column,
  .dialog-product {
    grid-template-columns: 1fr;
  }

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

  .event-strip {
    justify-content: flex-start;
  }

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

@media (max-width: 620px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .brand {
    font-size: 10px;
  }

  .hero__copy,
  .section,
  .section__heading {
    padding-left: 18px;
    padding-right: 18px;
  }

  .featured-strip,
  .event-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .featured-card,
  .event-strip img {
    flex-basis: 260px;
    height: 360px;
  }

  .catalogue-grid {
    gap: 24px 14px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-card__body {
    grid-template-columns: 1fr;
  }

  .product-card__price {
    text-align: left;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .dialog-product__image {
    min-height: 360px;
  }

  .dialog-product__copy {
    padding: 32px 22px;
  }
}
