:root {
  --ink: #181512;
  --muted: #6c6259;
  --paper: #fbfaf7;
  --linen: #ece5da;
  --gold: #b8873d;
  --gold-deep: #7a5525;
  --jade: #254b45;
  --rose: #b76e63;
  --white: #ffffff;
  --line: rgba(24, 21, 18, 0.14);
  --shadow: 0 24px 60px rgba(24, 21, 18, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.category-page .site-header {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(184, 135, 61, 0.78);
  border-radius: 50%;
  background: #0d0c0a;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

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

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a.is-active {
  background: rgba(184, 135, 61, 0.18);
  color: var(--gold-deep);
}

.nav-call {
  background: var(--white);
  color: var(--ink);
}

.site-header.is-scrolled .nav-call {
  background: var(--ink);
  color: var(--white);
}

.category-page .nav-call {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 140px clamp(20px, 5vw, 72px) 78px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.84) 0%, rgba(12, 10, 8, 0.55) 35%, rgba(12, 10, 8, 0.12) 72%),
    linear-gradient(0deg, rgba(12, 10, 8, 0.58) 0%, rgba(12, 10, 8, 0) 40%);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.hero-logo {
  display: block;
  width: clamp(112px, 15vw, 172px);
  aspect-ratio: 1;
  margin: 0 0 22px;
  border: 1px solid rgba(217, 173, 106, 0.7);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

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

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 9vw, 118px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 24px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 850;
}

.button svg {
  width: 19px;
  height: 19px;
}

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

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-strip div {
  min-height: 112px;
  padding: 24px clamp(18px, 4vw, 44px);
  background: var(--jade);
  color: var(--white);
}

.quick-strip span,
.quick-strip strong {
  display: block;
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.quick-strip strong {
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.4vw, 27px);
  font-weight: 500;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.intro {
  max-width: 980px;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5.4vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.intro p,
.feature-copy p,
.curation-copy p,
.visit-band p {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
}

.curation-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37, 75, 69, 0.94), rgba(24, 21, 18, 0.98)),
    var(--jade);
}

.curation-band .section-kicker {
  color: #d9ad6a;
}

.curation-statement h2 {
  max-width: 760px;
}

.curation-copy {
  border-left: 1px solid rgba(217, 173, 106, 0.46);
  padding-left: clamp(22px, 4vw, 42px);
}

.curation-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background: var(--linen);
}

.feature-copy {
  position: sticky;
  top: 110px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  border-bottom: 2px solid var(--gold);
  color: var(--gold-deep);
  font-weight: 850;
}

.ring-grid {
  display: grid;
  gap: 14px;
}

.ring-grid article,
.service-list article,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
}

.ring-grid article {
  padding: clamp(22px, 3vw, 36px);
}

.ring-grid span {
  color: var(--rose);
  font-weight: 900;
}

h3 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.ring-grid p,
.service-list p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-list article {
  padding: 24px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(24, 21, 18, 0.04);
}

.service-list svg {
  width: 30px;
  height: 30px;
  color: var(--gold-deep);
}

.visit-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--jade);
}

.visit-band .section-kicker {
  color: #d9ad6a;
}

.visit-band p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel {
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.visit-band .contact-panel p {
  color: var(--muted);
}

.hours-list {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.hours-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hours-list p {
  color: var(--ink);
  font-weight: 750;
}

.contact-panel a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
}

.contact-panel a + a {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.social-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.social-links span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.social-links a {
  min-height: 42px;
  margin-top: 0;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 850;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.category-page {
  background: var(--paper);
}

.category-header {
  position: sticky;
}

.category-hero {
  min-height: 70vh;
  display: grid;
  align-items: end;
  padding-top: 132px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.88), rgba(12, 10, 8, 0.58) 42%, rgba(12, 10, 8, 0.22)),
    var(--category-bg) center / cover;
}

.bridal-page {
  --category-bg: url("assets/bridal-bg.png");
}

.fashion-page {
  --category-bg: url("assets/fashion-bg.png");
}

.everyday-page {
  --category-bg: url("assets/everyday-bg.png");
}

.bridal-page .category-hero {
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.88), rgba(12, 10, 8, 0.58) 42%, rgba(12, 10, 8, 0.22)),
    url("assets/bridal-bg.png") center / cover;
}

.fashion-page .category-hero {
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.88), rgba(12, 10, 8, 0.58) 42%, rgba(12, 10, 8, 0.22)),
    url("assets/fashion-bg.png") center / cover;
}

.everyday-page .category-hero {
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.88), rgba(12, 10, 8, 0.58) 42%, rgba(12, 10, 8, 0.22)),
    url("assets/everyday-bg.png") center / cover;
}

.category-hero > div {
  max-width: 900px;
}

.category-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.96;
}

.category-hero p:not(.section-kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.8vw, 23px);
}

.category-button {
  margin-top: 18px;
  background: var(--white);
  color: var(--ink);
}

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

.category-grid article {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
}

.category-grid span {
  color: var(--rose);
  font-weight: 900;
}

.category-grid h2 {
  margin-top: 48px;
  font-size: clamp(28px, 3.6vw, 46px);
}

.category-grid p {
  color: var(--muted);
  font-size: 17px;
}

.gallery-page {
  background: var(--paper);
}

.gallery-page .site-header,
.gallery-page .nav-call {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.96);
}

.gallery-page .nav-call {
  color: var(--white);
  background: var(--ink);
}

.gallery-intro {
  max-width: 980px;
  padding-top: 132px;
  padding-bottom: 54px;
}

.gallery-intro h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 102px);
  font-weight: 500;
  line-height: 0.94;
}

.gallery-intro p:not(.section-kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
}

.inventory-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}

.inventory-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.inventory-card:nth-child(1),
.inventory-card:nth-child(4) {
  grid-column: span 8;
}

.inventory-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 420ms ease;
}

.inventory-card:hover img {
  transform: scale(1.025);
}

.inventory-card figcaption {
  padding: 18px 20px 22px;
}

.inventory-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inventory-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 500;
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  background: var(--ink);
}

.gallery-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
}

.gallery-cta p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-cta .button {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: var(--radius);
  }

  .nav-call,
  .site-header.is-scrolled .nav-call {
    color: var(--white);
    background: var(--ink);
  }

  .quick-strip,
  .category-grid,
  .curation-band,
  .feature-band,
  .section-heading,
  .visit-band {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    position: static;
  }

  .curation-copy {
    border-left: 0;
    border-top: 1px solid rgba(217, 173, 106, 0.46);
    padding-top: 24px;
    padding-left: 0;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-band {
    padding-bottom: 78px;
  }

  .inventory-card,
  .inventory-card:nth-child(1),
  .inventory-card:nth-child(4) {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 74px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding: 122px 20px 52px;
  }

  .hero-logo {
    width: 104px;
    margin-bottom: 18px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 10, 8, 0.86), rgba(12, 10, 8, 0.34)),
      linear-gradient(0deg, rgba(12, 10, 8, 0.72), rgba(12, 10, 8, 0.06));
  }

  .hero-actions,
  .button,
  .service-list,
  .site-footer {
    width: 100%;
  }

  .button {
    padding-inline: 14px;
  }

  .quick-strip div {
    min-height: auto;
    padding: 20px;
  }

  .section,
  .curation-band,
  .feature-band,
  .visit-band {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .category-hero {
    min-height: 68vh;
    padding-top: 104px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .category-grid article {
    min-height: auto;
  }

  .gallery-intro {
    padding-top: 104px;
  }

  .inventory-card,
  .inventory-card:nth-child(1),
  .inventory-card:nth-child(4) {
    grid-column: 1 / -1;
  }

  .gallery-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .category-grid h2 {
    margin-top: 28px;
  }

  .contact-panel {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}
