@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap");

:root {
  --background: #f7f4ef;
  --foreground: #2a2a2a;
  --muted: #6b6560;
  --border: #e0d9d0;
  --accent: #b8956b;
  --accent-hover: #a6835a;
  --surface: #ffffff;
  --surface-warm: #f0ebe3;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

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

html {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  overflow-x: clip;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  z-index: 100;
}

body.is-loading .site-shell {
  visibility: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
}

a {
  color: inherit;
}

::selection {
  background: var(--accent);
  color: white;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
}

.page-loader[hidden] {
  display: none;
}

.page-loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-loader__spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.page-loader__text {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Layout */
.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  margin: 0 auto;
  max-width: 80rem;
  padding: 0 1.25rem;
}

@media (min-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 4rem 0;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

/* Announcement bar */
.announcement-bar {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  contain: inline-size;
  background: var(--foreground);
  color: white;
}

.announcement-bar__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.5rem;
  padding: 0.625rem 0;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.announcement-bar__item {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .announcement-bar__track {
    gap: 2rem;
    animation-duration: 30s;
  }

  .announcement-bar__item {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
  }
}

.announcement-bar__sep {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-bar {
    text-align: center;
  }

  .announcement-bar__track {
    width: auto;
    justify-content: center;
    animation: none;
    padding: 0.625rem 1.5rem;
  }

  .announcement-bar__item:not(:first-child),
  .announcement-bar__sep {
    display: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(4px);
}

.site-header__inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-logo {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.15s;
}

.site-logo:hover {
  color: var(--accent);
}

@media (min-width: 640px) {
  .site-logo { font-size: 1.25rem; }
}

@media (min-width: 768px) {
  .site-logo { font-size: 1.5rem; }
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-nav { display: flex; }
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.15s;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent);
}

/* Mobile nav */
.mobile-nav {
  display: block;
}

@media (min-width: 768px) {
  .mobile-nav { display: none; }
}

.mobile-nav__toggle {
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#mobile-nav-drawer {
  position: relative;
  z-index: 80;
}

.mobile-nav__overlay {
  position: fixed;
  inset: 4rem 0 0 0;
  z-index: 80;
  border: none;
  margin: 0;
  padding: 0;
  background: rgba(42, 42, 42, 0.35);
  cursor: pointer;
}

.mobile-nav__panel {
  position: fixed;
  top: 4rem;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--background);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem 2rem;
}

@media (min-width: 480px) {
  .mobile-nav__links {
    padding: 2rem 1.5rem;
  }
}

.mobile-nav__links a {
  min-height: 3.5rem;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.15s;
}

.mobile-nav__links a:hover {
  color: var(--accent);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-warm);
  overflow: hidden;
}

.site-footer .container {
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.25rem, env(safe-area-inset-right));
}

.site-footer__inner {
  padding-block: 2.5rem;
  padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
}

@media (min-width: 768px) {
  .site-footer__inner {
    padding-block: 4rem;
    padding-bottom: calc(4rem + env(safe-area-inset-bottom));
  }
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.site-footer__col {
  min-width: 0;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.site-footer__col:first-child {
  padding-top: 0;
}

.site-footer__col:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
  }

  .site-footer__col {
    padding-block: 0;
    border-bottom: none;
  }

  .site-footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }

  .site-footer__col--brand {
    grid-column: auto;
  }
}

.site-footer__brand {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
}

@media (min-width: 640px) {
  .site-footer__brand {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 1024px) {
  .site-footer__brand {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}

.site-footer__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer__text {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

address.site-footer__text {
  font-style: normal;
}

.site-footer__links {
  margin: 1rem 0 0;
  list-style: none;
  padding: 0;
}

.site-footer__links li {
  margin-top: 0.625rem;
}

.site-footer__links li:first-child {
  margin-top: 0;
}

.site-footer__links a {
  display: inline-block;
  max-width: 100%;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__nav {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .site-footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
  }
}

.site-footer__nav a {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__nav a:hover {
  color: var(--accent);
}

.site-footer__copy {
  margin: 2rem 0 0;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--muted);
  overflow-wrap: anywhere;
}

@media (min-width: 480px) {
  .site-footer__copy {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .site-footer__copy {
    margin-top: 3rem;
    padding-top: 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6875rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

@media (min-width: 480px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn--outline {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.btn--outline:hover {
  border-color: var(--foreground);
  background: var(--surface-warm);
}

.btn--block {
  width: 100%;
}

@media (min-width: 640px) {
  .btn--block-sm-auto {
    width: auto;
  }
}

/* Section heading */
.section-heading {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading h2 {
  font-size: 1.375rem;
  letter-spacing: -0.02em;
}

@media (min-width: 480px) {
  .section-heading h2 { font-size: 1.5rem; }
}

@media (min-width: 640px) {
  .section-heading h2 { font-size: 1.875rem; }
}

@media (min-width: 768px) {
  .section-heading h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-heading h2 { font-size: 3rem; }
}

.section-heading p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.section-heading__rule {
  margin: 1.5rem auto 0;
  height: 1px;
  width: 4rem;
  background: var(--accent);
}

.section-heading--left .section-heading__rule {
  margin-left: 0;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero--cinema {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(26rem, 72vh, 42rem);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 100%;
  overflow: hidden;
}

.hero__strip img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 42, 42, 0.55) 0%,
    rgba(42, 42, 42, 0.45) 45%,
    rgba(42, 42, 42, 0.6) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  padding: 2.5rem 0;
  text-align: center;
}

@media (min-width: 640px) {
  .hero__content {
    padding: 4rem 0;
  }
}

@media (min-width: 768px) {
  .hero__content {
    padding: 5rem 0;
  }
}

.hero--cinema .hero__eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 480px) {
  .hero--cinema .hero__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
  }
}

@media (min-width: 640px) {
  .hero--cinema .hero__eyebrow {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
  }
}

.hero--cinema h1 {
  margin: 0.875rem 0 0;
  font-size: 2rem;
  line-height: 1.1;
  color: white;
}

@media (min-width: 480px) {
  .hero--cinema h1 { font-size: 2.375rem; }
}

@media (min-width: 640px) {
  .hero--cinema h1 { font-size: 3rem; }
}

@media (min-width: 768px) {
  .hero--cinema h1 { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
  .hero--cinema h1 { font-size: 4rem; }
}

.hero--cinema .hero__lead {
  margin: 1.25rem auto 0;
  max-width: 30rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 640px) {
  .hero--cinema .hero__lead {
    font-size: 1.0625rem;
  }
}

.hero--cinema .hero__cta {
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .hero--cinema .hero__cta {
    margin-top: 2.25rem;
  }
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .hero__trust {
    gap: 0.625rem;
    margin-top: 2rem;
  }
}

.hero--cinema .hero__trust li {
  padding: 0.3125rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
}

@media (min-width: 480px) {
  .hero--cinema .hero__trust li {
    padding: 0.375rem 0.875rem;
    font-size: 0.6875rem;
  }
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem 0.625rem;
}

@media (min-width: 480px) {
  .product-grid {
    gap: 1rem 0.75rem;
  }
}

@media (min-width: 640px) {
  .product-grid {
    gap: 1.125rem 0.875rem;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 1rem;
  }
}

@media (min-width: 1024px) {
  .product-grid--shop {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .product-grid--shop {
    grid-template-columns: repeat(5, 1fr);
  }
}

.product-grid--featured {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.875rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.product-grid--featured::-webkit-scrollbar {
  display: none;
}

.product-grid--featured .product-card {
  flex: 0 0 calc(50% - 0.4375rem);
  scroll-snap-align: start;
  min-width: 0;
}

@media (min-width: 640px) {
  .product-grid--featured .product-card {
    flex-basis: calc(33.333% - 0.583rem);
  }
}

@media (min-width: 1024px) {
  .product-grid--featured {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }

  .product-grid--featured .product-card {
    flex: none;
  }
}

/* Product card */
.product-card {
  display: block;
  text-decoration: none;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-warm);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.125rem 0.375rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  backdrop-filter: blur(4px);
}

.product-card__meta {
  margin-top: 0.5rem;
}

.product-card__brand {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.product-card__name {
  margin: 0.125rem 0 0;
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  line-height: 1.3;
  transition: color 0.15s;
}

@media (min-width: 480px) {
  .product-card__name {
    font-size: 0.875rem;
  }
}

.product-card:hover .product-card__name {
  color: var(--accent);
}

.product-card__price {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .filter-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }
}

.filter-bar__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  border: none;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.filter-btn--inactive {
  background: var(--surface-warm);
  color: var(--muted);
}

.filter-btn--inactive:hover {
  color: var(--foreground);
}

.filter-btn--active {
  background: var(--foreground);
  color: var(--background);
}

.filter-bar__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .filter-bar__brand {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
}

.filter-bar__brand label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.filter-bar__select {
  min-height: 2.75rem;
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  outline: none;
}

.filter-bar__select:focus {
  border-color: var(--accent);
}

@media (min-width: 640px) {
  .filter-bar__select { width: auto; }
}

.section--product {
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .section--product {
    padding-top: 2.5rem;
  }
}

/* Product detail */
.product-detail {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .product-detail {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.product-gallery__main {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 22rem;
  margin: 0 auto;
  overflow: hidden;
  background: var(--surface-warm);
}

@media (min-width: 1024px) {
  .product-gallery__main {
    max-width: none;
    max-height: min(480px, 58vh);
    margin: 0;
  }
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.product-gallery__thumb {
  position: relative;
  flex-shrink: 0;
  width: 3rem;
  height: 3.75rem;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: var(--surface-warm);
}

.product-gallery__thumb.is-active {
  border-color: var(--accent);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info__back {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
}

.product-info__back:hover {
  color: var(--accent);
}

.product-info__brand {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.product-info h1 {
  margin: 0.5rem 0 0;
  font-size: 1.375rem;
  word-break: break-word;
}

@media (min-width: 640px) { .product-info h1 { font-size: 1.5rem; } }
@media (min-width: 768px) { .product-info h1 { font-size: 1.75rem; } }

.product-info__prices {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 1rem;
}

.product-info__price {
  font-size: 1.25rem;
  font-weight: 500;
}

.product-info__original {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-info__meta {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.product-info__meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.product-info__meta-row dt {
  color: var(--muted);
}

.product-info__meta-row dd {
  margin: 0;
  font-weight: 500;
}

.product-info__desc {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.product-info__cta {
  margin-top: 1.75rem;
}

.product-info__hint {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Brand story / about */
.pillars {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.pillar {
  text-align: center;
}

.pillar h3 {
  font-size: 1.5rem;
}

.pillar p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.blockquote {
  margin: 3rem auto 0;
  max-width: 42rem;
  text-align: center;
}

@media (min-width: 768px) {
  .blockquote {
    margin-top: 5rem;
  }
}

.blockquote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .blockquote p { font-size: 1.5rem; }
}

@media (min-width: 768px) {
  .blockquote p { font-size: 1.875rem; }
}

.blockquote footer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* About split */
.split-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.split-grid__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-warm);
}

.split-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-grid__text p {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.contact-block + .contact-block {
  margin-top: 2rem;
}

.contact-block h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-block p,
.contact-block address,
.contact-block a {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
  font-style: normal;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-block a:hover {
  color: var(--accent);
}

.contact-map {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .contact-map { aspect-ratio: 16 / 10; }
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-16 { margin-top: 4rem; }
.mt-12 { margin-top: 3rem; }
.bg-warm { background: var(--surface-warm); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.empty-state {
  padding: 5rem 0;
  text-align: center;
  color: var(--muted);
}

.empty-state a {
  color: var(--accent);
}
