:root {
  --bg: #faf7f1;
  --bg-soft: #f3ede4;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #1e2733;
  --text-soft: #6a655d;
  --line: rgba(30, 39, 51, 0.12);
  --line-strong: rgba(30, 39, 51, 0.22);
  --night: #101a2b;
  --gold: #b99a66;
  --gold-soft: #e7d8bb;
  --taupe: #4c3729;
  --shadow: 0 24px 60px rgba(16, 26, 43, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 40px));
  --transition: 260ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(185, 154, 102, 0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(76, 55, 41, 0.05), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
  line-height: 1.65;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
input,
select,
textarea,
a {
  transition:
    color var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    transform var(--transition),
    opacity var(--transition),
    box-shadow var(--transition);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  clip: auto;
  background: var(--night);
  color: #fff;
  border-radius: 999px;
  z-index: 2000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  padding: 18px 0;
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    padding var(--transition),
    backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 12px 32px rgba(14, 26, 43, 0.08);
  backdrop-filter: blur(16px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-wordmark {
  width: 248px;
  max-width: min(46vw, 248px);
  height: auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy small {
  display: block;
  color: var(--text-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.64rem;
}

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

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 251, 245, 0.76);
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: grid;
  align-items: center;
}

.hero-category {
  min-height: 60vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  filter: saturate(0.92) contrast(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 140px 0 110px;
  max-width: 720px;
}

.hero h1,
.hero h2,
.section h2,
.section h3,
.product-summary h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.9rem);
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero .eyebrow {
  color: var(--gold-soft);
}

.hero-actions,
.product-actions,
.cta-shell,
.club-banner,
.listing-meta,
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #ccb07c 0%, #b38f59 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(179, 143, 89, 0.28);
}

.btn-outline {
  border-color: rgba(200, 169, 107, 0.55);
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.2);
}

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
}

.section {
  padding: 100px 0;
}

.section-compact {
  padding: 34px 0 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18));
}

.section-heading {
  margin-bottom: 34px;
  max-width: 720px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.split-stats,
.contact-grid,
.storytelling-grid,
.product-layout {
  display: grid;
  gap: 28px;
}

.split-stats {
  grid-template-columns: 1.2fr 1fr;
}

.stats-grid,
.benefits-grid,
.philosophy-grid,
.timeline,
.footer-grid,
.collections-grid,
.products-grid {
  display: grid;
  gap: 24px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid article,
.benefit-card,
.philosophy-grid article,
.timeline article,
.contact-card,
.finder-panel,
.product-card,
.collection-card,
.prose,
.club-banner {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.stats-grid article,
.benefit-card,
.philosophy-grid article,
.timeline article,
.contact-card,
.finder-panel,
.prose,
.club-banner {
  padding: 28px;
}

.stats-grid strong,
.contact-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}

.collections-grid,
.products-grid,
.benefits-grid,
.philosophy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-card,
.product-card {
  overflow: hidden;
}

.collection-card:hover,
.product-card:hover,
.masonry-item:hover {
  transform: translateY(-6px);
}

.collection-card img,
.product-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.collection-copy,
.product-content {
  padding: 24px;
}

.collection-copy h3,
.product-content h3,
.benefit-card h2,
.story-copy h2,
.timeline h3,
.contact-card h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.finder-panel {
  position: relative;
}

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

.finder-grid label,
.contact-form label {
  display: grid;
  gap: 8px;
}

.finder-grid span,
.contact-form span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

textarea {
  min-height: 150px;
  padding: 16px;
  resize: vertical;
}

.listing-toolbar {
  position: relative;
}

.listing-meta {
  justify-content: space-between;
  margin-top: 18px;
  margin-bottom: 12px;
}

.search-live-results {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  width: min(440px, 100%);
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(14, 26, 43, 0.14);
  z-index: 25;
}

.search-live-results.is-visible {
  display: grid;
}

.search-result-item,
.search-result-empty {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
}

.search-result-item:hover,
.search-result-item:focus-visible {
  background: var(--bg-soft);
}

.search-result-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.search-result-item strong {
  display: block;
  margin-bottom: 4px;
}

.search-result-item small,
.search-result-empty,
.product-code,
.product-topline p,
.listing-meta p,
.footer-links a,
.contact-list span,
.contact-list a,
.newsletter-feedback {
  color: var(--text-soft);
}

.product-card {
  position: relative;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
}

.product-image-wrap img,
.masonry-item img,
.story-image img,
.gallery-thumb img,
.product-gallery-main img {
  transition:
    transform 420ms ease,
    filter var(--transition);
}

.product-card:hover .product-image-wrap img,
.masonry-item:hover img,
.story-image:hover img,
.gallery-thumb:hover img,
.product-gallery-main:hover img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 26, 43, 0.9);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-topline,
.product-meta,
.detail-specs,
.contact-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product-content h3 {
  margin-top: 0;
}

.product-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.product-meta li,
.detail-specs li,
.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.product-actions {
  flex-wrap: wrap;
  margin-top: 22px;
}

.empty-state {
  padding: 28px;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--text-soft);
}

.masonry-grid {
  columns: 4 260px;
  column-gap: 24px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.masonry-item img {
  width: 100%;
}

.masonry-item figcaption {
  padding: 18px 20px 20px;
  color: var(--text-soft);
}

.philosophy-band {
  background: linear-gradient(135deg, rgba(14, 26, 43, 0.98), rgba(14, 26, 43, 0.88));
  color: #fff;
}

.philosophy-shell,
.cta-shell,
.club-banner {
  display: flex;
  justify-content: space-between;
}

.cta-banner {
  padding-top: 0;
}

.cta-shell {
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(244, 236, 223, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
}

.product-layout {
  grid-template-columns: 1.04fr 0.96fr;
  align-items: start;
}

.product-gallery,
.product-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.product-gallery {
  padding: 24px;
}

.product-gallery-main {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  cursor: zoom-in;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.gallery-thumb {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200, 169, 107, 0.22);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-summary {
  padding: 34px;
}

.product-summary h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 14px;
}

.product-price {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--text);
}

.detail-specs {
  margin-top: 24px;
}

.detail-specs strong {
  color: var(--text);
}

.storytelling-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(200, 169, 107, 0.16);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.philosophy-grid article {
  min-height: 220px;
}

.benefit-card h2,
.philosophy-grid h3,
.timeline h3,
.prose h2 {
  margin-top: 0;
}

.contact-grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.contact-form,
.inline-form {
  display: grid;
  gap: 16px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.map-shell {
  overflow: hidden;
  border-radius: 20px;
  min-height: 360px;
}

.map-shell iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.inline-form {
  grid-template-columns: 1.4fr 1fr auto;
}

.site-footer {
  padding: 80px 0 36px;
  background: var(--night);
  color: rgba(255, 255, 255, 0.9);
}

.brand-footer {
  align-items: flex-start;
}

.brand-footer .brand-wordmark {
  background: #f6f0e5;
  border-radius: 18px;
  padding: 10px 14px;
  width: 260px;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 1fr 0.9fr;
}

.brand-footer small,
.site-footer p,
.footer-links a,
.footer-bottom,
.newsletter-feedback {
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-grid h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #fff;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  min-width: 0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.footer-bottom {
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 16, 28, 0.88);
  opacity: 0;
  pointer-events: none;
  z-index: 2200;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(960px, calc(100vw - 40px));
  max-height: calc(100vh - 60px);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
}

.noscript {
  padding: 12px 16px;
  text-align: center;
  background: #fceccf;
  color: #6a4c12;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* PDF-first overrides */
body {
  background: radial-gradient(circle at top, rgba(38, 38, 38, 0.85), #0d0d0d 60%);
  color: #f6f2ea;
}

.site-header {
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.header-shell {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  min-width: 0;
}

.brand-wordmark {
  width: 230px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
  background: #f4eee2;
  border-radius: 16px;
  padding: 8px 12px;
}

.brand-copy {
  color: rgba(246, 242, 234, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-nav a {
  color: rgba(246, 242, 234, 0.72);
  padding: 10px 12px;
  border-radius: 999px;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #f6f2ea;
}

.page-shell {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 42px;
}

body[data-page="online"] {
  background: #dec8a4;
}

body[data-page="online"] .page-shell {
  width: 100%;
  margin: 0;
  padding: 0;
}

.page-intro {
  margin-bottom: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.page-kicker {
  margin: 0 0 10px;
  color: #d1b17a;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.page-intro h1 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.page-intro p {
  margin: 0;
  max-width: 920px;
  color: rgba(246, 242, 234, 0.72);
  font-size: 1.02rem;
}

.page-actions {
  margin-top: 18px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f3ede2;
  color: #181818;
  font-weight: 600;
}

.surprise-box {
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  background: #dec8a4;
  overflow: hidden;
}

.surprise-box__stage {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0;
}

.surprise-box__media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

.surprise-box__video-shell {
  width: 100%;
  border-radius: 0;
  padding: 0;
  background: #dec8a4;
  border: 0;
  box-shadow: none;
}

.surprise-box__video {
  display: block;
  width: 100%;
  height: 100vh;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  background: #dec8a4;
}

.online-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.88fr);
  gap: 32px;
  align-items: stretch;
}

.online-editorial__copy,
.online-editorial__visual {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.online-editorial__copy {
  padding: clamp(30px, 4.2vw, 56px);
  background:
    radial-gradient(circle at top left, rgba(219, 190, 138, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(17, 24, 38, 0.98), rgba(7, 10, 18, 0.98));
}

.online-editorial__eyebrow {
  margin: 0 0 16px;
  color: rgba(232, 218, 193, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.74rem;
}

.online-editorial__copy h1 {
  margin: 0 0 16px;
  max-width: 8ch;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #f7f1e6;
}

.online-editorial__lead {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  color: rgba(247, 241, 230, 0.86);
}

.online-editorial__text {
  margin: 18px 0 0;
  max-width: 660px;
  color: rgba(247, 241, 230, 0.66);
  line-height: 1.85;
}

.online-editorial__signature {
  display: inline-grid;
  gap: 6px;
  margin-top: 24px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(233, 217, 190, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.online-editorial__signature span {
  color: rgba(233, 217, 190, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
}

.online-editorial__signature a {
  color: #f7f1e6;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.online-editorial__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.online-editorial__primary {
  background: linear-gradient(135deg, #f5eddc, #d9c29a);
}

.online-editorial__secondary {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(233, 217, 190, 0.3);
  color: rgba(247, 241, 230, 0.9);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.online-editorial__secondary:hover,
.online-editorial__secondary:focus-visible {
  color: #ffffff;
  border-color: rgba(233, 217, 190, 0.44);
}

.online-editorial__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.online-editorial__highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(233, 217, 190, 0.14);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(247, 241, 230, 0.74);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.online-editorial__notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.online-editorial__note {
  min-height: 100%;
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.online-editorial__note span {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(217, 194, 154, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
}

.online-editorial__note h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: #f7f1e6;
}

.online-editorial__note p,
.online-editorial__note a {
  margin: 0;
  color: rgba(247, 241, 230, 0.72);
  line-height: 1.75;
}

.online-editorial__visual {
  position: relative;
  display: block;
  padding: clamp(18px, 2vw, 24px);
  background:
    radial-gradient(circle at 70% 12%, rgba(219, 190, 138, 0.26), transparent 26%),
    linear-gradient(180deg, rgba(12, 17, 29, 0.98), rgba(7, 10, 18, 0.98));
  overflow: hidden;
}

.online-editorial__visual:hover .online-editorial__frame,
.online-editorial__visual:focus-visible .online-editorial__frame {
  transform: translateY(-4px);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.5);
}

.online-editorial__visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(233, 217, 190, 0.14);
  pointer-events: none;
}

.online-editorial__visual-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(233, 217, 190, 0.16);
  color: rgba(247, 241, 230, 0.82);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.online-editorial__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.online-editorial__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.online-editorial__visual-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: #f7f1e6;
}

.online-editorial__visual-caption span {
  color: rgba(233, 217, 190, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
}

.online-editorial__visual-caption strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 500;
}

.online-editorial__visual-caption small {
  color: rgba(247, 241, 230, 0.68);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.poster-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.poster-index a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(246, 242, 234, 0.72);
}

.poster-index a:hover,
.poster-index a:focus-visible {
  color: #f6f2ea;
  border-color: rgba(209, 177, 122, 0.45);
}

.poster-stack {
  display: grid;
  gap: 28px;
}

.poster-section {
  scroll-margin-top: 92px;
}

.poster-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.poster-frame img {
  width: 100%;
  height: auto;
}

.store-info-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(205, 178, 129, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(18, 29, 47, 0.98), rgba(10, 16, 28, 0.98));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.store-info-card__header {
  max-width: 780px;
  margin-bottom: 26px;
}

.store-info-card__kicker {
  margin: 0 0 10px;
  color: rgba(232, 218, 193, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.76rem;
}

.store-info-card__header h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #f6f2ea;
}

.store-info-card__header p {
  margin: 0;
  max-width: 640px;
  color: rgba(246, 242, 234, 0.82);
  line-height: 1.75;
}

.store-info-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.store-info-card__item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.store-info-card__item h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  color: #f6f2ea;
}

.store-info-card__item p,
.store-info-card__item a,
.store-info-card__header a {
  margin: 0;
  color: rgba(246, 242, 234, 0.84);
  line-height: 1.7;
}

.floating-brand {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 60;
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.floating-brand-stack {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 60;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.floating-brand-stack .floating-brand {
  position: static;
  top: auto;
  left: auto;
}

.floating-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 240, 214, 0.82);
}

.floating-brand-tagline {
  display: inline-block;
  padding: 0 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1;
  color: #7b5c37;
  text-transform: lowercase;
  white-space: nowrap;
}

.editorial-footer {
  margin-top: 28px;
  background: #433f3d;
  color: rgba(244, 236, 225, 0.9);
}

.editorial-footer__grid {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 44px 14px 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  grid-template-areas:
    "intro collection"
    "info boutique";
  column-gap: 122px;
  row-gap: 54px;
}

.editorial-footer__lead,
.editorial-footer__column p,
.editorial-footer__column a {
  margin: 0;
  color: rgba(244, 236, 225, 0.74);
  font-size: 0.86rem;
  line-height: 1.7;
}

.editorial-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
}

.editorial-footer__social a,
.editorial-footer__column a {
  color: rgba(244, 236, 225, 0.84);
}

.editorial-footer__social a {
  text-transform: uppercase;
  letter-spacing: 0.21em;
  font-size: 0.68rem;
}

.editorial-footer__column {
  display: grid;
  align-content: start;
  gap: 7px;
}

.editorial-footer__column h2 {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(232, 218, 193, 0.58);
}

.editorial-footer__intro {
  grid-area: intro;
  max-width: 430px;
  padding-top: 2px;
}

.editorial-footer__block--collection {
  grid-area: collection;
  max-width: 255px;
  justify-self: start;
}

.editorial-footer__block--info {
  grid-area: info;
  max-width: 255px;
  align-self: start;
  padding-top: 4px;
}

.editorial-footer__block--boutique {
  grid-area: boutique;
  max-width: 280px;
  justify-self: start;
  align-self: start;
  padding-top: 4px;
}

.editorial-footer a:hover,
.editorial-footer a:focus-visible {
  color: #ffffff;
}

.fallback-panel {
  padding: 40px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.fallback-panel h1 {
  margin-top: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-listing,
.terms-listing {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-listing p,
.terms-listing p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-listing a,
.terms-listing a {
  color: #f6f2ea;
}

.site-footer {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 42px;
  color: rgba(246, 242, 234, 0.72);
  text-align: center;
  font-size: 0.95rem;
  background: transparent;
}
