:root {
  --ink: #2d261f;
  --ink-soft: #f4efe7;
  --paper: #fbfaf7;
  --gold: #b98a4c;
  --gold-light: #d8b77e;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; scroll-padding-top: 130px; background: var(--paper); }
[id] { scroll-margin-top: 130px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
main { width: 100%; overflow-x: hidden; overflow-x: clip; }
body::selection { color: var(--ink); background: var(--gold); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
video { display: block; max-width: 100%; }
.section-shell { width: min(1240px, calc(100% - 96px)); margin-inline: auto; }

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 112px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4.5vw;
  color: var(--ink);
  border-bottom: 1px solid #e8e1d6;
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(16px);
}
.brand {
  position: relative;
  z-index: 2;
  display: flex;
  width: 145px;
  height: 92px;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #fff;
}
.brand img {
  width: 132px;
  max-height: 88px;
  object-fit: contain;
  filter: none;
}
.site-header nav {
  display: flex;
  gap: 38px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-header nav a, .text-link, .footer-bottom a { position: relative; }
.site-header nav a::after, .text-link::after, .footer-bottom a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
  background: var(--gold);
}
.site-header nav a:hover::after, .text-link:hover::after, .footer-bottom a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 11px;
}
.header-instagram {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gold);
  border: 1px solid #d8cabb;
  border-radius: 50%;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.header-instagram:hover { color: #fff; border-color: var(--gold); background: var(--gold); }
.header-call {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 13px 19px;
  font-size: 12px;
  letter-spacing: 0.08em;
  border: 1px solid #d8cabb;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.header-call:hover { color: var(--ink); border-color: var(--gold); background: var(--gold); }
.mobile-menu { display: none; justify-self: end; }

.hero {
  display: grid;
  min-height: 790px;
  grid-template-columns: 52% 48%;
  color: var(--ink);
  background: #fff;
}
.hero-copy {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 180px 7vw 92px;
  background: radial-gradient(circle at 18% 28%, rgb(185 138 76 / 10%), transparent 25%), linear-gradient(135deg, #fff 0%, #f8f4ed 100%);
}
.hero-copy::before {
  position: absolute;
  inset: 112px 0 0;
  content: "";
  pointer-events: none;
  opacity: 0.55;
  background-image: linear-gradient(rgb(99 78 53 / 8%) 1px, transparent 1px);
  background-size: 100% 145px;
}
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow span { width: 34px; height: 1px; background: var(--gold); }
.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 35px 0 27px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(68px, 7.2vw, 116px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.055em;
}
.hero h1 em {
  display: block;
  margin-left: 0.5em;
  padding-top: 0.18em;
  color: var(--gold-light);
  font-size: 0.65em;
  font-weight: 400;
}
.hero-copy > p {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin: 0;
  color: #756d64;
  font-size: 16px;
  line-height: 1.8;
}
.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--ink); background: var(--gold); }
.button-gold:hover { background: var(--gold-light); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #554b42;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-mark {
  position: absolute;
  right: -0.03em;
  bottom: -0.18em;
  color: rgb(185 138 76 / 8%);
  font-family: Georgia, serif;
  font-size: 310px;
  line-height: 1;
  letter-spacing: -0.16em;
  user-select: none;
}
.hero-mark span { font-size: 0.7em; }
.hero-visual { position: relative; overflow: hidden; min-height: 720px; }
.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.02);
  animation: heroZoom 12s ease-out both;
}
.hero-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(255 255 255 / 34%), transparent 25%), linear-gradient(0deg, rgb(36 28 18 / 38%), transparent 38%);
}
.hero-caption {
  position: absolute;
  bottom: 55px;
  left: 45px;
  display: flex;
  align-items: flex-start;
  gap: 19px;
  padding: 17px 20px;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 30%);
  background: rgb(48 38 27 / 28%);
  backdrop-filter: blur(12px);
}
.hero-caption span { padding-top: 4px; color: var(--gold); font-size: 10px; letter-spacing: 0.18em; }
.hero-caption p { margin: 0; font-family: Georgia, serif; font-size: 20px; line-height: 1.35; }
.vertical-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 23px;
  color: rgb(255 255 255 / 67%);
  font-size: 9px;
  letter-spacing: 0.34em;
  transform: translate(50%, -50%) rotate(90deg);
}
.manifesto {
  display: flex;
  min-height: 130px;
  align-items: center;
  gap: 27px;
  padding: 0 6vw;
  color: var(--ink);
  border-top: 1px solid #e7dfd2;
  border-bottom: 1px solid #e7dfd2;
  background: #f5f0e7;
}
.manifesto svg { color: var(--gold); }
.manifesto p { flex: none; margin: 0; font-family: Georgia, serif; font-size: clamp(21px, 2vw, 31px); }
.manifesto p em { color: var(--gold); }
.manifesto-line { width: 100%; height: 1px; margin-left: 20px; background: linear-gradient(90deg, rgb(199 161 107 / 45%), transparent); }

.collections { padding-top: 120px; padding-bottom: 130px; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 54px;
}
.section-heading h2, .store-copy h2, .locations-title h2, .contact h2 {
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}
.section-heading > p {
  max-width: 450px;
  justify-self: end;
  margin: 0 0 4px;
  color: #686158;
  font-size: 15px;
  line-height: 1.8;
}
.collection-grid { display: grid; height: 550px; grid-template-columns: 1.15fr 0.85fr 0.85fr; gap: 14px; }
.collection-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  cursor: default;
  color: white;
  background: #c9c4bb;
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-wash { position: absolute; inset: 0; background: linear-gradient(0deg, rgb(10 9 7 / 78%), transparent 52%); }
.card-index {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.12em;
  border: 1px solid rgb(255 255 255 / 37%);
  border-radius: 100%;
  backdrop-filter: blur(8px);
}
.card-title {
  position: absolute;
  right: 26px;
  bottom: 27px;
  left: 26px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  font-family: Georgia, serif;
  font-size: 28px;
}
.card-title small {
  color: rgb(255 255 255 / 68%);
  font-family: Inter, Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.store-story { display: grid; align-items: center; grid-template-columns: 1.03fr 0.97fr; padding-bottom: 130px; }
.store-image { position: relative; height: 610px; }
.store-image img { width: 100%; height: 100%; object-fit: cover; }
.image-corner {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 100px;
  height: 100px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.store-copy { position: relative; padding: 65px 7vw; }
.store-gem { position: absolute; top: 3px; right: 4vw; color: var(--gold); }
.store-copy h2 { max-width: 540px; }
.store-copy p { max-width: 480px; margin: 30px 0 38px; color: #686158; font-size: 15px; line-height: 1.85; }
.button-outline { border: 1px solid #b7aa98; }
.button-outline:hover { color: var(--paper); border-color: var(--ink); background: var(--ink); }

.locations {
  padding: 112px 0 125px;
  color: var(--ink);
  border-top: 1px solid #e7dfd2;
  border-bottom: 1px solid #e7dfd2;
  background: radial-gradient(circle at 8% 8%, rgb(185 138 76 / 10%), transparent 28%), #f7f3ec;
}
.locations-title {
  display: grid;
  grid-template-columns: 0.42fr 1fr 0.62fr;
  align-items: end;
  gap: 36px;
  margin-bottom: 52px;
}
.locations-title h2 {
  margin: 0;
  font-size: clamp(48px, 4.8vw, 70px);
}
.locations-title > p {
  max-width: 390px;
  margin: 0 0 4px;
  color: #756d64;
  font-size: 14px;
  line-height: 1.8;
}
.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.location-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #ded3c4;
  background: #fff;
  box-shadow: 0 24px 60px rgb(77 57 31 / 8%);
}
.location-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #e8e0d4;
}
.location-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-number {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 11px 15px;
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
  border: 1px solid rgb(255 255 255 / 42%);
  background: rgb(44 35 25 / 34%);
  backdrop-filter: blur(12px);
  text-transform: uppercase;
}
.video-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(255 255 255 / 8%), transparent 28%, rgb(38 28 17 / 14%));
}
.location-content {
  display: grid;
  min-height: 172px;
  grid-template-columns: 34px 52px 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 25px 28px;
}
.location-number, .location-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.location-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgb(199 161 107 / 42%);
  border-radius: 100%;
}
.location-copy { min-width: 0; }
.location-card h3 { margin: 10px 0 7px; font-family: Georgia, serif; font-size: 19px; font-weight: 400; }
.location-card p { margin: 0; color: #81786e; font-size: 12px; }
.location-content > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #6d6257;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.location-content > a:hover { color: var(--gold); }

.contact { position: relative; overflow: hidden; min-height: 610px; color: var(--ink); }
.contact-bg, .contact-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.contact-bg { object-fit: cover; object-position: center 40%; }
.contact-overlay { background: linear-gradient(90deg, rgb(255 255 255 / 97%) 0%, rgb(251 248 242 / 94%) 48%, rgb(251 248 242 / 67%) 100%); }
.contact-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
  padding: 112px 0;
}
.contact h2 { max-width: 730px; }
.contact-inner > p { max-width: 480px; margin: 26px 0 36px; color: #756d64; line-height: 1.75; }
.contact-actions { display: flex; gap: 12px; }
.button-dark {
  color: white;
  border: 1px solid var(--ink);
  background: var(--ink);
  backdrop-filter: blur(10px);
}
.button-dark:hover { color: var(--ink); border-color: var(--gold); background: var(--gold-light); }
.button-instagram { color: var(--ink); border: 1px solid #cbbda9; background: rgb(255 255 255 / 64%); backdrop-filter: blur(10px); }
.button-instagram:hover { border-color: var(--gold); background: #fff; }
.contact-monogram {
  position: absolute;
  top: 50%;
  right: 6vw;
  width: min(30vw, 380px);
  opacity: 0.09;
  transform: translateY(-50%);
}

footer { color: #6f665c; border-top: 1px solid #e6ddd0; background: #fff; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: center;
  gap: 6vw;
  padding-top: 72px;
  padding-bottom: 72px;
}
.footer-top > img { width: 195px; }
.footer-addresses { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px; }
.footer-addresses p { margin: 0; font-size: 12px; line-height: 1.75; }
.footer-addresses span { color: #9a9186; }
.footer-contact {
  display: flex;
  justify-self: end;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 15px;
}
.footer-phone { color: var(--gold); font-family: Georgia, serif; font-size: 20px; }
.footer-phone span {
  display: block;
  margin-bottom: 9px;
  color: #9a9186;
  font-family: Inter, Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.footer-instagram {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: var(--gold);
  border: 1px solid #d8cabb;
  border-radius: 50%;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.footer-instagram:hover { color: #fff; border-color: var(--gold); background: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 28px;
  color: #92887d;
  font-size: 10px;
  letter-spacing: 0.08em;
  border-top: 1px solid #e9e2d8;
  text-transform: uppercase;
}
.footer-credit {
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer-credit > span {
  color: #a1978b;
  white-space: nowrap;
}
.footer-credit img {
  width: 120px;
  height: 32px;
  object-fit: contain;
}
.mobile-actions { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.reveal-1 { animation-delay: 0.12s; }
.reveal-2 { animation-delay: 0.23s; }
.reveal-3 { animation-delay: 0.34s; }
.reveal-4 { animation-delay: 0.45s; }
.reveal-image { animation-delay: 0.08s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.02); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 100px; }
  [id] { scroll-margin-top: 100px; }
  .section-shell, .contact-inner { width: min(100% - 48px, 760px); }
  .site-header { height: 82px; grid-template-columns: 1fr auto; padding-inline: 24px; }
  .brand { width: 112px; height: 70px; }
  .brand img { width: 102px; max-height: 68px; }
  .site-header nav, .header-actions { display: none; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu summary {
    display: grid;
    width: 43px;
    height: 43px;
    cursor: pointer;
    list-style: none;
    place-items: center;
    border: 1px solid #d9cfc2;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu > div {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: 210px;
    padding: 15px;
    color: var(--ink);
    border: 1px solid #e5ddd2;
    background: rgb(255 255 255 / 98%);
    box-shadow: 0 25px 60px rgb(0 0 0 / 30%);
  }
  .mobile-menu > div a { padding: 13px 11px; font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase; }
  .mobile-menu > div .mobile-instagram { display: flex; align-items: center; gap: 9px; color: var(--gold); border-top: 1px solid #eee6dc; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 670px; padding: 145px 8vw 85px; }
  .hero-visual { height: 75vw; min-height: 510px; }
  .hero-mark { font-size: 250px; }
  .collection-grid { height: auto; grid-template-columns: 1fr 1fr; }
  .collection-card { height: 460px; }
  .collection-card:first-child { grid-column: span 2; }
  .store-story { grid-template-columns: 1fr; }
  .store-copy { padding: 75px 30px 0; }
  .locations-title { grid-template-columns: 1fr 1fr; }
  .locations-title .section-kicker { grid-column: span 2; }
  .location-content { grid-template-columns: 28px 48px 1fr; }
  .location-content > a { grid-column: 3; margin-top: -13px; }
  .contact-monogram { width: 38vw; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 2; justify-self: start; }
}

@media (max-width: 640px) {
  .section-shell, .contact-inner { width: calc(100% - 32px); }
  .site-header { padding-inline: 18px; }
  .brand { width: 112px; }
  .hero-copy { min-height: 650px; padding: 135px 22px 72px; }
  .hero-copy::before { background-size: 100% 120px; }
  .hero h1 { margin-top: 30px; font-size: clamp(61px, 20vw, 82px); line-height: 0.87; }
  .hero h1 em { margin-left: 0.18em; }
  .hero-copy > p { max-width: 330px; font-size: 14px; }
  .hero-actions { width: 100%; align-items: stretch; flex-direction: column; gap: 12px; margin-top: 34px; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-actions .text-link { min-height: 48px; padding: 0 18px; border: 1px solid #d8cabb; }
  .hero-mark { right: -45px; font-size: 180px; }
  .hero-visual { height: 115vw; min-height: 480px; }
  .hero-caption { right: 24px; bottom: 32px; left: 24px; width: fit-content; max-width: calc(100% - 48px); }
  .vertical-note { right: 16px; }
  .manifesto { min-height: 105px; gap: 15px; padding: 0 22px; }
  .manifesto p { font-size: 18px; line-height: 1.35; }
  .manifesto-line { display: none; }
  .collections { padding-top: 82px; padding-bottom: 86px; }
  .section-heading { grid-template-columns: 1fr; gap: 23px; margin-bottom: 35px; }
  .section-heading h2, .store-copy h2, .locations-title h2, .contact h2 { font-size: 46px; }
  .section-heading > p { justify-self: start; }
  .collection-grid {
    display: flex;
    overflow-x: auto;
    width: 100%;
    margin-right: 0;
    padding: 0 1px 8px 0;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .collection-grid::-webkit-scrollbar { display: none; }
  .collection-card, .collection-card:first-child { width: 82vw; min-width: 82vw; height: 470px; scroll-snap-align: start; }
  .store-story { width: 100%; padding-bottom: 86px; }
  .store-image { height: 110vw; max-height: 570px; }
  .image-corner { right: 18px; bottom: -13px; }
  .store-copy { padding: 70px 18px 0; }
  .store-gem { right: 22px; }
  .locations { padding: 83px 0; }
  .locations-title { grid-template-columns: 1fr; gap: 20px; margin-bottom: 35px; }
  .locations-title .section-kicker { grid-column: auto; }
  .locations-title > p { margin-top: 2px; }
  .location-list { grid-template-columns: 1fr; gap: 18px; }
  .location-video { aspect-ratio: 9 / 12; }
  .location-content {
    min-height: 190px;
    grid-template-columns: 50px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-items: start;
    column-gap: 16px;
    row-gap: 12px;
    padding: 24px 20px;
  }
  .location-number { grid-column: 1; grid-row: 1; padding-top: 3px; }
  .location-icon { grid-column: 1; grid-row: 2; }
  .location-copy { grid-column: 2; grid-row: 1 / span 2; }
  .location-card h3 { overflow-wrap: anywhere; }
  .location-content > a { grid-column: 2; grid-row: 3; margin-top: 3px; }
  .contact { min-height: 650px; }
  .contact-inner { padding: 90px 0 105px; }
  .contact-overlay { background: rgb(255 255 255 / 88%); }
  .contact-monogram { top: auto; right: -24px; bottom: -55px; width: 230px; transform: none; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 42px; padding-top: 60px; padding-bottom: 58px; }
  .footer-contact { width: 100%; grid-column: auto; justify-content: flex-start; }
  .footer-addresses { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { align-items: stretch; flex-direction: column; gap: 22px; padding-bottom: 92px; }
  .footer-bottom > span { align-self: flex-start; }
  .footer-credit { align-self: flex-start; }
  .footer-credit { gap: 8px; }
  .footer-credit img { width: 92px; height: 28px; }
  .mobile-actions {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    color: var(--ink);
    border: 1px solid #ded4c7;
    background: rgb(255 255 255 / 95%);
    box-shadow: 0 18px 45px rgb(0 0 0 / 34%);
    backdrop-filter: blur(16px);
  }
  .mobile-actions a {
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }
  .mobile-actions a:last-child { color: var(--ink); background: var(--gold); }
}

@media (max-width: 420px) {
  .hero h1 { font-size: clamp(56px, 18.5vw, 74px); }
  .hero-caption { padding: 14px 16px; }
  .hero-caption p { font-size: 18px; }
  .section-heading h2, .store-copy h2, .locations-title h2, .contact h2 { font-size: 42px; }
  .button { max-width: 100%; padding-inline: 18px; text-align: center; }
  .collection-card, .collection-card:first-child { width: 84vw; min-width: 84vw; }
  .footer-top > img { width: 170px; }
}
