/* ─────────────────────────────────────────
   KOREBI × TERRA  — Luxury Minimal v2
   Palette: ivory #F7F3EC · ink #111 · gold #C9A84C
───────────────────────────────────────── */

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

:root {
  --gold:      #C9A84C;
  --gold-mid:  #A88A38;
  --ink:       #111111;
  --ink-soft:  #2a2a2a;
  --stone:     #888078;
  --ivory:     #F7F3EC;
  --ivory-2:   #EDE7D8;
  --white:     #FFFFFF;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;
  --script: 'Dancing Script', cursive;

  --max: 1080px;
  --pad: clamp(24px, 5vw, 64px);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── shared eyebrow label ── */
.section-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── buttons ── */
.btn-ghost {
  display: inline-block;
  padding: 11px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .22s, color .22s;
}
.btn-ghost:hover { background: var(--gold); color: var(--white); }

.btn-solid {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .22s, color .22s;
}
.btn-solid:hover { background: var(--gold-mid); border-color: var(--gold-mid); }

/* ── reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  transition: background .3s, padding .3s, border-bottom .3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  padding: 16px var(--pad);
  border-bottom: 1px solid rgba(201,168,76,.2);
}

.nav-wordmark {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .22em;
  color: var(--ink);
  text-transform: uppercase;
}
#navbar.scrolled .nav-wordmark { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .55;
  transition: opacity .2s, color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-ig {
  font-size: .68rem;
  font-weight: 300;
  letter-spacing: .14em;
  color: var(--gold);
  opacity: .8;
  transition: opacity .2s;
}
.nav-ig:hover { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  position: relative;
  padding: 120px var(--pad) 80px;
  text-align: center;
}

.hero-rule {
  width: 1px;
  height: 60px;
  background: var(--gold);
  margin: 0 auto 40px;
  opacity: .5;
}

.hero-label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 300;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 28px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 36px;
}
.ht-italic {
  font-style: italic;
  color: var(--gold);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.hd-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: .4;
}
.hd-dot {
  font-size: .5rem;
  color: var(--gold);
  opacity: .7;
}

.hero-cities {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-foot {
  position: absolute;
  bottom: 48px;
  right: var(--pad);
  opacity: .08;
}
.hero-logo {
  height: 120px;
  width: auto;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hs-text {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .5;
}
.hs-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(201,168,76,.5), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ══════════════════════════════
   QUOTE STRIP
══════════════════════════════ */
.quote-strip {
  background: var(--ivory);
  padding: 28px var(--pad);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.qs-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.qs-inner p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.qs-mark {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  margin-top: -8px;
}

/* ══════════════════════════════
   SEASONAL
══════════════════════════════ */
.seasonal {
  background: var(--white);
  padding: 100px var(--pad);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.seasonal-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.tag {
  display: inline-block;
  font-size: .63rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.35);
  padding: 5px 14px;
  margin-bottom: 28px;
}
.seasonal-script {
  font-family: var(--script);
  font-size: 1.3rem;
  color: var(--stone);
  margin-bottom: 6px;
}
.seasonal-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}
.seasonal-heading em { font-style: italic; color: var(--gold); }
.seasonal-body { font-size: .9rem; font-weight: 300; color: var(--stone); line-height: 1.85; margin-bottom: 32px; }

.seasonal-items { display: flex; flex-direction: column; }
.si-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
}
.si-num {
  font-family: var(--serif);
  font-size: .75rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .1em;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: .7;
}
.si-text { flex: 1; }
.si-text h4 { font-family: var(--serif); font-weight: 400; font-size: 1.1rem; color: var(--ink); margin-bottom: 4px; }
.si-text p  { font-size: .78rem; font-weight: 300; color: var(--stone); letter-spacing: .04em; }
.si-price   { font-family: var(--serif); font-size: 1rem; font-weight: 300; color: var(--gold-mid); flex-shrink: 0; }
.si-rule    { height: 1px; background: rgba(201,168,76,.15); }

/* ══════════════════════════════
   MENU
══════════════════════════════ */
.menu-section {
  background: var(--ivory);
  padding: 100px var(--pad);
}
.menu-inner { max-width: var(--max); margin: 0 auto; }

.menu-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 12px;
}
.mh-rule { flex: 1; height: 1px; background: var(--gold); opacity: .25; }
.menu-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  white-space: nowrap;
  color: var(--ink);
  letter-spacing: .04em;
}

.menu-sub {
  text-align: center;
  font-size: .78rem;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 64px;
}

.menu-category { margin-bottom: 56px; }
.mc-label-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 6px;
}
.mc-label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.mc-label-line { flex: 1; height: 1px; background: rgba(201,168,76,.18); }
.mc-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  color: var(--stone);
  margin-bottom: 16px;
  padding-left: 0;
}

.menu-items { display: flex; flex-direction: column; }

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(17,17,17,.07);
  transition: background .2s;
  cursor: default;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: rgba(201,168,76,.04); margin: 0 -12px; padding: 20px 12px; }

.mi-left  { flex: 1; }
.mi-left h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 5px;
  line-height: 1.2;
}
.mi-left p  { font-size: .78rem; font-weight: 300; color: var(--stone); line-height: 1.6; }

.mi-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.mi-price {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--gold-mid);
  white-space: nowrap;
}
.mi-tag {
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  white-space: nowrap;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about { background: var(--white); padding: 100px var(--pad); }
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }
.av-frame {
  aspect-ratio: 3/4;
  background: var(--ink);
  position: relative;
  overflow: visible;
}
.av-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1e1c18 0%, #111 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.av-monogram {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,.35);
  letter-spacing: .2em;
}
.av-location {
  font-size: .65rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(247,243,236,.25);
}
.av-caption-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 20px;
  min-width: 110px;
}
.acc-year  { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 300; line-height: 1; }
.acc-label { display: block; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; opacity: .8; margin-top: 4px; }
.av-dot-grid {
  position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  background-image: radial-gradient(circle, rgba(201,168,76,.3) 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: -1;
}

.about-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 28px;
}
.about-heading em { font-style: italic; color: var(--gold); }

.about-text p {
  font-size: .9rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-text strong { color: var(--ink); font-weight: 400; }

.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0;
  border-top: 1px solid rgba(17,17,17,.08);
  border-bottom: 1px solid rgba(17,17,17,.08);
  margin: 28px 0;
}
.as-item { flex: 1; text-align: center; }
.as-num  { display: block; font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.as-label{ display: block; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); margin-top: 6px; }
.as-sep  { width: 1px; height: 40px; background: rgba(201,168,76,.2); flex-shrink: 0; }

.about-brands {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .8rem;
  font-weight: 300;
  color: var(--stone);
}
.about-brands a { color: var(--gold-mid); transition: color .2s; }
.about-brands a:hover { color: var(--gold); }
.about-brands span { color: var(--gold); opacity: .5; }

/* ══════════════════════════════
   LOCATIONS
══════════════════════════════ */
.locations {
  background: var(--ivory-2);
  padding: 100px var(--pad);
}
.locations-inner { max-width: var(--max); margin: 0 auto; }
.loc-header { text-align: center; margin-bottom: 60px; }
.loc-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: start;
}
.loc-divider { background: rgba(201,168,76,.2); align-self: stretch; }

.loc-city-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
}
.loc-num {
  font-family: var(--serif);
  font-size: .75rem;
  color: var(--gold);
  opacity: .6;
  letter-spacing: .1em;
}
.loc-city-line h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--ink);
}
.loc-rule {
  height: 1px;
  background: var(--gold);
  opacity: .2;
  margin-bottom: 20px;
}
.loc-map iframe {
  width: 100%;
  display: block;
  filter: grayscale(60%) sepia(10%);
  margin-bottom: 20px;
}
.loc-address {
  font-size: .88rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.loc-hours {
  font-size: .78rem;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: .06em;
  margin-bottom: 20px;
}

/* ══════════════════════════════
   VIBES
══════════════════════════════ */
.vibes { background: var(--ink); padding: 100px 0; overflow: hidden; }
.vibes-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); text-align: center; margin-bottom: 48px; }
.vibes-inner .section-eyebrow { color: var(--gold); }
.vibes-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--ivory);
  margin-bottom: 14px;
}
.ig-link {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  transition: opacity .2s;
}
.ig-link:hover { opacity: 1; }

/* Scrolling ticker */
.vibes-ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  padding: 18px 0;
  margin-bottom: 48px;
}
.vibes-ticker {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
  width: max-content;
}
.vibes-ticker:hover { animation-play-state: paused; }
.vibes-ticker span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(247,243,236,.35);
  flex-shrink: 0;
}
.vt-dot {
  font-size: .45rem !important;
  color: var(--gold) !important;
  opacity: .5 !important;
  font-style: normal !important;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Mosaic */
.vibes-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.vm-tile {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}
.vm-tall { min-height: 300px; grid-row: span 2; justify-content: flex-end; }

.vm-dark  { background: var(--ink-soft); }
.vm-gold  { background: var(--gold); }
.vm-light { background: rgba(247,243,236,.05); border: 1px solid rgba(201,168,76,.1); }

.vm-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(247,243,236,.6);
  line-height: 1.5;
}
.vm-label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.vm-gold .vm-label { color: var(--ink); }
.vm-sub {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(17,17,17,.7);
}
.vm-gold .vm-sub { color: rgba(17,17,17,.65); }
.vm-dark .vm-label { color: var(--gold); }
.vm-dark .vm-sub   { color: rgba(247,243,236,.5); }
.vm-light .vm-quote{ color: rgba(247,243,236,.4); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--white);
  padding: 80px var(--pad) 40px;
  border-top: 1px solid rgba(201,168,76,.15);
}
.footer-top { text-align: center; margin-bottom: 60px; }
.ft-logo-wrap { margin-bottom: 20px; }
.ft-logo { height: 72px; width: auto; margin: 0 auto; }
.ft-tagline {
  font-family: var(--script);
  font-size: 1.1rem;
  color: var(--stone);
  opacity: .7;
  margin-bottom: 28px;
}
.ft-gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: .35;
  margin: 0 auto;
}

.footer-cols {
  max-width: var(--max);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.fc h5 {
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.fc p {
  font-size: .82rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 6px;
}
.fc a { color: var(--stone); transition: color .2s; }
.fc a:hover { color: var(--gold); }
.fc-center { text-align: center; }
.fc-right  { text-align: right; }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(17,17,17,.07);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .72rem; font-weight: 300; color: var(--stone); opacity: .6; }
.footer-bottom a { color: var(--stone); opacity: .6; transition: opacity .2s; }
.footer-bottom a:hover { opacity: 1; color: var(--gold); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .seasonal-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner    { grid-template-columns: 1fr; gap: 48px; }
  .about-visual   { order: -1; }
  .av-caption-card{ bottom: -14px; right: -14px; }
  .loc-grid       { grid-template-columns: 1fr; gap: 40px; }
  .loc-divider    { display: none; }
  .vibes-mosaic   { grid-template-columns: 1fr 1fr; }
  .footer-cols    { grid-template-columns: 1fr 1fr; }
  .fc-right       { text-align: left; }
}

@media (max-width: 768px) {
  #navbar { padding: 18px 24px; }
  #navbar.scrolled { padding: 14px 24px; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.99);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 100;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1rem; }

  .nav-ig     { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

  .hero-logo  { height: 80px; }
  .hero-foot  { display: none; }
  .menu-item:hover { margin: 0; padding: 20px 0; }

  .vibes-mosaic   { grid-template-columns: 1fr; }
  .vm-tall        { grid-row: auto; min-height: 180px; }
  .footer-cols    { grid-template-columns: 1fr; }
  .fc-center, .fc-right { text-align: left; }
  .footer-bottom  { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-ctas  { flex-direction: column; align-items: center; }
}
