@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream: #FBF7F1;
  --cream-deep: #F3ECE1;
  --espresso: #241A13;
  --espresso-soft: #4A392C;
  --oud-gold: #A9793F;
  --oud-gold-soft: #C9A574;
  --ink: #1B1611;
  --line: rgba(36, 26, 19, 0.10);
  --line-strong: rgba(36, 26, 19, 0.18);
  --white: #FFFFFF;
  --max-w: 1180px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

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

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

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--oud-gold);
  background: var(--white);
}

.eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--oud-gold);
}

/* ---------- NAV ---------- */
.nav-shell {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.nav-pill {
  width: min(920px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 22px;
  border-radius: 999px;
  background: rgba(251, 247, 241, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 10px 30px rgba(36, 26, 19, 0.06);
  transition: all 0.5s var(--ease);
}

.brand {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--oud-gold-soft), var(--oud-gold) 70%);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--espresso-soft);
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
}

.nav-links a:hover, .nav-links a.active {
  background: var(--white);
  color: var(--espresso);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 8px 8px 18px;
  border-radius: 999px;
  transition: background 0.35s var(--ease);
  will-change: transform;
}

.nav-cta:hover { background: var(--espresso-soft); }

.nav-cta .icon-circ {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line-strong);
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1.5px;
  background: var(--espresso);
  transition: all 0.4s var(--ease);
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }

.hamburger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(27, 22, 17, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  color: var(--cream);
  padding: 10px 0;
  opacity: 0;
  transform: translateY(48px);
  transition: all 0.7s var(--ease);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.19s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.33s; }

@media (max-width: 760px) {
  .nav-links, .nav-cta .label { display: none; }
  .hamburger { display: block; }
  .nav-pill { padding: 8px; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

/* Ambient background — drifting glow orbs, always running (CSS-only, no JS
   dependency) so the page feels alive on load even before any scroll or
   cursor movement. Disabled under reduced-motion below. */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  mix-blend-mode: multiply;
}
.glow-orb-1 {
  width: 46vw;
  height: 46vw;
  max-width: 560px;
  max-height: 560px;
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(201,165,116,0.85), transparent 62%);
  animation: orbDriftA 22s ease-in-out infinite;
}
.glow-orb-2 {
  width: 30vw;
  height: 30vw;
  max-width: 380px;
  max-height: 380px;
  bottom: -10%;
  left: -6%;
  background: radial-gradient(circle, rgba(169,121,63,0.75), transparent 62%);
  animation: orbDriftB 18s ease-in-out infinite;
}
.glow-orb-3 {
  width: 20vw;
  height: 20vw;
  max-width: 260px;
  max-height: 260px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, rgba(201,165,116,0.6), transparent 62%);
  animation: orbDriftC 26s ease-in-out infinite;
}

@keyframes orbDriftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6%, 8%) scale(1.15); }
}
@keyframes orbDriftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, -6%) scale(1.1); }
}
@keyframes orbDriftC {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-10%, -10%) scale(1.25); opacity: 0.75; }
}

@media (prefers-reduced-motion: reduce) {
  .glow-orb { animation: none !important; }
}

/* Page-wide ambient layer — fixed to the viewport (not the hero), so the
   background keeps a soft sense of motion while scrolling through the rest
   of the page, not just at the top. */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.ambient-bg::before,
.ambient-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: multiply;
}
.ambient-bg::before {
  width: 50vw;
  height: 50vw;
  top: -15vw;
  left: -10vw;
  background: radial-gradient(circle, rgba(201,165,116,0.35), transparent 65%);
  animation: ambientDriftA 34s ease-in-out infinite;
}
.ambient-bg::after {
  width: 40vw;
  height: 40vw;
  bottom: -15vw;
  right: -10vw;
  background: radial-gradient(circle, rgba(169,121,63,0.3), transparent 65%);
  animation: ambientDriftB 40s ease-in-out infinite;
}
@keyframes ambientDriftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6vw, 8vw) scale(1.2); }
}
@keyframes ambientDriftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6vw, -6vw) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .ambient-bg::before, .ambient-bg::after { animation: none !important; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  margin: 20px 0 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--oud-gold);
}

.hero-headline {
  perspective: 600px;
}

.hero-headline .word {
  display: inline-block;
  will-change: transform, opacity;
}

.hero p.lede {
  font-size: 17px;
  color: var(--espresso-soft);
  max-width: 46ch;
  margin-bottom: 36px;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  will-change: transform;
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(36,26,19,0.22); }
.btn-primary:active { transform: scale(0.97) !important; }

.btn-primary .icon-circ {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
}

.btn-ghost {
  background: var(--white);
  border: 1px solid var(--line-strong);
  color: var(--espresso);
  padding: 14px 26px;
}
.btn-ghost:hover { background: var(--cream-deep); transform: translateY(-2px); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2rem;
  background: rgba(36,26,19,0.04);
  border: 1px solid var(--line);
  padding: 10px;
  perspective: 1000px;
}

.hero-visual-inner {
  width: 100%; height: 100%;
  border-radius: calc(2rem - 6px);
  background:
    radial-gradient(circle at 30% 20%, rgba(201,165,116,0.35), transparent 55%),
    linear-gradient(0deg, rgba(18,12,8,0.55), transparent 60%),
    url('../images/hero-oud-bottle.jpg') center/cover;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-visual-tag {
  background: rgba(251,247,241,0.92);
  backdrop-filter: blur(10px);
  border-radius: 1.2rem;
  padding: 16px 20px;
  width: 100%;
}
.hero-visual-tag .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--oud-gold); font-weight: 600; }
.hero-visual-tag .name { font-family: 'Fraunces', serif; font-size: 20px; margin-top: 4px; }

.float-dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--oud-gold-soft), var(--oud-gold));
  opacity: 0.85;
}

/* ---------- SECTIONS ---------- */
section { padding: 96px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-top: 16px; }
.section-head p { color: var(--espresso-soft); margin-top: 14px; font-size: 15.5px; }

.divider { border: none; border-top: 1px solid var(--line); }

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.bento .span-7 { grid-column: span 7; }
.bento .span-5 { grid-column: span 5; }
.bento .span-4 { grid-column: span 4; }
.bento .span-8 { grid-column: span 8; }
.bento .span-6 { grid-column: span 6; }
.bento .span-12 { grid-column: span 12; }

@media (max-width: 860px) {
  .bento [class*="span-"] { grid-column: span 12 !important; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
}

/* Card = outer shell + inner core (double bezel) */
.card {
  background: rgba(36,26,19,0.035);
  border: 1px solid var(--line);
  border-radius: 2rem;
  padding: 8px;
}
.card-inner {
  background: var(--white);
  border-radius: calc(2rem - 6px);
  padding: 32px;
  height: 100%;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover .card-inner {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(36,26,19,0.08), inset 0 1px 1px rgba(255,255,255,0.6);
}

.card-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--oud-gold-soft), var(--oud-gold));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--white);
}

.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--espresso-soft); flex-grow: 1; }

/* Product card */
.product-card .card-inner { padding: 0; overflow: hidden; }
.product-media {
  aspect-ratio: 5/4;
  background: linear-gradient(160deg, #2A1E14, #120C08 75%);
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(18,12,8,0.35), transparent 55%),
    radial-gradient(circle at 25% 20%, rgba(201,165,116,0.25), transparent 55%);
}
.product-body { padding: 24px; }
.product-badge {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--oud-gold);
  margin-bottom: 8px;
}
.product-body h3 { font-size: 18px; margin-bottom: 6px; }
.product-body p { font-size: 13.5px; color: var(--espresso-soft); margin-bottom: 16px; }
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 13px;
}
.product-price { font-family: 'Fraunces', serif; font-size: 17px; color: var(--espresso); }
.product-link { color: var(--oud-gold); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat h3 { font-size: clamp(30px,4vw,44px); color: var(--oud-gold); }
.stat p { font-size: 13px; color: var(--espresso-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2,1fr); } }

/* Process / steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step-num { font-family: 'Fraunces', serif; font-size: 40px; color: var(--oud-gold-soft); margin-bottom: 12px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(160deg, var(--espresso), #17110B 80%);
  border-radius: 2.2rem;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(201,165,116,0.25), transparent);
}
.cta-banner h2 { color: var(--cream); position: relative; z-index: 1; font-size: clamp(28px,4vw,42px); }
.cta-banner p { color: rgba(251,247,241,0.65); margin: 16px auto 32px; max-width: 50ch; position: relative; z-index: 1; }
.cta-banner .btn-row { justify-content: center; position: relative; z-index: 1; }
.cta-banner .btn-ghost { background: transparent; border-color: rgba(251,247,241,0.25); color: var(--cream); }
.cta-banner .btn-ghost:hover { background: rgba(251,247,241,0.08); }
.cta-banner .btn-primary { background: var(--cream); color: var(--espresso); }
.cta-banner .btn-primary .icon-circ { background: rgba(36,26,19,0.12); }

/* Form */
.form-card { max-width: 640px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--espresso-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  border-radius: 14px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--oud-gold);
  background: var(--white);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--espresso-soft); margin-bottom: 14px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; }
.footer-col a { display: block; font-size: 14px; color: var(--espresso-soft); padding: 6px 0; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--oud-gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--espresso-soft);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Reveal on scroll — GSAP drives the animation via inline styles (see main.js);
   no CSS transition here, since one fighting GSAP's own per-frame values
   would smear/lag behind the calculated position. The .in fallback (used
   only when GSAP fails to load) gets its own transition below. */
.reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(48px);
}
.reveal.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 160px 0 60px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.page-hero > *:not(.glow-orb) { position: relative; z-index: 1; }
.page-hero .glow-orb-1 { width: 320px; height: 320px; top: -20%; right: -5%; }
.page-hero .glow-orb-2 { width: 220px; height: 220px; bottom: -30%; left: 0; }
.page-hero h1 { font-size: clamp(36px, 5vw, 58px); margin-top: 18px; }
.page-hero p { color: var(--espresso-soft); max-width: 55ch; margin-top: 16px; font-size: 16px; }

/* filter chips */
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.chip {
  border: 1px solid var(--line-strong);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--espresso-soft);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.chip:hover { background: var(--cream-deep); }
.chip.active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.grid-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .grid-products { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .grid-products { grid-template-columns: 1fr; } }

.map-block {
  aspect-ratio: 16/7;
  border-radius: 2rem;
  background: linear-gradient(160deg, #2A1E14, #120C08 75%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-block::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 30% 30%, rgba(201,165,116,0.35), transparent 60%); }
.map-block span { position: relative; z-index: 1; color: var(--cream); font-family: 'Fraunces', serif; font-size: 15px; letter-spacing: 0.02em; opacity: 0.8; }

/* Portrait image card — same double-bezel treatment as the homepage hero
   visual. Used instead of a wide banner crop: the source photography here is
   all portrait product shots (bottle + shallow-depth background), and
   forcing that into a short wide strip left mostly empty cropped background
   with the bottle floating oddly. A portrait frame shows the actual photo. */
.image-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2rem;
  background: rgba(36,26,19,0.04);
  border: 1px solid var(--line);
  padding: 10px;
}
.image-card-inner {
  width: 100%;
  height: 100%;
  border-radius: calc(2rem - 6px);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.15);
}
.image-card-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(18,12,8,0.3), transparent 50%),
    radial-gradient(circle at 30% 20%, rgba(201,165,116,0.2), transparent 55%);
}
@media (max-width: 860px) { .image-card { aspect-ratio: 16/10; } }
