:root {
  --ink: #181516;
  --muted: #6f6561;
  --paper: #fffaf3;
  --ivory: #fffdf8;
  --line: rgba(24, 21, 22, 0.12);
  --ruby: #a82137;
  --emerald: #0f6a58;
  --gold: #c9953c;
  --charcoal: #24272b;
  --shadow: 0 24px 70px rgba(24, 21, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1160px, calc(100% - 32px));
  min-height: 66px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 14px 40px rgba(24, 21, 22, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  color: var(--ivory);
  background: var(--ink);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 11px 14px;
  border-radius: 8px;
  color: rgba(24, 21, 22, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(24, 21, 22, 0.06);
}

.nav .nav-cta {
  color: var(--ivory);
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  padding: 118px max(24px, calc((100vw - 1160px) / 2)) 26px;
  overflow: hidden;
  background: #171311;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 7, 6, 0.86) 0%, rgba(9, 7, 6, 0.56) 44%, rgba(9, 7, 6, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 7, 6, 0.72) 0%, rgba(9, 7, 6, 0) 48%);
}

.hero-content {
  position: relative;
  width: min(650px, 100%);
  color: var(--ivory);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  font-size: clamp(54px, 9vw, 116px);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: var(--ivory);
}

.button.secondary {
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.section .button.secondary,
.contact-card .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--ivory);
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-panel div {
  padding: 20px;
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.contact-card span {
  display: block;
  color: rgba(255, 253, 248, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  color: var(--ivory);
  font-size: 20px;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: end;
}

.intro > p,
.lookbook-copy p,
.visit p,
.arrival-card p,
.collection-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.collection-card,
.arrival-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 14px 38px rgba(24, 21, 22, 0.08);
}

.collection-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  color: var(--ivory);
  overflow: hidden;
}

.collection-card span {
  margin-bottom: auto;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.collection-card p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.76);
}

.collection-card.ruby {
  background: linear-gradient(160deg, #d9465f, #7f1729);
}

.collection-card.emerald {
  background: linear-gradient(160deg, #129176, #0a463c);
}

.collection-card.charcoal {
  background: linear-gradient(160deg, #565b63, #16191d);
}

.collection-card.gold {
  color: var(--ink);
  background: linear-gradient(160deg, #f4d98d, #b77d28);
}

.collection-card.gold p {
  color: rgba(24, 21, 22, 0.72);
}

.arrivals {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1160px) / 2));
  padding-left: max(24px, calc((100vw - 1160px) / 2));
  background: #f6efe5;
}

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

.arrival-card {
  padding: 18px;
}

.swatch {
  height: 178px;
  margin-bottom: 20px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.swatch-1 {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.74), transparent 14%),
    linear-gradient(135deg, #b91532 0%, #f1b74e 47%, #0f6a58 100%);
}

.swatch-2 {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 34%),
    repeating-linear-gradient(90deg, #efe2cf 0 18px, #d9b3a0 18px 34px, #7f8f74 34px 54px);
}

.swatch-3 {
  background:
    radial-gradient(circle at 70% 30%, #d9b566, transparent 18%),
    linear-gradient(135deg, #1e2228, #334d59 52%, #8b6b3f);
}

.instagram-gallery {
  padding-bottom: 48px;
}

.instagram-gallery .section-heading {
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eee3d6;
  box-shadow: 0 14px 38px rgba(24, 21, 22, 0.08);
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 310px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.small {
  min-height: 180px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms ease, transform 360ms ease;
}

.gallery-item img.is-loaded {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.lookbook {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: center;
}

.lookbook-copy .button {
  margin-top: 14px;
  color: var(--ivory);
  background: var(--ink);
}

.lookbook-stack {
  min-height: 460px;
  position: relative;
}

.lookbook-stack div {
  position: absolute;
  display: grid;
  place-items: end start;
  width: 62%;
  min-height: 250px;
  padding: 24px;
  border-radius: 8px;
  color: var(--ivory);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  box-shadow: var(--shadow);
}

.lookbook-stack div:nth-child(1) {
  top: 0;
  left: 0;
  background: linear-gradient(145deg, #9e1730, #e0a443);
}

.lookbook-stack div:nth-child(2) {
  top: 94px;
  right: 0;
  background: linear-gradient(145deg, #0b594c, #d1a54e);
}

.lookbook-stack div:nth-child(3) {
  left: 16%;
  bottom: 0;
  background: linear-gradient(145deg, #24272b, #6a2d41);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.contact-card span {
  color: var(--muted);
}

.contact-card strong {
  margin: 10px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.contact-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: var(--ruby);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--ivory);
    box-shadow: 0 18px 44px rgba(24, 21, 22, 0.16);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
  }

  .intro,
  .lookbook,
  .visit {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 78vh;
    padding: 112px 18px 20px;
  }

  .hero-panel,
  .collection-grid,
  .arrival-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 16px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 46px 0;
  }

  .arrivals {
    padding-right: 14px;
    padding-left: 14px;
  }

  .section-heading {
    display: block;
  }

  .collection-card {
    min-height: 250px;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.small {
    min-height: 340px;
  }

  .lookbook-stack {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .lookbook-stack div {
    position: static;
    width: 100%;
    min-height: 180px;
  }

  .footer {
    width: calc(100% - 28px);
  }
}
