/* ============================================================
   CASA DEL CAFFÈ — STYLESHEET
   ============================================================
   Organised as:
   1. Design tokens (colors, type, spacing)
   2. Reset / base
   3. Typography utilities
   4. Layout utilities (container, buttons, sections)
   5. Header / navigation
   6. Hero
   7. Section-by-section styles (in the order they appear on page)
   8. Footer
   9. Lightbox
   10. Responsive (mobile-first overrides live inline per-section;
       larger breakpoints below each block)
   11. Accessibility / reduced motion
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------
   The palette: warm ivory & cream base, espresso-brown ink,
   terracotta as the primary warm accent, muted gold used
   sparingly (labels, hairlines, review stars) — never as a
   dominant fill. Deep olive appears in a couple of quiet spots
   for contrast without introducing a second "loud" colour.
------------------------------------------------------------- */
:root {
  /* Colour */
  --ivory: #F7F3EC;
  --cream: #F1EADC;
  --warm-white: #FFFDF9;
  --espresso: #2B1F1A;
  --espresso-soft: #4A392F;
  --olive: #4C5141;
  --terracotta: #A85F43;
  --terracotta-dark: #8B4C34;
  --gold: #B8935A;
  --taupe: #C8BDAE;
  --line: rgba(43, 31, 26, 0.14);
  --line-light: rgba(255, 253, 249, 0.28);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-w: 1240px;
  --radius-none: 0;
  --transition: 320ms cubic-bezier(0.22, 1, 0.36, 1);

  /* Section rhythm */
  --section-pad: 128px;
}

@media (max-width: 900px) {
  :root { --section-pad: 84px; }
}

/* ------------------------------------------------------------
   2. RESET / BASE
------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea { font-family: inherit; }

/* Skip link — visible on keyboard focus only */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--espresso);
  color: var(--warm-white);
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
  z-index: 1000;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* Visible focus states throughout */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

/* ------------------------------------------------------------
   3. TYPOGRAPHY UTILITIES
------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
  display: block;
}
.eyebrow-light { color: var(--gold); }

.display-lg {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--espresso);
}
.display-md {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--espresso);
}
.body-lg {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.7;
  color: var(--espresso-soft);
  max-width: 46ch;
  margin-top: 1.4rem;
}
.label-sm {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 1rem;
}
.text-light { color: var(--warm-white); }
.text-light-muted { color: rgba(255, 253, 249, 0.82); }

/* ------------------------------------------------------------
   4. LAYOUT UTILITIES
------------------------------------------------------------- */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media (max-width: 640px) {
  .container { padding: 0 1.4rem; }
}

.section { padding: var(--section-pad) 0; }

.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.section-head-center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-lede { margin-left: auto; margin-right: auto; }

/* Buttons — thin, editorial, no rounded corners, underline-style hover */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--espresso);
  color: var(--warm-white);
  border-color: var(--espresso);
}
.btn-primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn-outline:hover { background: var(--espresso); color: var(--warm-white); }

.btn-ghost-light {
  background: transparent;
  color: var(--warm-white);
  border-color: var(--line-light);
}
.btn-ghost-light:hover { border-color: var(--warm-white); }

.btn-small { padding: 0.6rem 1.2rem; font-size: 0.72rem; }

/* Steam-motif divider — the recurring signature element, echoing the
   logo's steam curves. Used between hero and the next section only,
   so it reads as a deliberate accent rather than decoration repeated
   everywhere. */
.steam-divider {
  height: 22px;
  color: var(--terracotta);
  opacity: 0.55;
  overflow: hidden;
}
.steam-divider svg { width: 100%; height: 100%; }

/* ------------------------------------------------------------
   5. HEADER / NAVIGATION
------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo { width: 38px; height: 38px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 2.1rem; }
.nav-list a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav-list a:hover { border-bottom-color: var(--terracotta); color: var(--terracotta-dark); }

.header-actions { display: flex; align-items: center; gap: 1.3rem; }

.lang-switch { display: flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; }
.lang-btn {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--espresso-soft);
  padding: 0.2rem 0.15rem;
  transition: color var(--transition);
}
.lang-btn[aria-pressed="true"] { color: var(--terracotta); }
.lang-btn:hover { color: var(--terracotta-dark); }
.lang-dot { color: var(--taupe); font-size: 0.7rem; }

.header-cta { display: inline-flex; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
}
.nav-toggle-bar {
  width: 100%;
  height: 1.5px;
  background: var(--espresso);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--ivory);
  z-index: 600;
  padding: 6.5rem 2rem 2rem;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform var(--transition);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-list { display: flex; flex-direction: column; gap: 1.6rem; }
.mobile-nav-list a { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; }
.mobile-nav-footer { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.lang-switch-mobile { font-size: 0.9rem; }
.lang-switch-footer { margin-top: 1.3rem; }

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .header-inner { padding: 0.8rem 1.4rem; }
}

/* ------------------------------------------------------------
   6. HERO
------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,31,26,0.15) 0%, rgba(43,31,26,0.25) 55%, rgba(43,31,26,0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 2.5rem 6.5rem;
  color: var(--warm-white);
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  display: flex;
  flex-direction: column;
  max-width: 14ch;
}
.hero-headline span:nth-child(2) { font-style: italic; color: var(--gold); }

.hero-subtext {
  margin-top: 1.6rem;
  font-size: 1.05rem;
  max-width: 38ch;
  color: rgba(255, 253, 249, 0.88);
}
.hero-actions { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  right: 2.5rem;
  bottom: 2.2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-white);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.scroll-hint svg { animation: scrollBob 2.2s ease-in-out infinite; }
@keyframes scrollBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (max-width: 640px) {
  .hero { min-height: 100vh; align-items: flex-end; }
  .hero-content { padding: 0 1.4rem 4.5rem; }
  .hero-headline { max-width: 11ch; }
  .scroll-hint { right: 1.4rem; bottom: 1.4rem; }
}

/* ------------------------------------------------------------
   7. SECTIONS
------------------------------------------------------------- */

/* --- Introduction --- */
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
.intro-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-image { order: -1; }
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.about-image img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; }
.about-copy .body-lg + .body-lg { margin-top: 1.1rem; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.about-section { background: var(--cream); }

/* --- Coffee ritual --- */
.coffee-photo-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.coffee-photo img { width: 100%; height: 100%; object-fit: cover; }
.coffee-photo-lg img { aspect-ratio: 4 / 3; }
.coffee-photo-sm img { aspect-ratio: 4 / 3; }
@media (max-width: 750px) {
  .coffee-photo-row { grid-template-columns: 1fr; }
}

/* --- Food --- */
.food-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.7fr;
  gap: 1.8rem;
  align-items: center;
}
.food-image img { width: 100%; object-fit: cover; }
.food-image-main img { aspect-ratio: 3 / 4; }
.food-image-sub img { aspect-ratio: 3 / 4; }
.food-headline { display: flex; flex-direction: column; }
.food-copy { text-align: center; }
.food-copy .body-lg { margin-left: auto; margin-right: auto; }
@media (max-width: 950px) {
  .food-grid { grid-template-columns: 1fr; }
  .food-image-sub { display: none; }
}

/* --- Monaco (full-bleed image section) --- */
.monaco-section { position: relative; padding: 0; min-height: 70vh; display: flex; align-items: center; }
.monaco-media { position: absolute; inset: 0; z-index: 0; }
.monaco-media img { width: 100%; height: 100%; object-fit: cover; }
.monaco-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43,31,26,0.82) 0%, rgba(43,31,26,0.45) 55%, rgba(43,31,26,0.2) 100%); }
.monaco-content { position: relative; z-index: 1; padding: 6rem 2.5rem; max-width: 620px; }
@media (max-width: 640px) {
  .monaco-section { min-height: 60vh; }
  .monaco-content { padding: 4rem 1.4rem; }
}

/* --- Terrace --- */
.terrace-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
.terrace-headline { display: flex; gap: 0.4em; flex-wrap: wrap; }
.terrace-image img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
@media (max-width: 900px) {
  .terrace-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .terrace-image { order: -1; }
}
.terrace-section { background: var(--cream); }

/* --- Menu --- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}
.menu-category { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.menu-item { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-weight: 500; }
.menu-item-desc { font-size: 0.88rem; color: var(--espresso-soft); margin-top: 0.2rem; }
.menu-empty { font-size: 0.95rem; font-style: italic; color: var(--espresso-soft); }
@media (max-width: 750px) {
  .menu-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* --- Gallery (asymmetric editorial grid) --- */
.gallery-section .container { margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 0.6rem;
  padding: 0 2.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--taupe);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }

@media (max-width: 750px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; padding: 0 1.4rem; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(3),
  .gallery-item:nth-child(4), .gallery-item:nth-child(5), .gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
}

/* --- Instagram --- */
.instagram-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.instagram-item { aspect-ratio: 1; overflow: hidden; position: relative; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.instagram-item:hover img { transform: scale(1.05); }
@media (max-width: 640px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Reviews --- */
.reviews-root { max-width: 900px; margin: 0 auto; }
.reviews-loading, .reviews-error-body { text-align: center; color: var(--espresso-soft); }

.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  text-align: center;
}
.reviews-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 0.15em; }
.reviews-score { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; }
.reviews-meta { font-size: 0.88rem; color: var(--espresso-soft); }

.review-card {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.review-card:last-child { border-bottom: 1px solid var(--line); }
.review-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.1em; margin-bottom: 0.7rem; }
.review-text { font-size: 1rem; line-height: 1.7; color: var(--espresso); }
.review-footer { display: flex; justify-content: space-between; margin-top: 1rem; font-size: 0.82rem; color: var(--espresso-soft); }
.review-author { font-weight: 600; }

.reviews-actions { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; margin-top: 2.5rem; }
.reviews-attribution { font-size: 0.75rem; color: var(--taupe); }

.reviews-error { text-align: center; padding: 2rem 0; }
.reviews-error-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.8rem; }
.reviews-error-body { max-width: 44ch; margin: 0 auto 1.6rem; }

/* --- Find us --- */
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.find-us-block { margin-top: 2.4rem; }
.find-us-block:first-of-type { margin-top: 2rem; }
.hours-list { display: flex; flex-direction: column; gap: 0.35rem; }
.hours-list li { display: flex; justify-content: space-between; max-width: 320px; font-size: 0.95rem; padding: 0.3rem 0; border-bottom: 1px dashed var(--line); }
.hours-list li:last-child { border-bottom: none; }
.hours-day { color: var(--espresso-soft); }
.find-us-actions { display: flex; gap: 1rem; margin-top: 2.6rem; flex-wrap: wrap; }
.find-us-map img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.phone-link { border-bottom: 1px solid var(--line); }
.phone-link:hover { border-bottom-color: var(--terracotta); color: var(--terracotta-dark); }
@media (max-width: 900px) {
  .find-us-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .find-us-map { order: -1; }
}
.find-us-section { background: var(--cream); }

/* ------------------------------------------------------------
   8. FOOTER
------------------------------------------------------------- */
.site-footer { background: var(--espresso); color: var(--warm-white); padding-top: 5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-logo { width: 40px; height: 40px; filter: invert(1) brightness(1.6); margin-bottom: 1rem; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.2rem; }
.footer-tagline { font-size: 0.85rem; color: var(--gold); margin-top: 0.2rem; }

.footer-col h3 { color: var(--gold); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a, .footer-col p { font-size: 0.92rem; color: rgba(255, 253, 249, 0.82); }
.footer-col a:hover { color: var(--warm-white); }
.footer-col p { margin-bottom: 0.6rem; line-height: 1.6; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1.8rem 2.5rem;
  font-size: 0.8rem;
  color: rgba(255, 253, 249, 0.55);
}
.footer-bottom a { color: rgba(255, 253, 249, 0.75); border-bottom: 1px solid rgba(255,253,249,0.25); }
.footer-bottom a:hover { color: var(--warm-white); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; padding: 1.8rem 1.4rem; }
}

/* ------------------------------------------------------------
   9. LIGHTBOX
------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(43, 31, 26, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox-figure { max-width: 82vw; max-height: 82vh; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lightbox-figure img { max-width: 82vw; max-height: 74vh; object-fit: contain; }
.lightbox-figure figcaption { color: var(--warm-white); font-size: 0.9rem; text-align: center; opacity: 0.85; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; color: var(--warm-white); }
.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); color: var(--warm-white); padding: 1rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); color: rgba(255,253,249,0.6); font-size: 0.8rem; }

@media (max-width: 640px) {
  .lightbox-close { top: 1.2rem; right: 1.2rem; }
  .lightbox-arrow { padding: 0.6rem; }
}

/* ------------------------------------------------------------
   10. MICRO-INTERACTIONS (kept restrained — see reduced-motion below)
------------------------------------------------------------- */
.hero-content, .intro-copy, .about-copy { animation: none; }

/* Fade/rise reveal for sections as they enter viewport */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ------------------------------------------------------------
   11. ACCESSIBILITY / REDUCED MOTION
------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .scroll-hint svg { animation: none; }
}
