/* =========================================================
   Zuki's Caffetteria — Italian & Turkish café, Exeter
   Palette grounded in the room itself: garden-teal walls,
   gold signage, terracotta, parchment, and a poppy red.
   ========================================================= */

:root {
  --teal-900: #093F3C;
  --teal-800: #0C4A47;
  --teal-700: #115E59;
  --teal-500: #1E8A82;
  --teal-200: #BFE0DB;

  --gold:       #C2A14D;
  --gold-soft:  #DcC083;
  --gold-deep:  #9A7C34;

  --cream:   #F7F1E3;
  --cream-2: #FCF8EF;
  --parch:   #EFE6D2;

  --poppy:   #D4503A;

  --ink:     #16302D;
  --ink-soft:#3F5A56;
  --line:    rgba(22, 48, 45, 0.14);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 18px;
  --shadow: 0 24px 60px -28px rgba(9, 63, 60, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

::selection { background: var(--gold-soft); color: var(--ink); }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}
.eyebrow--center { text-align: center; }

.section-title {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.3rem);
  max-width: 18ch;
}
.section-title--center { margin-inline: auto; text-align: center; max-width: 20ch; }

.link-arrow {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--teal-700);
  border-bottom: 2px solid var(--gold-soft);
  padding-bottom: 2px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.link-arrow:hover { color: var(--poppy); border-color: var(--poppy); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--teal-700);
  --fg: var(--cream-2);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -16px rgba(9,63,60,0.7); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn--gold { --bg: var(--gold); --fg: #2A2110; }
.btn--gold:hover { background: var(--gold-soft); }

.btn--ghost {
  --bg: transparent; --fg: var(--cream-2);
  border-color: rgba(247, 241, 227, 0.5);
}
.btn--ghost:hover { background: rgba(247,241,227,0.1); }

.btn--small { padding: 0.55rem 1.05rem; font-size: 0.85rem; }
.btn__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--poppy);
  box-shadow: 0 0 0 0 rgba(212,80,58,0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,80,58,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(212,80,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,80,58,0); }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.7rem var(--gutter);
  background: rgba(247, 241, 227, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-right: auto; }
.nav__logo { height: 46px; width: auto; border-radius: 8px; box-shadow: 0 2px 10px -5px rgba(0, 0, 0, 0.3); }
.nav__logo.is-missing { display: none; }
.nav__brand-text { display: none; flex-direction: column; line-height: 1; }
.nav__logo.is-missing + .nav__brand-text { display: flex; }
.nav__brand-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-deep); font-weight: 600; }
.nav__brand-sub { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

.nav__links { display: flex; gap: 1.7rem; }
.nav__links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 0.2rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); transition: 0.3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: sticky;
  top: 61px;
  z-index: 49;
  display: flex;
  flex-direction: column;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem var(--gutter) 1.2rem;
}
.mobile-menu a { text-decoration: none; padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-weight: 500; font-size: 1.1rem; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu__call { color: var(--teal-700); font-weight: 700; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% -10%, var(--teal-700), var(--teal-900) 70%);
  color: var(--cream);
  text-align: center;
  padding: clamp(3.5rem, 3rem + 6vw, 7rem) var(--gutter) clamp(4rem, 3rem + 6vw, 7rem);
  overflow: hidden;
}
.hero__canopy {
  position: absolute;
  inset: 0 0 auto 0;
  height: 132px;
  background: url("images/vine.svg") repeat-x top center;
  background-size: auto 132px;
  opacity: 0.92;
  pointer-events: none;
  transform-origin: top center;
  animation: sway 9s ease-in-out infinite;
}
@keyframes sway {
  0%, 100% { transform: rotate(-0.4deg); }
  50% { transform: rotate(0.4deg); }
}

.hero__inner { max-width: 860px; margin: 0 auto; padding-top: 4.5rem; }
.hero__logo {
  height: clamp(118px, 11vw, 160px);
  width: auto;
  margin: 0 auto 1.8rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(194, 161, 77, 0.4);
  box-shadow: 0 22px 46px -20px rgba(0, 0, 0, 0.55);
}
.hero__logo.is-missing { display: none; }
.hero .eyebrow { color: var(--gold-soft); }

.hero__title {
  font-size: clamp(2.4rem, 1.4rem + 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero__title em { font-style: italic; color: var(--gold-soft); }

.hero__lede {
  max-width: 56ch;
  margin: 1.6rem auto 2.4rem;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: rgba(247, 241, 227, 0.86);
}

.hero__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.hero__status {
  margin-top: 1.8rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: rgba(247,241,227,0.8);
  min-height: 1.2em;
}
.hero__status .dot { color: var(--gold-soft); }
.hero__status .open { color: #8FE0A6; font-weight: 600; }
.hero__status .closed { color: var(--poppy); font-weight: 600; }

/* =========================================================
   STORY
   ========================================================= */
.story {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 3rem + 6vw, 7.5rem) var(--gutter);
}
.story__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 1rem + 5vw, 5rem);
  align-items: start;
}
.story__text p { color: var(--ink-soft); margin: 1.1rem 0 0; max-width: 46ch; }
.story__text .section-title { margin-bottom: 0.4rem; }

.story__features { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.story__features li {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.story__features li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__mark {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-700);
  color: var(--gold-soft);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.story__features h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.story__features p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* =========================================================
   MENU
   ========================================================= */
.menu {
  background: var(--teal-800);
  color: var(--cream);
  padding: clamp(4rem, 3rem + 6vw, 7rem) var(--gutter);
  position: relative;
}
.menu__head { max-width: 640px; margin: 0 auto 2.5rem; text-align: center; }
.menu .eyebrow { color: var(--gold-soft); }
.menu__note { color: rgba(247,241,227,0.7); margin: 0.8rem auto 0; max-width: 44ch; font-size: 0.95rem; }

.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: var(--maxw);
  margin: 0 auto 3rem;
}
.menu__tab {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(247,241,227,0.78);
  background: transparent;
  border: 1.5px solid rgba(247,241,227,0.22);
  border-radius: 100px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.menu__tab:hover { border-color: var(--gold-soft); color: var(--cream); }
.menu__tab.is-active { background: var(--gold); color: #2A2110; border-color: var(--gold); }
.menu__tab:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 2px; }

.menu__panel { display: none; max-width: var(--maxw); margin: 0 auto; }
.menu__panel.is-active { display: block; animation: fade-up 0.5s var(--ease) both; }

.menu__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 5vw, 5rem);
}
.menu__group-title {
  font-size: 1.6rem;
  color: var(--gold-soft);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(247,241,227,0.18);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.menu__group-title--spaced { margin-top: 2.5rem; }
.menu__group-hint { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,241,227,0.6); font-weight: 600; }

.menu__head-inline {
  max-width: var(--maxw); margin: 0 auto 1.5rem;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.menu__head-inline .menu__group-title { border: none; padding: 0; margin: 0; }

.menu__list { list-style: none; margin: 0 0 0.5rem; padding: 0; }
.menu__list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  column-gap: 0.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(247,241,227,0.12);
}
.mi__name { font-weight: 600; font-size: 1.05rem; }
.mi__dots { border-bottom: 1px dotted rgba(247,241,227,0.32); transform: translateY(-4px); }
.mi__price { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-soft); white-space: nowrap; }
.mi__desc {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: rgba(247,241,227,0.62);
  margin-top: 0.2rem;
  line-height: 1.45;
}

.menu__feature {
  margin-top: 1.6rem;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  border: 1px solid rgba(220,192,131,0.35);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.menu__feature h4 { font-size: 1.35rem; color: var(--gold-soft); }
.menu__feature p { margin: 0.3rem 0 0; color: rgba(247,241,227,0.75); font-size: 0.92rem; max-width: 30ch; }
.menu__feature-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  text-align: right;
  line-height: 1.2;
}
.menu__feature-price span { display: block; font-size: 1.05rem; color: var(--gold-soft); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 3rem + 6vw, 7rem) var(--gutter);
}
.gallery__head { margin-bottom: 2.5rem; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  box-shadow: var(--shadow);
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.1rem 0.9rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  background: linear-gradient(to top, rgba(9,63,60,0.85), transparent);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gallery__item:hover figcaption,
.gallery__item:focus-within figcaption { opacity: 1; transform: translateY(0); }

/* graceful state when a photo file isn't there yet */
.gallery__item.no-img img { display: none; }
.gallery__item.no-img::before {
  content: "✿";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: rgba(220,192,131,0.5);
}
.gallery__item.no-img::after {
  content: attr(data-caption);
  position: absolute; left: 0; right: 0; bottom: 1rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,241,227,0.7);
}

.gallery__more { text-align: center; margin-top: 2.2rem; color: var(--ink-soft); }
.gallery__more a { color: var(--teal-700); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--gold-soft); }
.gallery__more a:hover { color: var(--poppy); border-color: var(--poppy); }

/* =========================================================
   VISIT
   ========================================================= */
.visit {
  position: relative;
  background: var(--parch);
  padding: clamp(4rem, 3rem + 6vw, 7rem) var(--gutter) clamp(4rem, 3rem + 6vw, 6rem);
  overflow: hidden;
}
.visit__canopy {
  position: absolute;
  inset: 0 0 auto 0;
  height: 132px;
  background: url("images/vine.svg") repeat-x top center;
  background-size: auto 132px;
  opacity: 0.55;
  pointer-events: none;
}
.visit__grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: stretch;
  padding-top: 3rem;
}
.visit__block { margin-top: 2rem; }
.visit__block h3 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.visit__block p { margin: 0.2rem 0; color: var(--ink-soft); }
.visit__block a { color: var(--teal-700); text-decoration: none; font-weight: 600; }
.visit__block a:hover { color: var(--poppy); }

.hours { width: 100%; max-width: 360px; border-collapse: collapse; margin-top: 0.4rem; }
.hours th, .hours td { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.hours th { color: var(--ink); }
.hours td { text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--teal-700); font-weight: 700; }
.hours tr.is-today th::before {
  content: "● ";
  color: var(--poppy);
  font-size: 0.7em;
  vertical-align: middle;
}

.visit__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
  border: 4px solid var(--cream-2);
}
.visit__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--teal-900);
  color: var(--cream);
  padding: clamp(3rem, 2rem + 4vw, 4.5rem) var(--gutter);
  text-align: center;
}
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__logo { height: 84px; width: auto; margin: 0 auto 1.1rem; background: #fff; border-radius: 12px; border: 1px solid rgba(194, 161, 77, 0.3); box-shadow: 0 14px 32px -18px rgba(0, 0, 0, 0.6); }
.footer__logo.is-missing { display: none; }
.footer__tag { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 1.4rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; margin-bottom: 1.4rem; }
.footer__links a { color: rgba(247,241,227,0.85); text-decoration: none; font-weight: 500; }
.footer__links a:hover { color: var(--gold-soft); }
.footer__copy { font-size: 0.85rem; color: rgba(247,241,227,0.55); margin: 0; }

/* =========================================================
   ORDER & REVIEWS
   ========================================================= */
.order {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 3rem + 5vw, 6rem) var(--gutter);
}
.order__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.order .eyebrow { color: var(--gold-deep); }
.order__note { color: var(--ink-soft); max-width: 50ch; margin: 0.9rem auto 2.2rem; }
.order__btns { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.order-btn strong { font-weight: 800; }
.order-btn__icon { width: 20px; height: 20px; flex-shrink: 0; }
.order-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -16px rgba(0, 0, 0, 0.45); filter: brightness(1.04); }
.order-btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.order-btn--deliveroo { background: #00CCBC; color: #053C38; }
.order-btn--justeat { background: #FF8000; color: #ffffff; }
.order-btn--tripadvisor { background: #34E0A1; color: #083B29; }

/* =========================================================
   MAP EMBED (cookie-gated)
   ========================================================= */
.map-embed {
  position: relative;
  height: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
}
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.map-embed__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--cream);
}
.map-embed__placeholder svg { width: 34px; height: 34px; color: var(--gold-soft); }
.map-embed__placeholder p { margin: 0; max-width: 30ch; font-size: 0.92rem; color: rgba(247, 241, 227, 0.82); }
.map-embed__link { font-size: 0.85rem; color: var(--gold-soft); text-decoration: none; border-bottom: 1px solid rgba(220, 192, 131, 0.5); }
.map-embed__link:hover { color: var(--cream); }
.map-embed.is-loaded .map-embed__placeholder { display: none; }

/* =========================================================
   VEGASOFT CREDIT
   ========================================================= */
.vegasoft {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: var(--maxw);
  margin: 2.4rem auto 0;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(247, 241, 227, 0.14);
  text-decoration: none;
  color: rgba(247, 241, 227, 0.7);
  transition: color 0.25s var(--ease);
}
.vegasoft__logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 9px;
  border: 1px solid rgba(139, 164, 244, 0.28);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.vegasoft:hover { color: rgba(247, 241, 227, 0.96); }
.vegasoft:hover .vegasoft__logo { transform: scale(1.08); box-shadow: 0 0 16px rgba(139, 164, 244, 0.6); }
.vegasoft__text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.vegasoft__line { font-size: 0.88rem; }
.vegasoft__line strong { color: #B9C8F7; font-weight: 700; }
.vegasoft__sub { font-size: 0.72rem; letter-spacing: 0.06em; color: rgba(185, 200, 247, 0.72); }
.vegasoft:focus-visible { outline: 3px solid #8BA4F4; outline-offset: 4px; border-radius: 8px; }

/* =========================================================
   COOKIE CONSENT
   ========================================================= */
.cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: var(--teal-900);
  color: var(--cream);
  border-top: 1px solid rgba(220, 192, 131, 0.3);
  box-shadow: 0 -12px 40px -20px rgba(0, 0, 0, 0.65);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.cookie.is-visible { transform: translateY(0); }
.cookie__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}
.cookie__text { margin: 0; font-size: 0.9rem; color: rgba(247, 241, 227, 0.85); max-width: 62ch; }
.cookie__text a { color: var(--gold-soft); }
.cookie__actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.btn--ghost-dark { background: transparent; color: var(--cream-2); border-color: rgba(247, 241, 227, 0.4); }
.btn--ghost-dark:hover { background: rgba(247, 241, 227, 0.1); }

/* =========================================================
   LEGAL PAGE (privacy.html)
   ========================================================= */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 2rem + 4vw, 5rem) var(--gutter) clamp(3.5rem, 3rem + 4vw, 6rem);
}
.legal__back { display: inline-block; margin-bottom: 1.5rem; text-decoration: none; color: var(--teal-700); font-weight: 600; }
.legal__back:hover { color: var(--poppy); }
.legal h1 { font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem); margin-bottom: 0.4rem; }
.legal__updated { color: var(--ink-soft); font-size: 0.9rem; margin: 0 0 2.4rem; }
.legal h2 {
  font-size: 1.45rem;
  color: var(--teal-700);
  margin: 2.4rem 0 0.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal p, .legal li { color: var(--ink-soft); }
.legal p { margin: 0.7rem 0; }
.legal ul { margin: 0.7rem 0; padding-left: 1.2rem; }
.legal li { margin: 0.4rem 0; }
.legal a { color: var(--teal-700); font-weight: 600; }
.legal a:hover { color: var(--poppy); }
.legal strong { color: var(--ink); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav .btn--small { display: none; }
  .nav__toggle { display: flex; }
  .story__grid { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 320px; }
}

@media (max-width: 680px) {
  .menu__cols { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .menu__feature { flex-direction: column; align-items: flex-start; }
  .menu__feature-price { text-align: left; }
  .order-btn { width: 100%; justify-content: center; }
  .cookie__inner { flex-direction: column; align-items: flex-start; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; justify-content: center; }
}

@media (min-width: 921px) {
  .mobile-menu { display: none !important; }
}

/* =========================================================
   MOTION / ACCESSIBILITY
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

a:focus-visible, button:focus-visible, .menu__tab:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
