/* ---- Gaya Ceramic — cover page clone ---- */
:root {
  --gold: #b09a6e;
  --gold-light: #c8b48a;
  --text-light: #ffffff;
}

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

html, body { height: 100%; }

body.cover-page {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: var(--text-light);
  background: #2a2520;
}

/* Full-bleed background photo */
.cover-bg {
  position: fixed;
  inset: 0;
  background-image: url('assets/hero.webp');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Soft darkening overlay so the logo + text read clearly */
.cover-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(40,33,26,0.45) 0%, rgba(40,33,26,0.25) 45%, rgba(40,33,26,0.55) 100%);
  z-index: 1;
}

/* Centered content column */
.cover-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 40px;
}

.logo-wrap { width: 100%; display: flex; justify-content: center; }

.logo {
  width: 340px;
  max-width: 70vw;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 4.5vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.25;
  max-width: 18ch;
  text-shadow: 0 1px 18px rgba(0,0,0,0.35);
}

/* Navigation */
.cover-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 4px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 14px 30px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 1px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-link:hover {
  background-color: var(--text-light);
  color: #3a3024;
  border-color: var(--text-light);
}

.nav-divider { display: none; }

/* Social icons */
.social {
  list-style: none;
  display: flex;
  gap: 26px;
  margin-top: 8px;
}

.social a {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social a:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .cover-content { gap: 32px; }
  .cover-nav { flex-direction: column; gap: 16px; }
  .nav-link { width: 240px; }
}

/* =====================================================
   Section pages (Design Studio / Ceramic Arts Center)
   Squarespace "index" style — grid of labelled image tiles
   ===================================================== */
body.menu-page {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  background: #f6f2ea;
  color: #3a3024;
  overflow-x: hidden;
  min-height: 100vh;
}

.menu-header {
  text-align: center;
  padding: 46px 24px 10px;
}
.menu-header .logo-link { display: inline-block; }
.menu-header img { width: 230px; max-width: 60vw; height: auto; }

.section-tabs {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 14px 24px 30px;
  flex-wrap: wrap;
}
.section-tabs a {
  color: #9a8a68;
  text-decoration: none;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.74rem;
  padding-bottom: 5px;
  transition: color 0.2s ease;
}
.section-tabs a:hover { color: var(--gold); }
.section-tabs a.active {
  color: #3a3024;
  border-bottom: 1px solid var(--gold);
}

/* Tile grid */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width: 900px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tile-grid { grid-template-columns: 1fr; } }

/* Centered variant: trailing incomplete row is centered instead of left-aligned */
.tile-grid.centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tile-grid.centered .tile {
  flex: 0 0 calc((100% - 4px) / 3);
  max-width: calc((100% - 4px) / 3);
}
@media (max-width: 900px) {
  .tile-grid.centered .tile { flex-basis: calc((100% - 2px) / 2); max-width: calc((100% - 2px) / 2); }
}
@media (max-width: 560px) {
  .tile-grid.centered .tile { flex-basis: 100%; max-width: 100%; }
}

/* 2-column variant: four category tiles form a 2x2 square */
.tile-grid.cols-2 { max-width: 980px; }
.tile-grid.centered.cols-2 .tile {
  flex-basis: calc((100% - 2px) / 2);
  max-width: calc((100% - 2px) / 2);
}
@media (max-width: 560px) {
  .tile-grid.centered.cols-2 .tile { flex-basis: 100%; max-width: 100%; }
}

.tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 33, 26, 0.42);
  transition: background-color 0.35s ease;
  z-index: 1;
}
.tile:hover::before { background: rgba(40, 33, 26, 0.18); }
.tile img.tile-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform 0.6s ease;
}
.tile:hover img.tile-bg { transform: scale(1.05); }
.tile-label {
  position: relative;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.92rem;
  font-weight: 400;
  text-align: center;
  padding: 0 18px;
  text-shadow: 0 1px 14px rgba(0,0,0,0.4);
  line-height: 1.5;
}

.menu-intro {
  text-align: center;
  max-width: 60ch;
  margin: 6px auto 26px;
  padding: 0 24px;
  color: #6b5f4c;
  font-weight: 300;
  line-height: 1.8;
  font-size: 1.02rem;
}

.menu-footer {
  text-align: center;
  padding: 40px 24px 56px;
}
.menu-footer a {
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.menu-footer a:hover { color: #8c7850; }

/* =====================================================
   Content (destination) pages
   ===================================================== */
body.content-page {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  background: #f6f2ea;
  color: #3a3024;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

.sub-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 6px 24px 30px;
  border-bottom: 1px solid #e6ddcd;
  max-width: 1100px;
  margin: 0 auto;
}
.sub-nav a {
  color: #9a8a68;
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.sub-nav a:hover { color: var(--gold); }
.sub-nav a.active { color: #3a3024; }

.page-hero {
  text-align: center;
  padding: 56px 24px 8px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  letter-spacing: 0.01em;
  color: #3a3024;
}
.page-hero .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: #8c7850;
  margin-top: 10px;
  font-weight: 300;
}

.prose {
  max-width: 64ch;
  margin: 26px auto 0;
  padding: 0 24px;
  font-weight: 300;
  color: #574b39;
  font-size: 1.04rem;
}
.prose p { margin-bottom: 1.15em; }
.prose h2 {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  margin: 2.2em 0 0.9em;
}
.prose ul { margin: 0 0 1.2em 1.1em; }
.prose li { margin-bottom: 0.4em; }
.prose strong { font-weight: 500; color: #3a3024; }

/* Image gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1200px;
  margin: 44px auto 0;
  padding: 0 6px;
}
.gallery.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; }
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
.gallery a:hover img { opacity: 0.85; }
@media (max-width: 700px) { .gallery, .gallery.cols-2 { grid-template-columns: repeat(2, 1fr); } }

/* Info cards (contact / showrooms) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 36px auto 0;
  padding: 0 24px;
}
.info-card {
  background: #fff;
  border: 1px solid #ece3d2;
  padding: 28px 26px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #3a3024;
  margin-bottom: 12px;
}
.info-card p { font-weight: 300; color: #574b39; margin-bottom: 8px; font-size: 0.96rem; }
.info-card a { color: var(--gold); text-decoration: none; }
.info-card a:hover { text-decoration: underline; }
.info-map {
  margin: 14px 0 12px;
  margin-top: auto;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(122, 102, 74, 0.22);
  box-shadow: 0 6px 18px rgba(58, 48, 36, 0.08);
}
.info-map iframe {
  display: block;
  width: 100%;
  height: 264px;
  margin-top: -44px;
  border: 0;
  filter: grayscale(0.25) contrast(0.96);
  transition: filter 0.4s ease;
}
.info-map:hover iframe { filter: none; }

.btn-row { text-align: center; margin: 34px 0 0; }
.btn {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  padding: 13px 34px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.btn:hover { background: var(--gold); color: #fff; }
button.btn { background: none; cursor: pointer; font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif; }

/* Contact form */
.form-section {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 0 24px;
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  color: #3a3024;
  text-align: center;
}
.form-intro {
  text-align: center;
  font-weight: 300;
  color: #574b39;
  margin: 10px auto 30px;
  max-width: 520px;
  line-height: 1.6;
}
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form .field { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7c64;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #ece3d2;
  border-radius: 2px;
  padding: 12px 14px;
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 0.96rem;
  color: #3a3024;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; }
@media (max-width: 560px) {
  .contact-form .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* =====================================================
   Collections — category tiles + lookbook cards
   ===================================================== */

/* Category tiles: home-page tile look, but label sits in a bottom
   banner so it never collides with the collection name baked into
   the branded cover used as the background. */
.tile.tile--banner { align-items: flex-end; }
.tile.tile--banner::before {
  background: linear-gradient(180deg, rgba(40,33,26,0) 30%, rgba(40,33,26,0.78) 100%);
}
.tile.tile--banner:hover::before {
  background: linear-gradient(180deg, rgba(40,33,26,0.05) 20%, rgba(40,33,26,0.88) 100%);
}
.tile.tile--banner .tile-label {
  width: 100%;
  padding: 0 16px 24px;
  font-size: 0.86rem;
}
.tile.tile--banner .tile-label .count {
  display: block;
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}

/* Collection-type switcher: appears on category pages (after a type is
   chosen) so visitors can jump between the four collection types. */
.collection-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 30px;
  padding: 20px 24px 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.collection-tabs a {
  color: #9a8a68;
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  white-space: nowrap;
  padding-bottom: 5px;
  transition: color 0.2s ease;
}
.collection-tabs a:hover { color: var(--gold); }
.collection-tabs a.active {
  color: #3a3024;
  border-bottom: 1px solid var(--gold);
}

/* Lookbook grid: the collections inside a category */
.lookbook-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  max-width: 1180px;
  margin: 38px auto 0;
  padding: 0 24px;
}

.lookbook-card {
  flex: 0 0 calc((100% - 44px) / 3);
  max-width: calc((100% - 44px) / 3);
  display: block;
  text-decoration: none;
  color: #3a3024;
  background: #fff;
  border: 1px solid #ece3d2;
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.lookbook-card:hover {
  box-shadow: 0 10px 28px rgba(58,48,36,0.16);
  transform: translateY(-3px);
}
.lookbook-card img {
  width: 100%;
  aspect-ratio: 1400 / 850;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .lookbook-card { flex-basis: calc((100% - 22px) / 2); max-width: calc((100% - 22px) / 2); }
}
@media (max-width: 560px) {
  .lookbook-card { flex-basis: 100%; max-width: 100%; }
}

/* =====================================================
   v10 — Dynamic layer
   Motion, page transitions, and micro-interactions.
   Reveal classes are applied by site.js.
   ===================================================== */

/* Cross-fade between pages (View Transitions, same-origin MPA) */
@view-transition { navigation: auto; }
::view-transition-group(root) { animation-duration: 0.4s; }

html { scroll-behavior: smooth; }

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

body.menu-page,
body.content-page {
  scrollbar-width: thin;
  scrollbar-color: var(--gold-light) #f6f2ea;
}

/* Film grain over everything, very faint */
body.cover-page::after,
body.menu-page::after,
body.content-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Scroll reveals (elements get .reveal from site.js) ---- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s),
    filter 0.9s ease var(--d, 0s);
}
.js .reveal.in-view {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ---- Scroll progress hairline ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 120;
}

/* ---- Cover page: cinematic entrance ---- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}
@keyframes coverZoom {
  from { scale: 1.08; }
  to   { scale: 1.16; }
}
@keyframes fadeIn { from { opacity: 0; } }

.cover-bg {
  scale: 1.08; /* headroom for the parallax + zoom so edges never show */
  animation: fadeIn 1.4s ease both, coverZoom 30s ease-in-out infinite alternate;
}
.cover-page .logo-wrap { animation: riseIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.cover-page .tagline   { animation: riseIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both; }
.cover-page .cover-nav { animation: riseIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both; }
.cover-page .social    { animation: riseIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both; }

/* Tagline, restyled as a quiet editorial line under the logo */
.tagline {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.06em;
  max-width: none;
  margin-top: -14px;
}

/* Cover nav buttons: sweep fill instead of hard swap */
.nav-link {
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition:
    background-size 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease,
    letter-spacing 0.5s ease,
    border-color 0.35s ease;
}
.nav-link:hover {
  background-color: transparent;
  background-size: 100% 100%;
  letter-spacing: 0.34em;
}

/* ---- Tiles: slower zoom, label tracking, gold underline ---- */
.tile img.tile-bg {
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), filter 1.4s ease;
}
.tile:hover img.tile-bg { transform: scale(1.07); filter: saturate(1.08); }
.tile::before { transition: background-color 0.6s ease, background 0.6s ease; }
.tile-label { transition: letter-spacing 0.5s ease; }
.tile:hover .tile-label { letter-spacing: 0.3em; }
.tile-label::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  margin: 12px auto 0;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}
.tile:hover .tile-label::after { width: 44px; }
.tile.tile--banner:hover .tile-label::after { margin-left: 0; }

/* ---- Sticky glass sub-nav on content pages ---- */
.sub-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  max-width: none;
  padding: 18px 24px;
  background: rgba(246, 242, 234, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  transition: box-shadow 0.35s ease;
}
.sub-nav.is-stuck { box-shadow: 0 10px 32px rgba(58, 48, 36, 0.1); }

/* Animated underline on all small nav links */
.sub-nav a,
.section-tabs a,
.collection-tabs a {
  position: relative;
  padding-bottom: 5px;
}
.sub-nav a::after,
.section-tabs a::after,
.collection-tabs a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sub-nav a:hover::after,
.section-tabs a:hover::after,
.collection-tabs a:hover::after,
.sub-nav a.active::after,
.section-tabs a.active::after,
.collection-tabs a.active::after { transform: scaleX(1); }
.section-tabs a.active,
.collection-tabs a.active { border-bottom: none; }

/* ---- Page hero: larger headline + gold rule that draws in ---- */
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.page-hero h1::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
}
.js .page-hero h1::after {
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}
.js .page-hero h1.in-view::after { transform: scaleX(1); }

/* ---- Galleries: gentle pop on hover ---- */
.gallery img {
  position: relative;
  z-index: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease, opacity 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.035);
  filter: brightness(1.05) saturate(1.06);
  z-index: 1;
}

/* ---- Lookbook cards: deeper lift, inner image zoom ---- */
.lookbook-card { transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.lookbook-card img { transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.lookbook-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(58, 48, 36, 0.18);
}
.lookbook-card:hover img { transform: scale(1.04); }

/* ---- Info cards ---- */
.info-card { transition: border-color 0.35s ease, box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.info-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 16px 36px rgba(58, 48, 36, 0.1);
  transform: translateY(-4px);
}

/* ---- Buttons: gold sweep fill ---- */
.btn {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition:
    background-size 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease,
    letter-spacing 0.45s ease;
}
.btn:hover {
  background-color: transparent;
  background-size: 100% 100%;
  letter-spacing: 0.3em;
}

/* ---- Form focus ring ---- */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 154, 110, 0.16);
}

/* ---- Reduced motion: show everything, animate nothing ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; filter: none; }
}
