/* Cittàcico — static site */

:root {
  --background: #0a0a0a;
  --foreground: #f5f0eb;
  --gold: #c9a96e;
  --gold-light: #d4b97a;
  --charcoal: #1a1a1a;
  --surface: #111111;
  --muted: rgba(245, 240, 235, 0.6);
  --muted2: rgba(245, 240, 235, 0.4);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --header-border: rgba(201, 169, 110, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

/* Override UA default blue/purple on links; scoped colors come from later rules */
a:any-link {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold);
  color: var(--background);
}

@media (pointer: fine) {
  body.use-custom-cursor * {
    cursor: none !important;
  }
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 110;
  pointer-events: none;
}

/* Custom cursor */
.custom-cursor {
  display: none;
}
@media (pointer: fine) {
  .custom-cursor {
    display: block;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.15s;
  }
  .custom-cursor.is-visible {
    opacity: 1;
  }
  .custom-cursor-dot {
    width: 8px;
    height: 8px;
    margin-left: -4px;
    margin-top: -4px;
    background: var(--gold);
  }
  .custom-cursor-ring {
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    transition: transform 0.15s ease, opacity 0.15s;
  }
  .custom-cursor-ring.is-hover {
    transform: scale(1.5);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.5s, backdrop-filter 0.5s;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--header-border);
}
.header-util {
  border-bottom: 1px solid var(--header-border);
  background: rgba(10, 10, 10, 0.55);
}
.site-header.is-scrolled .header-util {
  background: transparent;
  border-bottom-color: transparent;
}
.header-util-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0.45rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted2);
}
@media (min-width: 768px) {
  .header-util-inner {
    padding: 0.45rem 4rem;
  }
}
.header-tagline {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-util-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem 1.75rem;
}
.header-util-links a:any-link {
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.25s;
}
.header-util-links a:hover {
  color: var(--gold);
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .site-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(1rem, 3vw, 2.5rem);
    padding: 0 4rem;
    min-height: 4.75rem;
  }
}
.nav-cluster {
  display: none;
  align-items: center;
  gap: 2.25rem;
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .nav-cluster {
    display: flex;
    flex: unset;
  }
}
.nav-cluster--left {
  justify-content: flex-start;
}
.nav-cluster--right {
  justify-content: flex-end;
}
a.logo:any-link {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  letter-spacing: 0.28em;
  color: var(--gold);
  text-decoration: none;
  position: relative;
  z-index: 51;
  line-height: 1;
}
@media (min-width: 768px) {
  .logo--center {
    justify-self: center;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1180px) {
  .site-nav {
    column-gap: 0.85rem;
    padding: 0 2.5rem;
  }
  .nav-cluster {
    gap: 1.2rem;
  }
  a.logo:any-link {
    font-size: clamp(1rem, 1.9vw, 1.2rem);
    letter-spacing: 0.22em;
  }
  a.nav-primary:any-link,
  a.nav-simple:any-link,
  a.nav-shop:any-link {
    font-size: 0.625rem;
    letter-spacing: 0.14em;
  }
  a.nav-shop:any-link {
    padding: 0.45rem 0.9rem;
  }
}
.nav-item {
  position: relative;
}
/* Invisible bridge so pointer can reach the mega panel without losing hover */
@media (min-width: 768px) {
  .nav-item.has-mega::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: max(100%, 7.5rem);
    height: 2.75rem;
    pointer-events: auto;
    z-index: 49;
  }
}
a.nav-primary:any-link,
a.nav-simple:any-link {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.72);
  text-decoration: none;
  transition: color 0.25s;
  white-space: nowrap;
  padding: 0.35rem 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  cursor: pointer;
}
.nav-item:hover .nav-primary,
.nav-item:focus-within .nav-primary,
a.nav-primary:hover {
  color: var(--gold);
}
.site-header:has(.mega-panel--collections:hover) .nav-item--collections .nav-primary,
.site-header:has(.mega-panel--collections:focus-within) .nav-item--collections .nav-primary,
.site-header:has(.nav-item--collections.is-mega-pinned) .nav-item--collections .nav-primary,
.site-header:has(.mega-panel--house:hover) .nav-item--house .nav-primary,
.site-header:has(.mega-panel--house:focus-within) .nav-item--house .nav-primary,
.site-header:has(.nav-item--house.is-mega-pinned) .nav-item--house .nav-primary {
  color: var(--gold);
}
a.nav-simple:hover {
  color: var(--gold);
}
a.nav-shop:any-link {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  color: var(--background);
  background: var(--gold);
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--gold);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
  line-height: 1;
}
a.nav-shop:hover {
  background: transparent;
  color: var(--gold);
}

/* Mega panels (desktop): siblings of .site-nav, full width under header */
.mega-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 50;
  padding: 2.5rem 2rem 3rem;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--header-border);
  border-bottom: 1px solid var(--header-border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
@media (min-width: 768px) {
  .mega-panel {
    padding: 2.75rem 4rem 3.25rem;
  }
  .mega-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -2.75rem;
    height: 2.75rem;
  }
}
.site-header:has(.nav-item--collections:hover) .mega-panel--collections,
.site-header:has(.nav-item--collections:focus-within) .mega-panel--collections,
.site-header:has(.mega-panel--collections:hover) .mega-panel--collections,
.site-header:has(.nav-item--collections.is-mega-pinned) .mega-panel--collections,
.site-header:has(.nav-item--house:hover) .mega-panel--house,
.site-header:has(.nav-item--house:focus-within) .mega-panel--house,
.site-header:has(.mega-panel--house:hover) .mega-panel--house,
.site-header:has(.nav-item--house.is-mega-pinned) .mega-panel--house {
  display: block;
}
.mega-inner {
  max-width: 90rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem 4rem;
}
@media (min-width: 900px) {
  .mega-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 14rem);
    align-items: start;
  }
}
.mega-col-label {
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}
.mega-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mega-links a:any-link {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 235, 0.88);
  text-decoration: none;
  transition: color 0.25s, transform 0.25s;
}
.mega-links a:hover {
  color: var(--gold);
}
.mega-links a small,
.mega-links a .hint,
.mega-links .mega-links-static .hint {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 0.2rem;
}
.mega-links .mega-links-static {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 235, 0.5);
  padding: 0.15rem 0;
}
a.mega-feature:any-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--header-border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, background 0.3s;
  min-height: 100%;
}
a.mega-feature:hover {
  border-color: rgba(201, 169, 110, 0.45);
  background: rgba(201, 169, 110, 0.04);
}
.mega-feature-kicker {
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.mega-feature-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.25;
}
.mega-feature-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}
@media (max-width: 767px) {
  .mega-panel {
    display: none !important;
  }
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 51;
  flex-shrink: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
    margin-left: 0;
  }
}
.mobile-toggle span {
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--foreground);
  transition: transform 0.3s, opacity 0.2s;
  transform-origin: center;
}
.mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--background);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 6rem 2rem 3rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-overlay.is-open {
  display: flex;
}
.mobile-overlay-inner {
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.mobile-nav-group {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}
.mobile-nav-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.mobile-nav-label {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.mobile-overlay a:any-link:not(.mobile-nav-cta) {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 235, 0.92);
  text-decoration: none;
  transition: color 0.25s;
  padding: 0.35rem 0;
}
.mobile-overlay a:not(.mobile-nav-cta):hover {
  color: var(--gold);
}
.mobile-overlay .mobile-sub a:any-link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0;
}
.mobile-overlay .mobile-sub a:hover {
  color: var(--foreground);
}
a.mobile-nav-cta:any-link,
button.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 0.25rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
a.mobile-nav-cta::after,
button.mobile-nav-cta::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.mobile-nav-note {
  margin: 0.5rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 235, 0.45);
  line-height: 1.4;
}
.mobile-nav-note-hint {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted2);
}

/* Main spacing below fixed header */
main {
  min-height: 50vh;
}

.page-section {
  padding-top: 9.5rem;
  padding-bottom: 6rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 768px) {
  .page-section {
    padding-top: 10.5rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.label-upper {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

h1.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  margin: 1rem 0 2rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.5),
    var(--background)
  );
}
.hero-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 8rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform: scaleY(0);
  transform-origin: top;
  animation: heroLine 1.2s 0.2s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes heroLine {
  to {
    transform: scaleY(1);
  }
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 10vw, 6rem);
  letter-spacing: 0.15em;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100px);
  animation: charIn 0.8s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes charIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-tagline {
  font-size: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.8s 1.4s forwards ease-out;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-divider {
  width: 6rem;
  height: 1px;
  background: rgba(201, 169, 110, 0.4);
  margin: 2rem auto 0;
  transform: scaleX(0);
  animation: scaleXIn 1s 1.8s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes scaleXIn {
  to {
    transform: scaleX(1);
  }
}
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 0.8s 2.2s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.4);
}
.hero-scroll-bar {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.6), transparent);
  animation: bounceY 2s infinite ease-in-out;
}
@keyframes bounceY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Homepage editorial additions */
.section-kicker {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.home-grid-section {
  padding: 5rem 2rem;
}
@media (min-width: 768px) {
  .home-grid-section {
    padding: 6.5rem 4rem;
  }
}
.home-grid-shell {
  max-width: 90rem;
  margin: 0 auto;
}
.home-grid-head {
  margin-bottom: 2.5rem;
}
.home-grid-head--center {
  text-align: center;
}
.home-grid-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.03em;
}
.section-intro {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.category-card:any-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.category-card-media {
  display: block;
  aspect-ratio: 4 / 5;
  background-color: #181818;
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: transform 0.45s ease, border-color 0.3s ease;
  background-size: cover;
  background-position: center;
}
.category-card:hover .category-card-media {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.22);
}
.category-card-title {
  display: block;
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.88);
}
.category-card-media--bag {
  background-image:
    radial-gradient(circle at 50% 40%, rgba(255, 244, 218, 0.85), transparent 38%),
    linear-gradient(140deg, rgba(42, 28, 21, 0.88), rgba(86, 53, 33, 0.92) 55%, rgba(16, 12, 9, 0.96));
}
.category-card-media--small-leather {
  background-image:
    linear-gradient(180deg, rgba(245, 216, 220, 0.45), transparent 45%),
    linear-gradient(140deg, rgba(54, 29, 21, 0.92), rgba(113, 74, 44, 0.9), rgba(238, 210, 212, 0.82));
}
.category-card-media--belt {
  background-image:
    radial-gradient(circle at 58% 56%, rgba(230, 193, 108, 0.95), transparent 18%),
    linear-gradient(180deg, rgba(52, 33, 22, 0.1), rgba(12, 12, 12, 0.4)),
    linear-gradient(135deg, rgba(91, 57, 32, 0.9), rgba(24, 24, 24, 0.95));
}
.category-card-media--shoe {
  background-image:
    radial-gradient(circle at 60% 58%, rgba(231, 205, 182, 0.82), transparent 22%),
    linear-gradient(140deg, rgba(244, 237, 228, 0.92), rgba(214, 191, 163, 0.85), rgba(156, 129, 101, 0.72));
}

.editorial-break {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.editorial-break-media,
.editorial-break-overlay {
  position: absolute;
  inset: 0;
}
.editorial-break-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.2) 45%, rgba(10, 10, 10, 0.1));
}
.editorial-break-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  padding: 4rem 2rem;
}
@media (min-width: 768px) {
  .editorial-break-content {
    padding: 5rem 4rem;
  }
}
.editorial-break-content--right {
  margin-left: auto;
}
.editorial-break-content h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  font-weight: 400;
  line-height: 1.05;
}
.editorial-break-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 235, 0.78);
}
.editorial-break--forest .editorial-break-media {
  background-image:
    radial-gradient(circle at 68% 28%, rgba(255, 216, 137, 0.35), transparent 20%),
    linear-gradient(180deg, rgba(9, 26, 14, 0.08), rgba(9, 26, 14, 0.48)),
    linear-gradient(115deg, rgba(34, 49, 23, 0.96), rgba(82, 107, 53, 0.75) 35%, rgba(26, 29, 19, 0.9) 80%);
}
.editorial-break--studio .editorial-break-media {
  background-image:
    radial-gradient(circle at 72% 38%, rgba(224, 194, 145, 0.25), transparent 18%),
    linear-gradient(180deg, rgba(223, 203, 177, 0.12), transparent 50%),
    linear-gradient(120deg, rgba(43, 32, 25, 0.95), rgba(126, 96, 69, 0.72) 45%, rgba(18, 17, 16, 0.96));
}

.product-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.product-tile {
  min-width: 0;
}
.product-tile-media:any-link {
  display: block;
  aspect-ratio: 4 / 5;
  background-color: #171717;
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: transform 0.4s ease, border-color 0.25s ease;
  background-size: cover;
  background-position: center;
}
.product-tile:hover .product-tile-media {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.22);
}
.product-tile-body {
  padding-top: 0.9rem;
}
.product-tile-body h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
}
.product-tile-body h3 a:any-link {
  color: rgba(245, 240, 235, 0.88);
  text-decoration: none;
}
.product-tile-body p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: rgba(245, 240, 235, 0.58);
}
.product-tile-media--look-1 {
  background-image:
    radial-gradient(circle at 50% 38%, rgba(232, 216, 191, 0.8), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(215, 205, 187, 0.95), rgba(194, 183, 161, 0.8), rgba(241, 240, 236, 0.88));
}
.product-tile-media--look-2 {
  background-image:
    radial-gradient(circle at 45% 58%, rgba(77, 114, 173, 0.4), transparent 22%),
    linear-gradient(150deg, rgba(27, 40, 71, 0.95), rgba(95, 126, 177, 0.72), rgba(240, 240, 240, 0.9));
}
.product-tile-media--look-3 {
  background-image:
    radial-gradient(circle at 50% 56%, rgba(210, 202, 187, 0.72), transparent 22%),
    linear-gradient(145deg, rgba(236, 236, 235, 0.92), rgba(197, 190, 180, 0.84), rgba(153, 146, 137, 0.7));
}
.product-tile-media--look-4 {
  background-image:
    radial-gradient(circle at 52% 66%, rgba(74, 110, 190, 0.48), transparent 20%),
    linear-gradient(150deg, rgba(253, 253, 253, 0.96), rgba(194, 207, 234, 0.85), rgba(42, 61, 108, 0.82));
}

.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.section-pill-link:any-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  min-height: 3.2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 235, 0.55);
  color: rgba(245, 240, 235, 0.88);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.section-pill-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

/* Collection panels (home) */
.collection-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.collection-panel-bg {
  position: absolute;
  inset: 0;
}
.collection-panel.even .collection-panel-bg {
  background: linear-gradient(
    to right,
    rgba(26, 26, 26, 0.8),
    var(--background),
    var(--background)
  );
}
.collection-panel.odd .collection-panel-bg {
  background: linear-gradient(
    to left,
    rgba(26, 26, 26, 0.8),
    var(--background),
    var(--background)
  );
}
.collection-visual {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: rgba(26, 26, 26, 0.4);
}
.collection-panel.even .collection-visual {
  left: 0;
}
.collection-panel.odd .collection-visual {
  right: 0;
}
.collection-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--background),
    transparent,
    transparent
  );
}
.collection-panel.even .collection-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, var(--background));
}
.collection-panel.odd .collection-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent, var(--background));
}
.collection-big-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 20vw, 12rem);
  color: rgba(201, 169, 110, 0.03);
  user-select: none;
  pointer-events: none;
}
.collection-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
@media (min-width: 768px) {
  .collection-content {
    padding: 4rem 4rem;
  }
}
.collection-panel.even .collection-content {
  display: flex;
  justify-content: flex-end;
}
.collection-panel.odd .collection-content {
  display: flex;
  justify-content: flex-start;
}
.collection-text {
  max-width: 32rem;
}
.collection-text .tagline {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.collection-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 400;
  margin: 1rem 0;
}
.collection-text p {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
a.link-gold:any-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
a.link-gold:hover {
  color: var(--gold-light);
}
a.link-gold::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
a.link-gold:hover::after {
  width: 3rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee */
.marquee-wrap {
  padding: 4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-text {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 12vw, 8rem);
  letter-spacing: 0.1em;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.3);
  color: transparent;
  padding-right: 2rem;
}

/* Homepage — editorial index (quick access to the full site map) */
.home-maison {
  padding: 4rem 2rem;
  border-top: 1px solid var(--header-border);
}
@media (min-width: 768px) {
  .home-maison {
    padding: 5rem 4rem;
  }
}
.home-maison-inner {
  max-width: 90rem;
  margin: 0 auto;
  display: grid;
  gap: 2.75rem 2rem;
}
@media (min-width: 768px) {
  .home-maison-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.home-maison-block h3 {
  font-size: 0.625rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-weight: 500;
}
.home-maison-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-maison-block li + li {
  margin-top: 0.65rem;
}
.home-maison-block a:any-link {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
  color: rgba(245, 240, 235, 0.85);
  text-decoration: none;
  transition: color 0.25s;
}
.home-maison-block a:hover {
  color: var(--gold);
}
.home-maison-block .hint {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 0.2rem;
}

/* Collections grid */
.container {
  max-width: 80rem;
  margin: 0 auto;
}
.cards-3 {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
a.collection-card:any-link {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--charcoal);
  text-decoration: none;
  color: inherit;
  display: block;
}
.collection-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--charcoal),
    var(--surface),
    var(--background)
  );
  transition: transform 0.7s ease;
}
.collection-card:hover .collection-card-bg {
  transform: scale(1.05);
}
.collection-card-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 15rem;
  color: rgba(201, 169, 110, 0.05);
  transition: color 0.7s;
  pointer-events: none;
}
.collection-card:hover .collection-card-letter {
  color: rgba(201, 169, 110, 0.08);
}
.collection-card-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.5s;
  pointer-events: none;
}
.collection-card:hover .collection-card-border {
  border-color: rgba(201, 169, 110, 0.3);
}
.collection-card-foot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
}
.collection-card-foot .small {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.collection-card-foot h3 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  margin: 0.5rem 0;
  transition: color 0.3s;
}
.collection-card:hover .collection-card-foot h3 {
  color: var(--gold);
}
.explore-row {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.explore-row span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.collection-card:hover .explore-row span {
  color: var(--foreground);
}
.explore-row i {
  width: 1.5rem;
  height: 1px;
  background: rgba(201, 169, 110, 0.4);
  transition: width 0.3s;
}
.collection-card:hover .explore-row i {
  width: 2.5rem;
}

/* Category items grid */
a.back-link:any-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.5);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.3s;
}
a.back-link::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: rgba(245, 240, 235, 0.3);
  transition: background 0.3s;
}
a.back-link:hover {
  color: var(--gold);
}
a.back-link:hover::before {
  background: var(--gold);
}
.items-grid {
  display: grid;
  gap: 2rem 2rem;
}
@media (min-width: 640px) {
  .items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .items-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.item-card .thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--charcoal);
  margin-bottom: 1rem;
}
.item-card .thumb-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--charcoal),
    var(--surface),
    var(--background)
  );
  transition: transform 0.7s;
}
.item-card:hover .thumb-inner {
  transform: scale(1.05);
}
.item-card .num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(201, 169, 110, 0.05);
  pointer-events: none;
}
.item-card .thumb-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.5s;
}
.item-card:hover .thumb-border {
  border-color: rgba(201, 169, 110, 0.2);
}
.item-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0;
  transition: color 0.3s;
}
.item-card:hover h3 {
  color: var(--gold);
}
.item-card p {
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.5);
  margin: 0.25rem 0 0;
}
.item-card-link:any-link {
  color: inherit;
  text-decoration: none;
}
.item-card-shop {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 1rem;
}
.item-card-price {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.item-card-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.item-card-view:any-link,
.item-card-add,
.shop-add,
.product-link-alt:any-link,
.nav-bag,
.bag-close,
.bag-checkout {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}
.item-card-view:any-link,
.product-link-alt:any-link {
  color: rgba(245, 240, 235, 0.65);
}
.item-card-view:hover,
.product-link-alt:hover {
  color: var(--gold);
}
.item-card-add,
.shop-add,
.bag-checkout {
  appearance: none;
  border: 1px solid rgba(201, 169, 110, 0.45);
  background: transparent;
  color: var(--foreground);
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.item-card-add:hover,
.shop-add:hover,
.bag-checkout:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  color: var(--gold);
}

/* Shop prototype */
.nav-bag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245, 240, 235, 0.8);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-bag:hover {
  color: var(--gold);
}
.bag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  font-size: 0.625rem;
  letter-spacing: 0;
}
.shop-hero-meta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: rgba(245, 240, 235, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.shop-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.shop-card {
  border: 1px solid rgba(201, 169, 110, 0.14);
  background: rgba(17, 17, 17, 0.5);
}
.shop-card-media:any-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal), var(--surface), var(--background));
}
.shop-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.shop-card:hover .shop-card-media::after {
  border-color: rgba(201, 169, 110, 0.25);
}
.shop-card-index {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 10vw, 8rem);
  color: rgba(201, 169, 110, 0.05);
}
.shop-card-category {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.shop-card-body {
  padding: 1.25rem;
}
.shop-card-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.45);
}
.shop-card-body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}
.shop-card-body h3 a:any-link {
  color: inherit;
  text-decoration: none;
}
.shop-card-desc {
  margin: 0.75rem 0 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}
.shop-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.shop-card-price {
  color: var(--gold);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.product-detail {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .product-detail {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 4rem;
  }
}
.product-visual-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--charcoal), var(--surface), var(--background));
  border: 1px solid rgba(201, 169, 110, 0.16);
  overflow: hidden;
}
.product-visual-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 18vw, 12rem);
  color: rgba(201, 169, 110, 0.05);
}
.product-copy-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
}
.product-copy-price {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.product-copy-desc,
.product-prototype-note {
  color: var(--muted);
  line-height: 1.8;
}
.product-meta {
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
}
.product-meta div {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.14);
}
.product-meta dt {
  margin-bottom: 0.3rem;
  color: rgba(245, 240, 235, 0.45);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.product-meta dd {
  margin: 0;
  color: rgba(245, 240, 235, 0.8);
}
.product-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}
.shop-add--large {
  padding: 0.9rem 1.6rem;
}
.bag-drawer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 120;
}
.bag-drawer.is-open {
  pointer-events: auto;
}
.bag-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
}
.bag-drawer.is-open .bag-backdrop {
  opacity: 1;
}
.bag-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(30rem, 100%);
  height: 100%;
  background: rgba(10, 10, 10, 0.98);
  border-left: 1px solid rgba(201, 169, 110, 0.18);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.bag-drawer.is-open .bag-panel {
  transform: translateX(0);
}
.bag-head,
.bag-foot {
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.14);
}
.bag-foot {
  border-bottom: none;
  border-top: 1px solid rgba(201, 169, 110, 0.14);
  margin-top: auto;
}
.bag-kicker {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.bag-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
}
.bag-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.bag-close {
  border: none;
  background: none;
  color: rgba(245, 240, 235, 0.6);
  cursor: pointer;
  padding: 0.25rem 0;
}
.bag-close:hover {
  color: var(--gold);
}
.bag-items {
  padding: 1rem 1.25rem;
  overflow: auto;
}
.bag-empty {
  padding: 2rem 0;
}
.bag-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}
.bag-item-thumb:any-link {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal), var(--surface), var(--background));
  color: rgba(201, 169, 110, 0.12);
  font-family: var(--font-serif);
  font-size: 2rem;
  text-decoration: none;
}
.bag-item-category {
  margin: 0 0 0.25rem;
  color: rgba(245, 240, 235, 0.45);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.bag-item h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.bag-item h3 a:any-link {
  color: inherit;
  text-decoration: none;
}
.bag-item-price {
  margin: 0.4rem 0 0.8rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bag-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.bag-item-actions label {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.45);
}
.bag-item-actions input {
  width: 3.4rem;
  margin-left: 0.5rem;
  background: transparent;
  border: 1px solid rgba(245, 240, 235, 0.18);
  color: var(--foreground);
  padding: 0.4rem 0.5rem;
}
.bag-item-actions button {
  border: none;
  background: none;
  color: rgba(245, 240, 235, 0.55);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.625rem;
}
.bag-item-actions button:hover {
  color: var(--gold);
}
.bag-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: rgba(245, 240, 235, 0.68);
}
.bag-subtotal strong {
  color: var(--foreground);
  font-weight: 500;
}
.bag-note {
  margin: 0 0 1rem;
  color: rgba(245, 240, 235, 0.45);
  line-height: 1.6;
  font-size: 0.8125rem;
}
.bag-checkout {
  width: 100%;
}
body.bag-open {
  overflow: hidden;
}

/* Checkout & payment result */
.checkout-lede {
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 3rem;
  font-size: 0.9375rem;
}
.checkout-empty {
  padding: 3rem 0;
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
}
.checkout-empty p {
  color: var(--muted);
  margin: 0 0 1.5rem;
  line-height: 1.7;
}
.checkout-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 960px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 4rem;
  }
}
.checkout-main-col {
  min-width: 0;
}
.checkout-progress {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .checkout-progress {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
  }
}
.checkout-progress li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
  transition: color 0.25s, opacity 0.25s;
}
.checkout-progress li.is-current {
  color: var(--foreground);
}
.checkout-progress li.is-done {
  opacity: 0.55;
}
.checkout-progress-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.35);
  font-size: 0.625rem;
  letter-spacing: 0;
}
.checkout-progress li.is-current .checkout-progress-num {
  border-color: var(--gold);
  color: var(--gold);
}
.checkout-step-intro {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
}
.checkout-required-note {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  margin: 0 0 1.5rem;
}
.checkout-field {
  display: block;
}
.checkout-field-label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.55);
  margin-bottom: 0.35rem;
}
.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted);
  cursor: pointer;
}
.checkout-checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
}
.checkout-field-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 560px) {
  .checkout-field-row {
    grid-template-columns: 1fr 1fr;
  }
}
.checkout-actions {
  margin-top: 2rem;
}
.checkout-actions--row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.checkout-actions--split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.checkout-actions--stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
}
.checkout-footnote {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--muted2);
}
.checkout-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
  color: var(--muted2);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.checkout-divider::before,
.checkout-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 169, 110, 0.18);
}
.checkout-alt-label {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.btn-checkout-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  border: none;
  background: var(--foreground);
  color: var(--background);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.25s, transform 0.2s;
}
.btn-checkout-primary:hover {
  opacity: 0.9;
}
.btn-checkout-primary--wide {
  width: 100%;
  max-width: none;
}
.btn-checkout-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 235, 0.35);
  background: transparent;
  color: rgba(245, 240, 235, 0.75);
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: not-allowed;
  opacity: 0.65;
}
.btn-checkout-ghost {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.25s;
}
.btn-checkout-ghost:hover {
  color: var(--gold);
}
/* Placeholders: Stripe Payment Request (Apple Pay) + Payment Element / Checkout */
.checkout-wallet-row {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.btn-apple-pay {
  width: 100%;
  padding: 0.65rem 1.25rem;
  min-height: 2.75rem;
  border-radius: 6px;
  border: none;
  background: #000;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.55;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.btn-apple-pay-label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.checkout-pay-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0 1.5rem;
  color: var(--muted2);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.checkout-pay-divider::before,
.checkout-pay-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 169, 110, 0.18);
}
.checkout-pay-divider span {
  white-space: nowrap;
}
.btn-stripe {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: none;
  background: #635bff;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: not-allowed;
  opacity: 0.55;
}
.checkout-text-btn {
  background: none;
  border: none;
  padding: 0.5rem 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
  transition: color 0.25s;
}
.checkout-text-btn:hover {
  color: var(--gold);
}
.checkout-continue-link:any-link {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  transition: color 0.25s;
}
.checkout-continue-link:hover {
  color: var(--gold);
}

.checkout-sidebar {
  border: 1px solid rgba(201, 169, 110, 0.2);
  background: rgba(17, 17, 17, 0.65);
  padding: 1.5rem 1.35rem;
}
.checkout-sidebar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.14);
}
.checkout-sidebar-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
}
.checkout-sidebar-modify:any-link {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.checkout-sidebar-modify:hover {
  color: var(--gold);
}
.checkout-line-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}
.checkout-line-item:first-of-type {
  padding-top: 0;
}
.checkout-line-thumb:any-link {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal), var(--surface), var(--background));
  color: rgba(201, 169, 110, 0.12);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  text-decoration: none;
}
.checkout-line-name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1rem;
}
.checkout-line-name a:any-link {
  color: inherit;
  text-decoration: none;
}
.checkout-line-name a:hover {
  color: var(--gold);
}
.checkout-line-meta {
  margin: 0.25rem 0 0;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
}
.checkout-line-price {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.checkout-totals {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 169, 110, 0.14);
}
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(245, 240, 235, 0.72);
  margin-bottom: 0.5rem;
}
.checkout-total-row--tax {
  margin-bottom: 0.25rem;
}
.checkout-tax-note {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--muted2);
}
.checkout-total-row--grand {
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(201, 169, 110, 0.14);
  font-size: 0.9375rem;
  color: var(--foreground);
}
.checkout-total-row--grand strong {
  font-weight: 500;
  font-size: 1.05rem;
}
.checkout-trust {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}
.checkout-trust li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}
.checkout-trust li:last-child {
  border-bottom: none;
}
.checkout-trust-title {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.checkout-trust-desc {
  font-size: 0.75rem;
  color: var(--muted2);
  line-height: 1.5;
}

.checkout-result {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0 3rem;
}
.checkout-result-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-family: var(--font-sans);
  font-weight: 300;
}
.checkout-result-icon--success {
  border: 1px solid rgba(201, 169, 110, 0.45);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}
.checkout-result-icon--failure {
  border: 1px solid rgba(245, 240, 235, 0.25);
  color: rgba(245, 240, 235, 0.85);
  background: rgba(245, 240, 235, 0.06);
}
.checkout-result-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 1rem;
}
.checkout-result-lede,
.checkout-result-hint {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.9375rem;
  margin: 0 0 1rem;
}
.checkout-result-hint {
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.checkout-result-id {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 2rem;
}
.checkout-result-id strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--foreground);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.checkout-result-summary {
  text-align: left;
  border: 1px solid rgba(201, 169, 110, 0.18);
  background: rgba(17, 17, 17, 0.5);
  padding: 1.5rem 1.35rem;
  margin-bottom: 2rem;
}
.checkout-result-summary-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 1rem;
}
.checkout-result-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checkout-result-lines li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.85);
}
.checkout-result-lines li:last-child {
  border-bottom: none;
}
.checkout-result-line-price {
  color: var(--gold);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.checkout-result-totals {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 169, 110, 0.14);
}
.checkout-result-totals .checkout-total-row {
  margin-bottom: 0.45rem;
}
.checkout-result-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* About */
.about-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.3), var(--background));
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}
.story-block {
  display: grid;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}
@media (min-width: 768px) {
  .story-block {
    grid-template-columns: 1fr 1fr;
  }
  .story-block.reverse .story-visual {
    order: -1;
  }
}
.story-visual {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.5);
}
.story-visual-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--charcoal),
    var(--surface),
    var(--background)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-visual-letter {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 20vw, 12rem);
  color: rgba(201, 169, 110, 0.04);
}
.story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 1rem 0 1.5rem;
}
.story-text p {
  color: var(--muted);
  line-height: 1.7;
}
.values-head {
  text-align: center;
  margin-bottom: 4rem;
}
.values-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.value-cell {
  text-align: center;
}
.value-cell::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.value-cell h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.value-cell p {
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.5);
  line-height: 1.6;
}

/* Archives */
.archive-block {
  position: relative;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .archive-block {
    height: 100vh;
  }
}
.archive-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--charcoal),
    var(--surface),
    var(--background)
  );
}
.archive-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(8rem, 25vw, 20rem);
  color: rgba(201, 169, 110, 0.03);
  pointer-events: none;
}
.archive-caption {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .archive-caption {
    left: 4rem;
  }
}
.archive-caption h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  margin: 0.5rem 0 0;
}
.archive-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.6), transparent);
  pointer-events: none;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}
.contact-info h3 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted2);
  margin: 0 0 0.5rem;
}
.contact-info p,
.contact-info a:any-link {
  color: rgba(245, 240, 235, 0.7);
  line-height: 1.7;
  text-decoration: none;
}
.contact-info a:hover {
  color: var(--gold);
}
.contact-lede {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 28rem;
}
.contact-lede a:any-link {
  color: rgba(245, 240, 235, 0.78);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.25s;
}
.contact-lede a:hover {
  color: var(--gold);
}
.contact-info-block {
  margin-bottom: 2rem;
}
.contact-info-block[id] {
  scroll-margin-top: 7rem;
}
.social-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.social-row a:any-link {
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.5);
}
.social-row a:hover {
  color: var(--gold);
}

/* Locations */
.locations-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.locations-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.45), var(--background));
}
.locations-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 32rem;
}
.locations-lede {
  margin: 1.25rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.locations-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
  }
}
.location-card {
  border: 1px solid var(--header-border);
  padding: 2rem 2rem 2.25rem;
  background: rgba(17, 17, 17, 0.55);
  transition: border-color 0.35s;
}
.location-card:hover {
  border-color: rgba(201, 169, 110, 0.28);
}
.location-card-region {
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.location-card h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 1rem;
}
.location-card address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.875rem;
  margin: 0 0 1.25rem;
}
.location-hours {
  font-size: 0.8125rem;
  color: rgba(245, 240, 235, 0.45);
  line-height: 1.65;
  margin: 0 0 1rem;
}
.location-card-note {
  font-size: 0.8125rem;
  color: rgba(245, 240, 235, 0.5);
  margin: 0;
}
.location-card-note a:any-link {
  color: rgba(245, 240, 235, 0.65);
  transition: color 0.25s;
}
.location-card-note a:hover {
  color: var(--gold);
}

.shop-placeholder {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}
.shop-placeholder-note {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 2rem;
}
.shop-placeholder-note a:any-link {
  color: rgba(245, 240, 235, 0.78);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.25s;
}
.shop-placeholder-note a:hover {
  color: var(--gold);
}

.client-services-cta {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--header-border);
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.client-services-cta p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}
.client-services-cta p:last-child {
  margin-bottom: 0;
}
.client-services-cta strong {
  font-weight: 500;
  color: rgba(245, 240, 235, 0.88);
}
.client-services-cta a:any-link {
  color: rgba(245, 240, 235, 0.75);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.25s;
}
.client-services-cta a:hover {
  color: var(--gold);
}
.value-cell a:any-link {
  color: rgba(245, 240, 235, 0.65);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.25s;
}
.value-cell a:hover {
  color: var(--gold);
}

.form-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 240, 235, 0.2);
  padding: 1rem 0;
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.3s;
}
.form-field::placeholder {
  color: rgba(245, 240, 235, 0.3);
}
.form-field:focus {
  border-bottom-color: var(--gold);
}
textarea.form-field {
  resize: none;
  min-height: 8rem;
}
.form-stack > * + * {
  margin-top: 2rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  transition: color 0.3s;
  margin-top: 0.5rem;
}
.btn-submit::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.btn-submit:hover {
  color: var(--gold-light);
}
.btn-submit:hover::after {
  width: 3rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(201, 169, 110, 0.22);
  padding: 3.5rem 2rem 2.5rem;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 4.5rem 4rem 2.5rem;
  }
}
.footer-grid {
  max-width: 90rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 3rem 2rem;
  }
}
.footer-brand-col a.logo:any-link {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 22rem;
}
.footer-col h4 {
  font-size: 0.625rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.35rem;
  font-weight: 500;
  font-family: var(--font-sans);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col a:any-link {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 235, 0.65);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-legal {
  max-width: 90rem;
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-legal p {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: rgba(245, 240, 235, 0.35);
  margin: 0;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-legal-links {
    justify-content: flex-end;
  }
}
.footer-legal-links a:any-link {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.4);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-legal-links a:hover {
  color: var(--gold);
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 4rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-form-col {
    padding-top: 6rem;
  }
}
