:root {
  --ink: #201915;
  --soft-ink: rgba(32, 25, 21, 0.68);
  --paper: #f5eee7;
  --cream: #fffaf4;
  --rose: #b86f65;
  --rose-dark: #884a45;
  --charcoal: #29211d;
  --gold: #c4a36f;
  --line: rgba(32, 25, 21, 0.16);
  --light-line: rgba(255, 250, 244, 0.26);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}
body::selection { background: var(--rose); color: var(--cream); }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 14px;
  top: -52px;
  z-index: 1000;
  background: var(--cream);
  color: var(--ink);
  padding: 12px 14px;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: absolute;
  top: 18px;
  left: 24px;
  right: 24px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 66px;
  padding: 10px 12px;
  color: var(--cream);
  border: 1px solid rgba(255, 250, 244, 0.34);
  background: rgba(32, 25, 21, 0.50);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-grid;
  grid-template-columns: 38px auto;
  gap: 11px;
  align-items: center;
  width: max-content;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  background: rgba(255, 250, 244, 0.12);
}
.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.brand small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.2;
  opacity: 0.82;
}
.site-header nav {
  display: flex;
  gap: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.site-header nav a,
.call-button,
.hero-actions a,
.text-button,
.bridal-image span,
.category-row,
.step,
.visit-card a {
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease, border-color 180ms ease;
}
.site-header nav a:hover { opacity: 0.68; }
.call-button {
  justify-self: end;
  min-height: 44px;
  min-width: 74px;
  border: 0;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.call-button:hover { transform: translateY(-2px); }

.hero {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--cream);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 25, 21, 0.77), rgba(32, 25, 21, 0.24) 58%, rgba(32, 25, 21, 0.38)),
    linear-gradient(0deg, rgba(32, 25, 21, 0.66), transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 90vw);
  padding: 22vh 0 14vh 7.4vw;
}
.eyebrow {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.034em;
  margin: 0;
}
.hero h1 {
  max-width: 780px;
  font-size: clamp(55px, 7.4vw, 116px);
  line-height: 0.98;
}
.hero-copy > p:last-of-type {
  width: min(455px, 86vw);
  margin: 26px 0 0;
  font-size: 16px;
  line-height: 1.56;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 244, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-actions a:first-child {
  border-color: var(--rose);
  background: var(--rose);
}
.hero-actions a:hover { transform: translateY(-2px); }
.quiet-card {
  position: absolute;
  right: 5.2vw;
  bottom: 9vh;
  z-index: 1;
  width: 300px;
  padding: 25px;
  background: rgba(255, 250, 244, 0.92);
  color: var(--ink);
  border-left: 5px solid var(--rose);
}
.quiet-card span {
  display: block;
  margin-bottom: 15px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.quiet-card strong {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 500;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.ticker span {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.ticker span:last-child { border-right: 0; }

.intro,
.shop-section,
.bridal-section,
.consign-section,
.visit {
  padding-left: 7.4vw;
  padding-right: 7.4vw;
}
.intro {
  display: grid;
  grid-template-columns: 0.38fr 1fr 0.52fr;
  gap: 6vw;
  padding-top: 128px;
  padding-bottom: 124px;
}
.intro h2,
.section-head h2,
.bridal-copy h2,
.visit h2 {
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 1.08;
}
.intro p:last-child,
.bridal-copy p {
  margin: 10px 0 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.68;
}

.shop-section {
  padding-top: 130px;
  padding-bottom: 145px;
  background: var(--charcoal);
  color: var(--cream);
}
.section-head {
  max-width: 820px;
  margin-bottom: 58px;
}
.shop-grid {
  display: grid;
  grid-template-columns: 0.56fr 0.44fr;
  gap: 34px;
}
.feature-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 620px;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-image figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 470px;
  padding: 13px 14px;
  background: rgba(32, 25, 21, 0.70);
  color: rgba(255, 250, 244, 0.82);
  font-size: 12px;
  line-height: 1.45;
}
.category-panel {
  border: 1px solid var(--light-line);
  min-height: 620px;
}
.category-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--light-line);
}
.category-tabs button {
  min-height: 62px;
  border: 0;
  border-right: 1px solid var(--light-line);
  background: transparent;
  color: rgba(255, 250, 244, 0.62);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.category-tabs button:last-child { border-right: 0; }
.category-tabs button.active {
  background: var(--rose);
  color: var(--cream);
}
.category-detail {
  min-height: 318px;
  padding: 38px;
  border-bottom: 1px solid var(--light-line);
}
.category-detail span {
  color: rgba(255, 250, 244, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.category-detail h3 {
  margin: 28px 0 20px;
  font-size: clamp(32px, 4.1vw, 54px);
  line-height: 1.05;
}
.category-detail p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 250, 244, 0.75);
  font-size: 15px;
  line-height: 1.62;
}
.category-row {
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 21px 24px;
  border: 0;
  border-bottom: 1px solid var(--light-line);
  background: transparent;
  color: rgba(255, 250, 244, 0.68);
  text-align: left;
}
.category-row:last-child { border-bottom: 0; }
.category-row strong {
  font-size: 14px;
  font-weight: 600;
}
.category-row span,
.category-row i {
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.category-row i { opacity: 0; }
.category-row:hover,
.category-row.selected {
  background: rgba(255, 250, 244, 0.06);
  color: var(--cream);
}
.category-row:hover i,
.category-row.selected i { opacity: 1; }

.bridal-section {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 7vw;
  padding-top: 150px;
  padding-bottom: 150px;
  background: var(--paper);
}
.bridal-copy {
  align-self: center;
}
.text-button {
  margin-top: 34px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.text-button:hover { opacity: 0.68; }
.bridal-image {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--charcoal);
  overflow: hidden;
}
.bridal-image img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  transition: transform 700ms ease;
}
.bridal-image:hover img { transform: scale(1.025); }
.bridal-image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(255, 250, 244, 0.62);
  background: rgba(32, 25, 21, 0.38);
  color: var(--cream);
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.consign-section {
  padding-top: 136px;
  padding-bottom: 146px;
  background: var(--cream);
}
.section-head.vertical {
  max-width: 760px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.step {
  min-height: 245px;
  padding: 28px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
}
.step:last-child { border-right: 0; }
.step span {
  display: block;
  margin-bottom: 42px;
  color: var(--rose-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.step strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.12;
}
.step small {
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.55;
}
.step:hover,
.step.active {
  background: var(--rose);
  color: var(--cream);
}
.step:hover span,
.step.active span,
.step:hover small,
.step.active small {
  color: rgba(255, 250, 244, 0.76);
}
.step-note {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.64;
}

.visit {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 7vw;
  padding-top: 136px;
  padding-bottom: 146px;
  background: var(--rose-dark);
  color: var(--cream);
}
.visit-card {
  align-self: end;
  padding: 32px;
  border: 1px solid rgba(255, 250, 244, 0.38);
  background: rgba(32, 25, 21, 0.18);
}
.visit-card p {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.35;
}
.visit-card a {
  display: block;
  width: max-content;
  margin-top: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
}
.visit-card a:hover { opacity: 0.72; }
.visit-card small {
  display: block;
  margin-top: 32px;
  color: rgba(255, 250, 244, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding: 44px 7.4vw 84px;
  background: var(--ink);
  color: var(--cream);
}
footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}
footer div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 13px;
}
.footer-brand .brand-mark {
  width: 32px;
  height: 32px;
}

.mobile-dock { display: none; }
dialog {
  border: 0;
  padding: 0;
}
dialog::backdrop {
  background: rgba(32, 25, 21, 0.72);
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 30px;
  line-height: 1;
}
.call-dialog {
  width: min(540px, 92vw);
  padding: 48px;
  background: var(--cream);
  color: var(--ink);
}
.call-dialog h2 {
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.08;
}
.call-dialog p:not(.eyebrow) {
  max-width: 360px;
  margin: 24px 0;
  line-height: 1.6;
}
.call-dialog a {
  display: block;
  margin: 30px 0 12px;
  font-family: var(--serif);
  font-size: 27px;
}
.call-dialog small { color: var(--soft-ink); }
.photo-dialog {
  width: min(900px, 94vw);
  background: var(--ink);
  color: var(--cream);
}
.photo-dialog img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}
.photo-dialog p {
  margin: 0;
  padding: 14px 18px 18px;
  font-size: 13px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms ease, transform 800ms ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 780px) {
  .site-header {
    left: 14px;
    right: 14px;
    top: 12px;
    grid-template-columns: 1fr auto;
    min-height: 58px;
  }
  .brand {
    grid-template-columns: 32px auto;
    gap: 9px;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
  }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 10px; }
  .site-header nav { display: none; }
  .call-button {
    min-width: 62px;
    min-height: 42px;
  }
  .hero { min-height: 100svh; }
  .hero > img { object-position: 58% center; }
  .hero-copy {
    width: auto;
    padding: 20vh 20px 190px;
  }
  .hero h1 {
    max-width: 350px;
    font-size: clamp(44px, 12.6vw, 60px);
    line-height: 1.02;
  }
  .hero-copy > p:last-of-type { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .quiet-card {
    left: 20px;
    right: 20px;
    bottom: 86px;
    width: auto;
    padding: 18px;
  }
  .ticker { grid-template-columns: 1fr 1fr; }
  .ticker span {
    min-height: 62px;
    font-size: 10px;
    border-bottom: 1px solid var(--line);
  }
  .intro,
  .shop-grid,
  .bridal-section,
  .visit,
  footer {
    grid-template-columns: 1fr;
  }
  .intro,
  .shop-section,
  .bridal-section,
  .consign-section,
  .visit {
    padding-left: 20px;
    padding-right: 20px;
  }
  .intro,
  .shop-section,
  .bridal-section,
  .consign-section,
  .visit {
    padding-top: 92px;
    padding-bottom: 92px;
  }
  .intro { gap: 24px; }
  .intro h2,
  .section-head h2,
  .bridal-copy h2,
  .visit h2 {
    font-size: 42px;
  }
  .feature-image {
    min-height: 430px;
  }
  .category-panel {
    min-height: auto;
    margin-top: 18px;
  }
  .category-tabs button {
    min-height: 56px;
    font-size: 10px;
  }
  .category-detail {
    min-height: 248px;
    padding: 28px 22px;
  }
  .category-detail h3 { font-size: 36px; }
  .category-row {
    padding: 17px 14px;
  }
  .bridal-section { gap: 34px; }
  .bridal-image img { aspect-ratio: 0.92; }
  .steps { grid-template-columns: 1fr; }
  .step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .step:last-child { border-bottom: 0; }
  .step span { margin-bottom: 26px; }
  .visit-card { padding: 24px; }
  footer {
    gap: 28px;
    padding: 40px 20px 102px;
  }
  footer div { align-items: flex-start; }
  .mobile-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1fr;
    height: 68px;
    background: rgba(32, 25, 21, 0.96);
    color: var(--cream);
    border-top: 1px solid var(--light-line);
    backdrop-filter: blur(12px);
  }
  .mobile-dock a,
  .mobile-dock button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-right: 1px solid var(--light-line);
    background: transparent;
    color: inherit;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .mobile-dock button {
    border-right: 0;
    background: var(--rose);
  }
  .call-dialog {
    padding: 44px 28px 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
