:root {
  --bg: #111111;
  --bg-soft: #181818;
  --cream: #f5efe4;
  --cream-2: #fff8ed;
  --cream-ink: #1f1d19;
  --panel: #202020;
  --ink: #f6f0e8;
  --muted: rgba(246, 240, 232, .72);
  --muted-2: rgba(246, 240, 232, .54);
  --line: rgba(246, 240, 232, .16);
  --gold: #d8b067;
  --accent: #b86f5e;
  --terracotta: #c94c35;
  --green: #6f8f55;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Assistant", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--ink);
  background: linear-gradient(to bottom, rgba(0, 0, 0, .68), rgba(0, 0, 0, 0));
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}

.site-header.scrolled {
  padding-block: 12px;
  background: rgba(17, 17, 17, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  min-width: 140px;
}

.brand-script {
  direction: ltr;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-he {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  color: rgba(246, 240, 232, .86);
}

.main-nav a:hover {
  color: var(--white);
}

.nav-cta,
.btn,
.sticky-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 2px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.nav-cta {
  min-width: 104px;
  padding: 10px 18px;
  color: var(--ink);
  border-color: var(--gold);
  background: rgba(216, 176, 103, .16);
}

.btn {
  padding: 12px 24px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #17120a;
  background: var(--gold);
  border-color: var(--gold);
}

.btn-secondary {
  color: var(--ink);
  border-color: rgba(246, 240, 232, .5);
  background: rgba(246, 240, 232, .06);
}

.btn-secondary.dark {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ink);
  text-align: center;
}

.hero-img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
}

.hero-overlay {
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, .18), rgba(0, 0, 0, .72) 68%),
    linear-gradient(to bottom, rgba(0, 0, 0, .54), rgba(17, 17, 17, .78));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 36px));
  padding-top: 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow::before,
.eyebrow::after,
.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: .72;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-family: "Assistant", Arial, sans-serif;
  font-size: clamp(58px, 10vw, 128px);
  font-weight: 700;
}

h2 {
  font-family: "Assistant", Arial, sans-serif;
  font-size: clamp(40px, 6.2vw, 82px);
  font-weight: 700;
}

.hero-subtitle {
  margin: 18px 0 14px;
  font-size: clamp(24px, 3.3vw, 40px);
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-strip {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: rgba(17, 17, 17, .82);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.hero-strip span {
  padding: 18px 10px;
  text-align: center;
  font-weight: 800;
  color: rgba(246, 240, 232, .86);
  border-inline-start: 1px solid var(--line);
}

.section-pad {
  padding: clamp(84px, 10vw, 144px) 0;
}

.split,
.feature-wrap,
.location-layout,
.contact-layout,
.notes-grid,
.vibe-layout {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.intro,
.vibe,
.gallery,
.menu-intro,
.menu-categories {
  background: var(--bg);
}

.intro .split,
.section-head,
.menu-intro .split {
  text-align: center;
}

.intro .split,
.menu-intro .split {
  grid-template-columns: 1fr;
  max-width: 850px;
}

.intro-copy p,
.section-head p,
.food-content p,
.vibe-text p,
.feature-list li,
.note-list p,
.location p,
.contact-copy p,
.menu-hero p,
.menu-intro p,
.note-panel p,
.menu-card p {
  font-size: 18px;
  color: var(--muted);
}

.event-section {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 44px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.event-grid article {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  background: #171717;
}

.event-grid article:hover {
  background: #232323;
}

.food-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: #0d0d0d;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.food-image img {
  height: 100%;
  object-fit: cover;
}

.food-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(42px, 7vw, 96px);
}

.food-content p {
  max-width: 560px;
}

.vibe-layout {
  grid-template-columns: .9fr 1.1fr;
}

.vibe-text {
  text-align: center;
}

.vibe-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vibe-collage img {
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vibe-collage img:first-child {
  grid-row: span 2;
  height: 532px;
}

.features {
  background: #0b0b0b;
  color: var(--ink);
  border-block: 1px solid var(--line);
}

.feature-media img {
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-list {
  text-align: center;
}

.feature-list ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  color: var(--muted);
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 240, 232, .035);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(.92);
}

.gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img:nth-child(2) {
  grid-column: span 2;
}

.notes {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.notes-grid {
  text-align: center;
}

.note-list {
  display: grid;
  gap: 12px;
}

.note-list p,
.note-panel {
  margin: 0;
  padding: 20px 22px;
  background: rgba(246, 240, 232, .035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.location {
  background: var(--bg);
}

.location-layout {
  text-align: center;
}

.map-frame {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  filter: grayscale(.2) contrast(.96) brightness(.86);
}

.location-media {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 14px;
}

.location-media img {
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.contact {
  background:
    linear-gradient(rgba(17, 17, 17, .9), rgba(17, 17, 17, .92)),
    url("assets/images/web/aerial-map.jpg") center / cover;
}

.contact-layout {
  align-items: start;
}

.contact-copy {
  text-align: center;
}

.whatsapp-line {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 900;
  color: var(--gold);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(17, 17, 17, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: rgba(246, 240, 232, .92);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 10px 12px;
  font: inherit;
  background: rgba(246, 240, 232, .08);
  color: var(--ink);
}

.lead-form select option {
  color: #171717;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .full,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  padding: 38px 0;
  background: #080808;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-layout p {
  margin: 0;
  color: var(--muted-2);
}

.sticky-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 12px 18px;
  color: #17120a;
  background: var(--gold);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
}

.menu-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ink);
  text-align: center;
}

.menu-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.menu-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, .2), rgba(0, 0, 0, .78)),
    linear-gradient(to top, rgba(17, 17, 17, .8), rgba(0, 0, 0, .2));
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  padding-top: 60px;
}

.menu-hero-content p {
  color: var(--muted);
}

.menu-grid {
  display: grid;
  gap: 18px;
}

.menu-card {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 28px;
  align-items: center;
  padding: 18px;
  background: rgba(246, 240, 232, .035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-card img {
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
}

.menu-card h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.note-panel {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.note-panel .hero-actions {
  margin-top: 22px;
}

body.js-enabled .will-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease var(--reveal-delay, 0ms), transform .75s ease var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.js-enabled .will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  body.js-enabled .will-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .site-header {
    padding: 12px 18px;
  }

  .hero-content {
    padding-top: 74px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .feature-wrap,
  .location-layout,
  .contact-layout,
  .notes-grid,
  .vibe-layout,
  .food-story {
    grid-template-columns: 1fr;
  }

  .food-image {
    min-height: 380px;
  }

  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(2) {
    grid-column: span 2;
  }

  .menu-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand-script {
    font-size: 28px;
  }

  .brand-he {
    font-size: 12px;
  }

  .nav-cta {
    min-width: 86px;
    padding-inline: 12px;
  }

  .hero {
    min-height: 92vh;
  }

  h1 {
    font-size: clamp(36px, 10.5vw, 44px);
  }

  .hero-subtitle {
    max-width: 320px;
    margin-inline: auto;
    font-size: 21px;
    line-height: 1.25;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 16px;
  }

  .eyebrow::before,
  .eyebrow::after,
  .section-kicker::before,
  .section-kicker::after {
    width: 24px;
  }

  .hero-actions,
  .note-panel .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .note-panel .btn {
    width: 100%;
  }

  .event-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .event-grid article {
    min-height: 90px;
  }

  .vibe-collage {
    grid-template-columns: 1fr;
  }

  .vibe-collage img,
  .vibe-collage img:first-child,
  .feature-media img {
    height: 320px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-grid img {
    height: 260px;
    margin-bottom: 12px;
  }

  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

/* Nuni boutique summer direction */
.site-header {
  padding-block: 12px;
}

.brand {
  position: relative;
}

.nav-logo {
  display: block;
  width: 118px;
  height: 58px;
  object-fit: contain;
  pointer-events: none;
}

.main-nav {
  gap: 0;
}

.main-nav a {
  position: relative;
  padding: 0 22px;
}

.main-nav a:not(:last-child)::after {
  content: "×";
  position: absolute;
  left: -3px;
  top: 50%;
  color: var(--gold);
  transform: translateY(-50%);
}

.hero {
  min-height: 100vh;
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  padding-top: 76px;
}

.hero-logo {
  display: block;
  width: min(260px, 52vw);
  height: min(160px, 32vw);
  margin: 0 auto 10px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .28));
}

.hero-lead {
  position: absolute;
  z-index: 4;
  left: clamp(18px, 4vw, 58px);
  bottom: 122px;
  width: min(300px, calc(100% - 36px));
  padding: 20px 20px 18px;
  text-align: right;
  background: rgba(32, 32, 32, .92);
  border: 1px solid rgba(216, 176, 103, .35);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-lead h2 {
  margin: 0;
  text-align: center;
  font-size: 30px;
}

.mini-separator {
  width: 160px;
  height: 18px;
  margin: 8px auto 16px;
  background:
    linear-gradient(var(--ink), var(--ink)) right center / 62px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) left center / 62px 2px no-repeat;
  position: relative;
}

.mini-separator::after {
  content: "• • •";
  position: absolute;
  inset: 0;
  color: var(--gold);
  text-align: center;
  line-height: 18px;
  letter-spacing: 4px;
}

.hero-lead label {
  display: grid;
  gap: 4px;
  color: var(--ink);
  font-weight: 700;
  min-width: 0;
}

.hero-lead label span {
  display: block;
  padding-inline: 4px;
}

.hero-lead input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 8px 2px;
  color: var(--ink);
  font: inherit;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--gold);
  outline: 0;
}

.hero-lead button {
  display: block;
  min-width: 158px;
  min-height: 46px;
  margin: 18px auto 0;
  font: inherit;
  font-weight: 800;
  color: var(--cream-ink);
  background: var(--white);
  border: 0;
  cursor: pointer;
}

.hero-lead .form-status {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

.intro,
.gallery,
.notes,
.menu-intro,
.menu-categories {
  color: var(--cream-ink);
  background: var(--cream);
}

.vibe {
  color: var(--cream-ink);
  background: var(--cream-2);
}

.intro-split {
  grid-template-columns: 1fr 1fr;
}

.intro .split {
  max-width: 1120px;
  text-align: center;
}

.intro-text {
  text-align: center;
}

.intro-visual {
  height: 520px;
}

.intro-visual img,
.section-image-row img,
.note-image img,
.contact-image {
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro .intro-text p,
.vibe-text p,
.gallery .section-head p,
.notes .note-list p,
.menu-intro p,
.menu-card p {
  color: rgba(31, 29, 25, .74);
}

.outline-link {
  display: inline-flex;
  justify-content: center;
  min-width: 170px;
  margin-top: 16px;
  padding: 12px 28px;
  color: var(--cream-ink);
  font-weight: 900;
  border: 1px solid var(--gold);
}

.section-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.section-image-row img {
  height: 340px;
}

.notes-grid {
  grid-template-columns: .9fr 1fr 1.05fr;
}

.note-image {
  height: 440px;
}

.note-list p,
.note-panel {
  color: rgba(31, 29, 25, .74);
  background: var(--cream-2);
  border-color: rgba(31, 29, 25, .14);
}

.contact-image {
  height: 260px;
  margin-top: 26px;
}

@media (max-width: 1100px) {
  .hero {
    display: block;
    min-height: 0;
    padding-top: 120px;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 0;
  }

  .hero-lead {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 34px auto 84px;
  }

  .hero-strip {
    position: relative;
  }
}

@media (max-width: 920px) {
  .intro-split,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .intro-visual,
  .note-image {
    height: 360px;
  }
}

@media (max-width: 620px) {
  .nav-logo {
    width: 96px;
    height: 48px;
  }

  .hero-logo {
    width: 190px;
    height: 116px;
  }

  .hero-lead {
    width: calc(100vw - 56px);
    max-width: 330px;
    margin-top: 24px;
  }

  .section-image-row {
    grid-template-columns: 1fr;
  }

  .location-media {
    grid-template-columns: 1fr;
  }

  .section-image-row img {
    height: 260px;
  }
}

/* Shenkin-inspired refinement */
.nav-logo {
  width: 126px;
  height: 58px;
  object-fit: contain;
  filter: none;
}

.hero-logo {
  width: min(230px, 48vw);
  height: min(128px, 28vw);
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .42));
}

.site-header {
  background: rgba(17, 17, 17, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header.scrolled {
  background: rgba(17, 17, 17, .94);
}

.nav-cta {
  min-width: 136px;
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}

h1,
h2,
.hero-subtitle,
.event-grid article,
.tile span,
.lead-form label,
.hero-lead h2 {
  font-family: "Assistant", Arial, sans-serif;
  font-weight: 900;
}

h1 {
  font-size: clamp(58px, 8.5vw, 112px);
}

h2 {
  font-size: clamp(38px, 5vw, 58px);
}

.section-kicker,
.eyebrow {
  font-weight: 900;
}

.hero {
  min-height: 94vh;
}

.intro {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #171717;
}

.intro::before {
  content: "T";
  position: absolute;
  inset-inline-start: -20px;
  top: -80px;
  color: rgba(255, 255, 255, .035);
  font-size: clamp(260px, 34vw, 520px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.intro-split {
  grid-template-columns: minmax(420px, 1fr) minmax(0, .9fr);
  gap: clamp(48px, 8vw, 118px);
}

.intro .split {
  text-align: center;
}

.intro-text {
  max-width: 520px;
  justify-self: center;
}

.intro .intro-text p {
  color: rgba(246, 240, 232, .82);
}

.intro-visual {
  height: 540px;
  order: 0;
  box-shadow: 24px 24px 0 rgba(255, 255, 255, .045);
}

.intro-visual img {
  border-radius: 0;
}

.outline-link {
  min-width: 178px;
  border-color: var(--gold);
  color: var(--ink);
  background: transparent;
}

.event-section {
  background: #151515;
}

.event-grid,
.section-image-row {
  display: none;
}

.event-tetris {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 118px;
  gap: 10px;
  margin-top: 50px;
}

.tile {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #181818;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
}

.tile-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 22px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 191, 71, .11), transparent 48%),
    #171717;
}

.tile span {
  display: block;
  font-size: clamp(22px, 2vw, 34px);
  color: var(--ink);
  line-height: 1.05;
}

.tile small {
  max-width: 220px;
  color: var(--muted);
  font-size: 15px;
}

.tile.accent {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .32), transparent 38%),
    var(--gold);
}

.tile.accent span {
  color: #17120a;
}

.tile-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, .72));
  pointer-events: none;
}

.tile-photo::after {
  content: attr(data-caption);
  position: absolute;
  inset-inline: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

.tile-photo img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform .7s ease;
}

.tile-photo:hover img {
  transform: scale(1.05);
}

.tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

.tile-wide {
  grid-column: span 3;
  grid-row: span 2;
}

.tile-tall {
  grid-row: span 2;
  grid-column: span 2;
}

.event-tetris .tile:nth-child(3),
.event-tetris .tile:nth-child(5),
.event-tetris .tile:nth-child(7),
.event-tetris .tile:nth-child(8),
.event-tetris .tile:nth-child(10) {
  grid-column: span 2;
}

.event-tetris .tile:nth-child(4),
.event-tetris .tile:nth-child(9) {
  grid-column: span 2;
  grid-row: span 2;
}

.food-story {
  background: #111;
}

.vibe {
  background: #f5efe4;
}

.vibe-layout {
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
}

.vibe-collage {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
}

.vibe-collage img {
  height: 100%;
  border-radius: 0;
}

.vibe-collage img:first-child {
  grid-row: span 2;
  height: 100%;
}

.features {
  background: #171717;
}

.feature-wrap {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
}

.feature-media {
  order: -1;
}

.gallery {
  background: #f7f1e7;
}

.gallery-grid {
  grid-auto-rows: 250px;
}

.gallery-grid img {
  border-radius: 0;
}

.notes {
  background: #151515;
  color: var(--ink);
}

.notes .note-list p {
  color: var(--muted);
  background: rgba(255, 255, 255, .035);
  border-color: rgba(255, 255, 255, .14);
}

.location {
  background: #f5efe4;
  color: var(--cream-ink);
}

.location p {
  color: rgba(31, 29, 25, .72);
}

.contact {
  background:
    linear-gradient(rgba(17, 17, 17, .82), rgba(17, 17, 17, .9)),
    url("assets/images/web/bar-yard.jpg") center / cover;
}

.contact-image {
  display: none;
}

.sticky-whatsapp {
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
}

.sticky-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.lead-form button {
  font-family: "Assistant", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

@media (max-width: 920px) {
  .intro-split,
  .vibe-layout,
  .feature-wrap {
    grid-template-columns: 1fr;
  }

  .intro-visual,
  .feature-media {
    order: 0;
  }

  .event-tetris {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .tile-large,
  .tile-wide,
  .tile-tall,
  .event-tetris .tile:nth-child(3),
  .event-tetris .tile:nth-child(4),
  .event-tetris .tile:nth-child(5),
  .event-tetris .tile:nth-child(7),
  .event-tetris .tile:nth-child(8),
  .event-tetris .tile:nth-child(9),
  .event-tetris .tile:nth-child(10) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(42px, 11vw, 52px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .event-tetris {
    grid-template-columns: 1fr;
    grid-auto-rows: 138px;
  }

  .tile-large,
  .tile-wide,
  .tile-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .intro-visual {
    height: 330px;
  }
}

/* Larger desktop navigation, closer to the Shenkin reference */
@media (min-width: 921px) {
  .main-nav a {
    padding-inline: 28px;
    font-family: "Assistant", Arial, sans-serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
  }

  .main-nav a:not(:last-child)::after {
    left: -5px;
    font-size: 18px;
  }
}

/* Client refinement pass */
.hero {
  min-height: 100vh;
}

.hero .eyebrow {
  font-size: clamp(16px, 1.35vw, 21px);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(30px, 3.8vw, 48px);
}

.hero-copy {
  max-width: 760px;
}

.hero-strip {
  display: none;
}

.hero-lead {
  width: min(300px, calc(100% - 26px));
  padding: 24px 22px 28px;
  border-color: rgba(226, 181, 100, .55);
  background: rgba(25, 25, 25, .94);
}

.hero-lead h2 {
  margin-bottom: 8px;
}

.hero-lead label {
  gap: 12px;
  padding-top: 10px;
}

.hero-lead label span {
  display: block;
  text-align: right;
  padding-inline: 4px;
  color: rgba(246, 240, 232, .94);
}

.hero-lead input {
  min-height: 42px;
  padding: 8px 4px;
  border-bottom-width: 2px;
}

.hero-lead button {
  min-height: 48px;
  margin-top: 6px;
  color: #14110d;
  background: linear-gradient(135deg, #f6f0e8, #e2b564);
  border: 1px solid rgba(226, 181, 100, .8);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
  font-size: 18px;
  font-weight: 900;
}

.intro.section-pad {
  padding-block: clamp(58px, 7vw, 96px);
}

.intro-split {
  align-items: start;
}

.intro-visual {
  height: clamp(270px, 27vw, 390px);
  max-width: 900px;
  justify-self: center;
}

.intro-visual img {
  object-fit: cover;
  object-position: center 22%;
}

.event-tetris-clean {
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 10px;
}

.event-tetris-clean .tile {
  border-color: rgba(246, 240, 232, .18);
  box-shadow: none;
}

.event-tetris-clean .tile-text {
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
}

.event-tetris-clean .tile-dark {
  background: #171717;
}

.event-tetris-clean .tile-cream {
  background: #f2eadc;
}

.event-tetris-clean .tile-cream span {
  color: #171717;
}

.event-tetris-clean .tile-green {
  background: #789468;
}

.event-tetris-clean .tile-green span {
  color: #fffaf2;
}

.event-tetris-clean .tile-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.event-tetris-clean .tile-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.event-tetris-clean .tile-large,
.event-tetris-clean .tile:nth-child(3),
.event-tetris-clean .tile:nth-child(4),
.event-tetris-clean .tile:nth-child(5),
.event-tetris-clean .tile:nth-child(7),
.event-tetris-clean .tile:nth-child(8),
.event-tetris-clean .tile:nth-child(9),
.event-tetris-clean .tile:nth-child(10) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery {
  background: #f7f1e7;
  color: #171717;
}

.gallery .section-head p {
  color: rgba(31, 29, 25, .72);
}

.gallery-slider {
  position: relative;
  margin-top: 34px;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 42vw);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  padding: 0 0 18px;
}

.gallery-track img {
  height: clamp(340px, 44vw, 560px);
  object-fit: cover;
  scroll-snap-align: center;
  border-radius: 0;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(23, 23, 23, .18);
  color: #171717;
  background: rgba(246, 240, 232, .9);
  font-size: 34px;
  font-weight: 900;
}

.gallery-next {
  right: 12px;
}

.gallery-prev {
  left: 12px;
}

.gallery-link {
  margin: 22px auto 0;
  color: #171717;
}

.notes {
  display: none;
}

.location-cinematic {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #101010;
  color: #fff;
}

.location-hero-image {
  position: absolute;
  inset: 0;
}

.location-hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05) brightness(.66);
}

.location-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.76));
}

.location-cinematic .container {
  position: relative;
  z-index: 1;
}

.location-cinematic .location-layout {
  grid-template-columns: minmax(0, .78fr) minmax(360px, .72fr);
}

.location-cinematic .location-media > img {
  display: none;
}

.location-cinematic .map-frame {
  min-height: 360px;
}

.location-cinematic .map-frame iframe {
  height: 360px;
}

.contact {
  background:
    linear-gradient(rgba(17, 17, 17, .72), rgba(17, 17, 17, .88)),
    url("assets/images/web/salad-fresh.jpg") center / cover;
}

.gallery-hero img {
  object-position: center 38%;
}

.gallery-full {
  background: #111;
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-full-grid img {
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 20px 54px rgba(0, 0, 0, .24);
}

.gallery-full-grid img:nth-child(1),
.gallery-full-grid img:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-full-grid img:nth-child(3),
.gallery-full-grid img:nth-child(8) {
  grid-column: span 2;
}

@media (max-width: 920px) {
  .event-tetris-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-tetris-clean .tile-wide,
  .event-tetris-clean .tile-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .location-cinematic .location-layout {
    grid-template-columns: 1fr;
  }

  .gallery-full-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }
}

@media (max-width: 620px) {
  .hero-lead {
    position: relative;
    inset: auto;
    margin: 18px auto 0;
  }

  .gallery-track {
    grid-auto-columns: 82vw;
  }

  .gallery-arrow {
    display: none;
  }

  .gallery-full-grid {
    grid-template-columns: 1fr;
  }

  .gallery-full-grid img,
  .gallery-full-grid img:nth-child(1),
  .gallery-full-grid img:nth-child(3),
  .gallery-full-grid img:nth-child(6),
  .gallery-full-grid img:nth-child(8) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Latest layout refinement */
.main-nav a:not(:last-child)::after {
  content: "•";
  left: -4px;
  font-size: 19px;
}

.intro {
  color: #171717;
  background: #f5efe4;
}

.intro::before {
  display: none;
}

.intro.section-pad {
  padding-block: clamp(42px, 5vw, 72px);
}

.intro-split {
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
}

.intro-visual {
  width: min(1160px, 94vw);
  max-width: none;
  height: clamp(170px, 18vw, 260px);
  justify-self: center;
  box-shadow: 16px 16px 0 rgba(23, 23, 23, .055);
}

.intro-visual img {
  object-fit: cover;
  object-position: center 48%;
}

.intro .intro-text p,
.intro-copy p {
  color: rgba(31, 29, 25, .72);
}

.intro .section-kicker,
.intro h2 {
  color: #171717;
}

.gallery-track {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-prev,
.gallery-next {
  top: 46%;
}

.gallery-prev {
  left: 12px;
  right: auto;
}

.gallery-next {
  right: 12px;
  left: auto;
}

.location-cinematic {
  min-height: auto;
  padding-block: clamp(46px, 6vw, 78px);
}

.location-cinematic::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.48) 45%, rgba(0,0,0,.78)),
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.7));
}

.location-cinematic .location-layout {
  grid-template-columns: minmax(320px, .58fr) minmax(520px, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.location-cinematic .location-layout > div:first-child {
  padding: 28px;
  background: rgba(12, 12, 12, .72);
  border: 1px solid rgba(246, 240, 232, .18);
  backdrop-filter: blur(10px);
}

.location-cinematic h2,
.location-cinematic p,
.location-cinematic .section-kicker {
  color: #fffaf2;
}

.location-cinematic p {
  color: rgba(255, 250, 242, .86);
}

.location-address {
  margin: 18px 0 8px;
  color: var(--gold) !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  font-weight: 900;
}

.location-cinematic .map-frame {
  min-height: clamp(360px, 45vw, 560px);
  border-color: rgba(246, 240, 232, .28);
}

.location-cinematic .map-frame iframe {
  height: clamp(360px, 45vw, 560px);
}

@media (max-width: 920px) {
  .location-cinematic .location-layout {
    grid-template-columns: 1fr;
  }

  .location-cinematic .location-layout > div:first-child {
    padding: 22px;
  }
}

/* Visual QA fixes */
.section-kicker {
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
}

.intro h2,
.event-section h2,
.food-story h2,
.vibe h2,
.features h2,
.gallery h2,
.location h2,
.contact h2 {
  font-family: "Assistant", Arial, sans-serif;
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 900;
  line-height: 1.08;
}

.intro .intro-text,
.section-head,
.vibe-text,
.feature-list,
.location-cinematic .location-layout > div:first-child,
.contact-copy {
  text-align: center;
}

.intro .container {
  width: 100%;
  max-width: none;
}

.intro-visual {
  width: min(1720px, calc(100vw - 40px));
  height: clamp(250px, 24vw, 360px);
}

.intro-visual img {
  object-position: center 50%;
}

.intro-text {
  max-width: 760px;
}

.intro .outline-link {
  color: #fffaf2;
  background: #171717;
  border-color: #171717;
}

.vibe-layout {
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
}

.vibe-collage {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
}

.vibe-collage img,
.vibe-collage img:first-child {
  height: clamp(260px, 25vw, 360px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 20px 52px rgba(0, 0, 0, .18);
}

.gallery-prev {
  left: 12px;
  right: auto;
}

.gallery-next {
  right: 12px;
  left: auto;
}

.location-cinematic {
  padding-block: clamp(38px, 5vw, 66px);
}

.location-cinematic .location-layout {
  width: min(1320px, calc(100vw - 72px));
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, .72fr);
  gap: clamp(24px, 3.5vw, 52px);
  direction: ltr;
  align-items: center;
}

.location-cinematic .location-layout > div {
  direction: rtl;
}

.location-cinematic .location-layout > div:first-child {
  grid-column: 2;
  grid-row: 1;
  padding: clamp(24px, 3.4vw, 42px);
}

.location-media {
  grid-column: 1;
  grid-row: 1;
  display: block;
}

.location-cinematic .map-frame {
  min-height: clamp(390px, 36vw, 520px);
  width: 100%;
}

.location-cinematic .map-frame iframe {
  height: clamp(390px, 36vw, 520px);
}

@media (max-width: 920px) {
  .vibe-layout,
  .location-cinematic .location-layout {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 720px);
    direction: rtl;
  }

  .location-cinematic .location-layout > div:first-child,
  .location-media {
    grid-column: auto;
  }

  .vibe-collage {
    grid-template-columns: 1fr;
  }

  .vibe-collage img,
  .vibe-collage img:first-child {
    width: 100%;
    height: 320px;
    aspect-ratio: auto;
  }
}

#galleryNext {
  left: 12px !important;
  right: auto !important;
  direction: ltr;
  unicode-bidi: isolate;
}

#galleryPrev {
  right: 12px !important;
  left: auto !important;
  direction: ltr;
  unicode-bidi: isolate;
}

/* Final visual alignment pass */
.section-kicker {
  gap: 14px;
  color: var(--gold);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 900;
  line-height: 1;
}

.section-kicker::before,
.section-kicker::after {
  width: 42px;
  background: currentColor;
  opacity: .72;
}

.intro h2,
.event-section h2,
.food-story h2,
.vibe h2,
.features h2,
.gallery h2,
.location h2,
.contact h2 {
  font-family: "Assistant", Arial, sans-serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.intro.section-pad {
  padding-top: clamp(34px, 4vw, 58px);
}

.intro-visual {
  width: 100vw;
  max-width: none;
  height: clamp(205px, 18vw, 285px);
  margin-inline: calc(50% - 50vw);
  box-shadow: none;
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-position: center 48%;
}

.intro-text {
  margin-top: clamp(34px, 4.5vw, 64px);
}

.intro .outline-link {
  color: #fffaf2 !important;
  background: #171717;
  border-color: #171717;
  box-shadow: 0 16px 34px rgba(23, 23, 23, .16);
}

.intro .outline-link:hover {
  color: #171717 !important;
  background: var(--gold);
  border-color: var(--gold);
}

.vibe-layout {
  display: block;
}

.vibe-text {
  max-width: 760px;
  margin: 0 auto clamp(30px, 4vw, 54px);
  text-align: center;
}

.vibe-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 22px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.vibe-collage img,
.vibe-collage img:first-child {
  width: 100%;
  height: clamp(255px, 24vw, 340px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .16);
}

.location-cinematic .location-layout {
  width: min(1480px, calc(100vw - 44px));
  grid-template-columns: minmax(0, 2.1fr) minmax(310px, .68fr);
  gap: clamp(24px, 3vw, 48px);
}

.location-cinematic .map-frame,
.location-cinematic .map-frame iframe {
  height: clamp(410px, 40vw, 570px);
}

.location-cinematic .location-layout > div:first-child {
  background: rgba(12, 12, 12, .82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

@media (max-width: 920px) {
  .intro-visual {
    width: 100%;
    margin-inline: 0;
    height: 220px;
  }

  .vibe-layout,
  .location-cinematic .location-layout {
    grid-template-columns: 1fr;
  }

  .vibe-collage {
    grid-template-columns: 1fr;
  }

  .vibe-collage img,
  .vibe-collage img:first-child {
    height: 270px;
  }
}

/* Client polish pass: taller media, cleaner buttons, stronger readability */
.btn,
.nav-cta,
.outline-link,
.hero-lead button {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: currentColor;
  box-shadow: none;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}

.hero .btn,
.food-story .btn,
.contact .btn,
.menu-hero .btn,
.menu-note .btn,
.nav-cta,
.hero-lead button {
  color: #fffaf2 !important;
}

.intro .outline-link,
.gallery .outline-link,
.location .btn,
.menu-page .menu-list-section .btn {
  color: #171717 !important;
}

.btn:hover,
.nav-cta:hover,
.outline-link:hover,
.hero-lead button:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #171717 !important;
  transform: translateY(-2px);
}

.vibe-collage img,
.vibe-collage img:first-child {
  height: clamp(340px, 31vw, 460px);
  object-position: center;
}

.event-tetris-clean .tile {
  border-color: rgba(255, 250, 242, .2);
}

.event-tetris-clean .tile-text span,
.event-tetris-clean .tile-text small,
.event-tetris-clean .tile::after {
  text-shadow: none;
}

.event-tetris-clean .tile-dark {
  background: linear-gradient(135deg, #171717, #25231f);
}

.event-tetris-clean .tile-dark span,
.event-tetris-clean .tile-dark small {
  color: #fffaf2 !important;
}

.event-tetris-clean .tile-cream {
  background: #f2eadc;
}

.event-tetris-clean .tile-cream span,
.event-tetris-clean .tile-cream small {
  color: #171717 !important;
}

.event-tetris-clean .tile-green {
  background: #789468;
}

.event-tetris-clean .tile-green span,
.event-tetris-clean .tile-green small {
  color: #fffaf2 !important;
}

.event-tetris-clean .tile.accent {
  background: linear-gradient(135deg, #d8b067, #f1d28c);
}

.event-tetris-clean .tile.accent span,
.event-tetris-clean .tile.accent small {
  color: #171717 !important;
}

.event-tetris-clean .tile-photo::before {
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .62));
}

.feature-card-layout {
  text-align: center;
}

.feature-cards {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px !important;
  margin-top: clamp(24px, 3vw, 36px) !important;
  padding: 0 !important;
}

.feature-cards li {
  min-height: 178px;
  padding: 24px 18px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 250, 242, .045);
  border: 1px solid rgba(216, 176, 103, .36);
  list-style: none;
}

.feature-cards li span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.feature-cards li strong {
  color: #fffaf2;
  font-size: clamp(19px, 1.45vw, 23px);
  font-weight: 900;
}

.feature-cards li em {
  max-width: 210px;
  color: rgba(255, 250, 242, .72);
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
}

.gallery-track {
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.gallery-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.gallery-track img {
  pointer-events: none;
}

.menu-list-section {
  background: #f4ecdf;
}

.menu-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(32px, 4vw, 56px);
}

.menu-list-card {
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 250, 242, .72);
  border: 1px solid rgba(23, 23, 23, .12);
}

.menu-list-card h2 {
  margin: 0 0 20px;
  color: #171717;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1;
}

.menu-items {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-items li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 23, 23, .12);
}

.menu-items li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-items strong {
  display: block;
  color: #171717;
  font-size: 20px;
  font-weight: 900;
}

.menu-items p {
  margin: 7px 0 0;
  color: rgba(23, 23, 23, .72);
  line-height: 1.75;
}

.menu-price {
  min-width: 44px;
  color: #171717;
  font-size: 20px;
  font-weight: 900;
  text-align: left;
}

.menu-note-text {
  margin-top: 22px;
  color: rgba(23, 23, 23, .68);
  font-weight: 800;
}

@media (max-width: 920px) {
  .feature-cards,
  .menu-list-grid {
    grid-template-columns: 1fr;
  }

  .vibe-collage img,
  .vibe-collage img:first-child {
    height: 360px;
  }
}

/* Fast refinement pass: compact lead form, vertical vibe images and cleaner slider arrows */
.hero-lead {
  width: min(310px, calc(100% - 36px)) !important;
  padding: 24px 22px 22px !important;
  background: rgba(24, 24, 23, .94) !important;
  border: 1px solid rgba(216, 176, 103, .56) !important;
}

.hero-lead h2 {
  margin: 0 !important;
  font-size: 29px !important;
  line-height: 1.05 !important;
}

.hero-lead .mini-separator {
  margin: 10px auto 20px !important;
}

.hero-lead label {
  position: relative;
  display: block !important;
  min-height: 58px !important;
  margin-bottom: 16px !important;
  color: #fffaf2 !important;
}

.hero-lead label span {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 1;
  padding: 0 !important;
  color: rgba(255, 250, 242, .9) !important;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.hero-lead input {
  height: 58px !important;
  padding: 22px 0 7px !important;
  color: #fffaf2 !important;
  border-bottom: 2px solid var(--gold) !important;
}

.hero-lead button {
  min-width: 156px !important;
  min-height: 48px !important;
  margin-top: 22px !important;
  color: #fffaf2 !important;
  background: transparent !important;
  border: 1px solid var(--gold) !important;
}

.hero-lead button:hover {
  color: #171717 !important;
  background: var(--gold) !important;
}

.vibe-collage {
  width: min(940px, 100%) !important;
  grid-template-columns: repeat(3, minmax(0, 250px)) !important;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px) !important;
}

.vibe-collage img,
.vibe-collage img:first-child {
  width: 100% !important;
  height: clamp(460px, 48vw, 640px) !important;
  aspect-ratio: 3 / 5 !important;
  object-fit: cover !important;
  box-shadow: 0 26px 60px rgba(23, 23, 23, .18) !important;
}

.vibe-collage img:nth-child(1) {
  object-position: 53% 50% !important;
}

.vibe-collage img:nth-child(2) {
  object-position: 44% 50% !important;
  transform: translateY(28px);
}

.vibe-collage img:nth-child(3) {
  object-position: 50% 48% !important;
}

.gallery-arrow {
  width: 54px !important;
  height: 54px !important;
  display: grid !important;
  place-items: center !important;
  color: #171717 !important;
  background: rgba(255, 250, 242, .94) !important;
  border: 1px solid rgba(216, 176, 103, .82) !important;
  font-family: Arial, sans-serif !important;
  font-size: 34px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  box-shadow: 0 16px 36px rgba(23, 23, 23, .14) !important;
}

.gallery-arrow:hover {
  background: var(--gold) !important;
  color: #171717 !important;
  transform: translateY(-50%) scale(1.04) !important;
}

@media (max-width: 920px) {
  .vibe-collage {
    grid-template-columns: 1fr !important;
    width: min(330px, 100%) !important;
  }

  .vibe-collage img,
  .vibe-collage img:first-child {
    height: 500px !important;
  }

  .vibe-collage img:nth-child(2) {
    transform: none;
  }
}

/* Gallery actions, reels, navigation buttons and footer credit */
.gallery-actions {
  width: min(1120px, 100%);
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.gallery-actions .gallery-link {
  margin: 0 !important;
}

.instagram-underlink {
  color: rgba(23, 23, 23, .72);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(216, 176, 103, .75);
}

.instagram-underlink:hover {
  color: #171717;
}

.reels-section {
  color: #171717;
  background: #fffaf2;
}

.reels-section .section-kicker {
  color: #b17468;
  letter-spacing: .18em;
}

.reels-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
  margin-top: clamp(32px, 4vw, 50px);
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #171717;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(23, 23, 23, .12);
}

.reel-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease, opacity .28s ease;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .08);
}

.reel-card span {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  background: #ff1a12;
  clip-path: polygon(12% 0, 52% 24%, 52% 4%, 100% 33%, 66% 50%, 100% 67%, 52% 96%, 52% 76%, 12% 100%, 34% 50%);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .22));
}

.reel-card:hover img {
  transform: scale(1.04);
  opacity: .9;
}

.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.location .nav-buttons .btn {
  color: #fffaf2 !important;
  border-color: var(--gold) !important;
  background: transparent !important;
  padding-inline: 18px;
}

.location .nav-buttons .btn:hover {
  color: #171717 !important;
  background: var(--gold) !important;
}

.footer-layout {
  gap: 20px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fffaf2;
  border: 1px solid rgba(216, 176, 103, .58);
  text-decoration: none;
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-socials a:hover {
  color: #171717;
  background: var(--gold);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 250, 242, .78);
  font-size: 14px;
  font-weight: 800;
}

.footer-credit strong {
  color: #fffaf2;
  font-size: 15px;
  letter-spacing: .04em;
}

.footer-credit .heart {
  color: var(--gold);
  font-size: 16px;
}

@media (max-width: 920px) {
  .gallery-actions {
    align-items: center;
  }

  .reels-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .reel-card {
    flex: 0 0 210px;
    scroll-snap-align: center;
  }

  .nav-buttons {
    justify-content: center;
  }
}

/* Current client adjustments */
.feature-showcase {
  max-width: none;
  width: min(100%, 100vw);
}

.features {
  padding-bottom: 0;
  background: #fffaf2;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  padding: 0;
}

.feature-hero-img {
  min-height: clamp(360px, 38vw, 520px);
  overflow: hidden;
}

.feature-hero-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(.98);
}

.feature-hero-copy {
  min-height: clamp(360px, 38vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 88px);
  color: #fffaf2;
  background: #070707;
}

.feature-hero-copy .section-kicker {
  justify-content: flex-start;
  color: var(--gold);
}

.feature-hero-copy h2 {
  margin: 10px 0 18px;
  max-width: 760px;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: .96;
}

.feature-hero-copy p:last-child {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 250, 242, .82);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.75;
}

.feature-icon-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: clamp(46px, 5vw, 70px) clamp(28px, 5vw, 88px);
  background: #fffaf2;
  border-top: 1px solid rgba(23, 23, 23, .08);
}

.feature-icon-row article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  padding: 0 clamp(12px, 2vw, 24px);
  text-align: center;
  color: #171717;
}

.feature-icon-row svg {
  width: clamp(56px, 4.8vw, 82px);
  height: clamp(56px, 4.8vw, 82px);
  color: #171717;
  margin-bottom: 8px;
}

.feature-icon-row h3 {
  margin: 0;
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.08;
}

.feature-icon-row p {
  max-width: 180px;
  margin: 0;
  color: rgba(23, 23, 23, .72);
  font-size: 15px;
  line-height: 1.45;
}

.gallery-actions {
  align-items: stretch;
}

.gallery-actions .gallery-link {
  align-self: flex-end;
}

.instagram-underlink {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  color: #171717;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5) 1;
}

.instagram-underlink svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.reels-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nav-tools {
  margin-top: 24px;
}

.nav-tools h3 {
  margin: 0 0 14px;
  color: #fffaf2;
  font-size: 18px;
  font-weight: 900;
}

.nav-buttons {
  gap: 14px;
}

.map-logo {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #171717;
  background: rgba(255, 250, 242, .94);
  border: 1px solid rgba(216, 176, 103, .7);
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.map-logo svg {
  width: 42px;
  height: 42px;
}

.map-logo:hover {
  transform: translateY(-3px);
  background: var(--gold);
  border-color: var(--gold);
}

.site-footer {
  background: #f4ecdf;
  color: #171717;
  border-top: 1px solid rgba(23, 23, 23, .08);
}

.site-footer .nav-logo,
.site-footer .footer-brand {
  display: none;
}

.footer-layout {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.footer-layout p {
  margin: 0;
  color: rgba(23, 23, 23, .68);
  font-weight: 900;
  justify-self: start;
}

.footer-socials {
  justify-self: end;
}

.footer-socials a {
  color: #171717;
  border-color: rgba(23, 23, 23, .22);
}

.footer-credit {
  justify-self: center;
  color: rgba(23, 23, 23, .72);
  font-weight: 900;
}

.footer-credit img {
  width: 36px;
  height: 42px;
  object-fit: contain;
  object-position: center;
}

.footer-credit strong {
  color: #171717;
}

.footer-credit .heart {
  color: #b17468;
}

@media (max-width: 920px) {
  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-icon-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .feature-icon-row article:last-child {
    grid-column: 1 / -1;
  }

  .gallery-actions .gallery-link,
  .instagram-underlink {
    align-self: center;
  }

  .reels-row {
    grid-template-columns: none;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-layout p,
  .footer-socials,
  .footer-credit {
    justify-self: center;
  }
}

/* Refinement pass: section rhythm, split layouts and footer */
.section-pad {
  padding-block: clamp(52px, 5.6vw, 86px) !important;
}

.section-head {
  margin-bottom: clamp(28px, 3.2vw, 44px);
}

.section-kicker {
  color: #b17468 !important;
  font-size: clamp(15px, 1.05vw, 18px);
  letter-spacing: .14em;
  font-weight: 900;
}

.feature-hero-copy .section-kicker,
.location-cinematic .section-kicker,
.contact .section-kicker {
  color: var(--gold) !important;
}

.hero .eyebrow {
  font-size: clamp(18px, 1.55vw, 25px) !important;
}

.section-head p,
.intro p,
.vibe-text p,
.feature-hero-copy p,
.food-content p,
.location-layout p,
.contact-copy p,
.reels-section .section-head p {
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.75;
}

.vibe-layout {
  display: grid !important;
  grid-template-columns: minmax(360px, .95fr) minmax(420px, .9fr) !important;
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  direction: ltr;
}

.vibe-text {
  grid-column: 2;
  direction: rtl;
  text-align: right;
  max-width: 620px;
  margin-inline: 0;
}

.vibe-text .section-kicker {
  justify-content: flex-start;
}

.vibe-collage {
  grid-column: 1;
  direction: rtl;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}

.vibe-collage img {
  height: clamp(440px, 40vw, 620px);
  min-width: 0;
  object-fit: cover;
}

.vibe-collage img:nth-child(2) {
  transform: translateY(28px);
}

.features {
  padding-block: 0 !important;
}

.feature-showcase {
  direction: ltr;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr) !important;
}

.feature-hero-copy {
  grid-column: 1;
  grid-row: 1;
  direction: rtl;
  text-align: right;
  padding-block: clamp(36px, 4.4vw, 74px);
}

.feature-hero-img {
  grid-column: 2;
  grid-row: 1;
}

.feature-icon-row {
  padding-block: clamp(36px, 4vw, 58px);
}

.feature-icon-row article {
  gap: 12px;
  position: relative;
}

.feature-icon-row svg {
  width: clamp(64px, 5.2vw, 92px);
  height: clamp(64px, 5.2vw, 92px);
  color: #141414;
  stroke-width: 1.85;
  padding: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 176, 103, .18), transparent 62%),
    rgba(255, 255, 255, .38);
  box-shadow: inset 0 0 0 1px rgba(23, 23, 23, .09);
}

.feature-icon-row article:nth-child(2n) svg {
  background:
    radial-gradient(circle at 50% 50%, rgba(121, 150, 103, .22), transparent 62%),
    rgba(255, 255, 255, .42);
}

.feature-icon-row article:nth-child(3n) svg {
  background:
    radial-gradient(circle at 50% 50%, rgba(177, 116, 104, .2), transparent 62%),
    rgba(255, 255, 255, .42);
}

.feature-icon-row h3 {
  font-size: clamp(22px, 1.7vw, 31px);
}

.feature-icon-row p {
  max-width: 220px;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.55;
}

.gallery-actions {
  align-items: center;
}

.gallery-actions .gallery-link {
  align-self: center !important;
}

.site-footer {
  background: #0f0f0f !important;
  color: #fffaf2 !important;
  border-top: 1px solid rgba(216, 176, 103, .28) !important;
}

.footer-layout {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  direction: ltr;
}

.site-footer .footer-brand,
.site-footer .nav-logo {
  display: block !important;
}

.footer-brand {
  grid-column: 3;
  justify-self: end;
}

.site-footer .nav-logo {
  width: clamp(92px, 9vw, 132px);
  height: auto;
}

.footer-socials {
  grid-column: 2;
  justify-self: center !important;
  display: inline-flex;
  gap: 12px;
}

.footer-socials a {
  color: #fffaf2 !important;
  border-color: rgba(255, 250, 242, .32) !important;
  background: rgba(255, 255, 255, .03);
}

.footer-socials a:hover {
  color: #0f0f0f !important;
  background: var(--gold);
  border-color: var(--gold) !important;
}

.footer-left {
  grid-column: 1;
  justify-self: start;
  direction: rtl;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 250, 242, .72);
  font-weight: 900;
}

.footer-left p {
  margin: 0;
  color: inherit;
}

.footer-credit {
  justify-self: auto;
  color: inherit;
}

.footer-credit strong {
  color: #fffaf2;
}

.footer-credit .heart {
  color: var(--gold);
}

.footer-credit img {
  width: 34px;
  height: 40px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .vibe-layout {
    grid-template-columns: 1fr !important;
    direction: rtl;
  }

  .vibe-text,
  .vibe-collage {
    grid-column: auto;
  }

  .feature-showcase {
    grid-template-columns: 1fr !important;
  }

  .feature-hero-copy,
  .feature-hero-img {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    direction: rtl;
    text-align: center;
    padding-block: 24px;
  }

  .footer-brand,
  .footer-socials,
  .footer-left {
    grid-column: 1;
    justify-self: center !important;
  }

  .footer-left {
    flex-direction: column;
    gap: 10px;
  }
}

/* Targeted layout fixes */
.vibe .vibe-layout {
  display: grid !important;
  grid-template-columns: minmax(620px, 1.12fr) minmax(380px, .78fr) !important;
  grid-template-areas: "photos text";
  align-items: center !important;
  justify-content: center;
  gap: clamp(42px, 6vw, 96px) !important;
  direction: ltr !important;
}

.vibe .vibe-text {
  grid-area: text !important;
  grid-column: auto !important;
  width: min(100%, 560px);
  margin: 0 !important;
  direction: rtl !important;
  text-align: right !important;
  align-self: center;
}

.vibe .vibe-text .section-kicker {
  justify-content: flex-start;
}

.vibe .vibe-collage {
  grid-area: photos !important;
  grid-column: auto !important;
  width: min(100%, 860px) !important;
  margin: 0 !important;
  align-self: center;
}

.vibe .vibe-collage img,
.vibe .vibe-collage img:first-child {
  height: clamp(440px, 38vw, 590px) !important;
  aspect-ratio: 3.35 / 5 !important;
}

.section-kicker,
.feature-hero-copy .section-kicker,
.location-cinematic .section-kicker,
.contact .section-kicker {
  color: #b17468 !important;
}

.nav-tools,
.nav-tools h3 {
  text-align: center;
}

.nav-tools h3 {
  color: #fffaf2;
}

.nav-buttons {
  justify-content: center !important;
  align-items: center !important;
}

.map-logo {
  width: 72px;
  height: 72px;
}

.map-logo.waze-logo {
  width: 108px;
  padding-inline: 16px;
  background: #8ee7ff !important;
  border-color: #8ee7ff !important;
}

.waze-real {
  color: #17313a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}

.google-logo {
  background: #fff !important;
}

.site-footer {
  padding-block: 0;
}

.footer-layout {
  width: min(1180px, calc(100vw - 40px));
  min-height: 112px;
  grid-template-columns: 210px minmax(360px, 1fr) 210px;
  margin-inline: auto;
}

.footer-brand {
  grid-column: 3;
}

.footer-socials {
  grid-column: 1;
  justify-self: start !important;
  gap: 14px;
}

.footer-socials a {
  width: 48px;
  height: 48px;
  border: 0 !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

.footer-socials a:first-child {
  background: radial-gradient(circle at 30% 105%, #feda75 0 22%, #fa7e1e 32%, #d62976 55%, #962fbf 75%, #4f5bd5 100%) !important;
}

.footer-socials a:nth-child(2) {
  background: #1877f2 !important;
}

.footer-socials svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.footer-center {
  grid-column: 2;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  color: rgba(255, 250, 242, .78);
}

.footer-map {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-map a {
  color: #fffaf2;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
}

.footer-map a:hover {
  color: var(--gold);
}

.footer-center p {
  margin: 0;
  color: rgba(255, 250, 242, .72);
  font-weight: 900;
}

.footer-center .footer-credit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: rgba(255, 250, 242, .72);
}

.footer-center .footer-credit strong {
  color: #fffaf2;
}

.footer-center .footer-credit img {
  width: 30px;
  height: 36px;
}

@media (max-width: 980px) {
  .hero-lead {
    display: none !important;
  }

  .vibe .vibe-layout {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "text"
      "photos";
    gap: 34px !important;
  }

  .vibe .vibe-text {
    text-align: center !important;
    margin-inline: auto !important;
  }

  .vibe .vibe-text .section-kicker {
    justify-content: center;
  }

  .footer-layout {
    width: min(100%, calc(100vw - 32px));
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 28px;
  }

  .footer-brand,
  .footer-socials,
  .footer-center {
    grid-column: 1;
    justify-self: center !important;
  }

  .footer-brand {
    order: 1;
  }

  .footer-center {
    order: 2;
  }

  .footer-socials {
    order: 3;
  }
}

/* Final footer and place-icons pass */
.feature-icon-row {
  direction: rtl !important;
}

.feature-icon-row article {
  direction: rtl;
}

.feature-icon-row svg {
  display: none !important;
}

.feature-icon-img {
  width: clamp(64px, 5vw, 86px);
  height: clamp(64px, 5vw, 86px);
  object-fit: contain;
  opacity: .94;
}

.feature-hero-copy {
  align-items: flex-start;
}

.site-footer .footer-layout {
  width: min(1120px, calc(100vw - 56px));
  min-height: 86px;
  grid-template-columns: 150px minmax(0, 1fr) 150px;
  gap: 22px;
  align-items: center;
}

.site-footer .nav-logo {
  width: clamp(82px, 7vw, 108px);
}

.site-footer .footer-brand {
  align-self: center;
  transform: translateY(6px);
}

.site-footer .footer-socials {
  justify-self: start !important;
  gap: 10px;
}

.site-footer .footer-socials a,
.site-footer .footer-socials a:first-child,
.site-footer .footer-socials a:nth-child(2) {
  width: 42px;
  height: 42px;
  color: #fffaf2 !important;
  border: 1px solid rgba(216, 176, 103, .45) !important;
  background: transparent !important;
  box-shadow: none;
}

.site-footer .footer-socials a:hover {
  color: #171717 !important;
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.site-footer .footer-socials svg {
  width: 23px;
  height: 23px;
}

.site-footer .footer-center {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 18px;
  line-height: 1;
  width: 100%;
}

.site-footer .footer-map {
  grid-column: 1 / -1;
  grid-row: 1;
  gap: 8px 14px;
}

.site-footer .footer-map a {
  font-size: 15px;
}

.site-footer .footer-center p,
.site-footer .footer-credit {
  font-size: 14px;
}

.site-footer .footer-center p {
  grid-column: 2;
  grid-row: 2;
  white-space: nowrap;
}

.site-footer .footer-credit {
  grid-column: 2;
  grid-row: 3;
  direction: rtl;
}

@media (min-width: 981px) {
  .intro-visual {
    height: clamp(300px, 28vw, 430px) !important;
  }
}

/* Visual QA refinements */
@media (min-width: 981px) {
  .vibe .vibe-collage {
    grid-template-columns: repeat(3, minmax(0, 320px)) !important;
    width: min(100%, 980px) !important;
  }

  .vibe .vibe-collage img,
  .vibe .vibe-collage img:first-child {
    aspect-ratio: 4 / 5 !important;
  }
}

.instagram-underlink {
  font-size: clamp(18px, 1.25vw, 23px) !important;
  font-weight: 900;
  gap: 10px;
  padding-bottom: 10px;
}

.instagram-underlink svg {
  width: 24px !important;
  height: 24px !important;
}

.site-footer .footer-center {
  grid-template-columns: 1fr;
  gap: 9px;
}

.site-footer .footer-map,
.site-footer .footer-center p,
.site-footer .footer-credit {
  grid-column: 1;
}

.site-footer .footer-map {
  grid-row: 1;
}

.site-footer .footer-center p {
  grid-row: 2;
}

.site-footer .footer-credit {
  grid-row: 3;
  white-space: nowrap;
}

.site-footer .footer-credit img {
  width: 26px;
  height: 31px;
}

@media (max-width: 980px) {
  .feature-hero-copy {
    align-items: center;
    text-align: center !important;
  }

  .feature-hero-copy .section-kicker {
    justify-content: center;
  }

  .site-footer .footer-layout {
    width: min(100%, calc(100vw - 32px));
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 24px;
  }

  .site-footer .footer-center {
    flex-direction: column;
    gap: 10px;
  }

  .site-footer .footer-socials {
    justify-self: center !important;
  }
}

/* Final polish: wider vibe cards, cleaner Instagram CTA, footer alignment and performance */
:root {
  --reveal-distance: 34px;
}

body.js-enabled .will-reveal.revealed {
  will-change: auto;
}

.section-pad,
.food-story,
.features,
.location,
.contact,
.gallery-reels {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

@media (min-width: 981px) {
  .vibe .vibe-layout {
    width: min(1480px, calc(100vw - 80px)) !important;
    max-width: 1480px !important;
    grid-template-columns: minmax(420px, .72fr) minmax(780px, 1.34fr) !important;
    gap: clamp(48px, 5vw, 86px) !important;
    align-items: center !important;
  }

  .vibe .vibe-collage {
    width: min(100%, 1120px) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(22px, 2vw, 34px) !important;
  }

  .vibe .vibe-collage img,
  .vibe .vibe-collage img:first-child {
    height: clamp(440px, 38vw, 590px) !important;
    aspect-ratio: 4.7 / 5 !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .intro-visual {
    height: clamp(340px, 31vw, 480px) !important;
  }
}

.instagram-underlink {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 8px 18px 11px !important;
  color: #fffaf2 !important;
  border: 1px solid rgba(23, 23, 23, .92) !important;
  border-bottom: 0 !important;
  border-image: none !important;
  background: #171717 !important;
  font-size: clamp(16px, 1vw, 19px) !important;
  line-height: 1 !important;
  box-shadow: 0 14px 28px rgba(23, 23, 23, .12);
}

.instagram-underlink::after {
  content: "";
  position: absolute;
  right: 18px;
  left: 18px;
  bottom: -6px;
  height: 4px;
  background: linear-gradient(90deg, #f9ce34, #ee2a7b, #6228d7);
}

.instagram-underlink:hover {
  color: #171717 !important;
  background: #fffaf2 !important;
  border-color: rgba(189, 118, 91, .45) !important;
  transform: translateY(-2px);
}

.instagram-underlink svg {
  width: 20px !important;
  height: 20px !important;
}

.site-footer {
  padding-block: 0 !important;
}

.site-footer .footer-layout {
  width: min(1240px, calc(100vw - 56px)) !important;
  min-height: 82px !important;
  padding-block: 9px !important;
  display: grid !important;
  grid-template-columns: 148px minmax(0, 1fr) 148px !important;
  grid-template-rows: auto !important;
  align-items: center !important;
  gap: 20px !important;
}

.site-footer .footer-brand {
  grid-column: 3 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  align-self: center !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
}

.site-footer .nav-logo {
  width: clamp(98px, 7.6vw, 124px) !important;
  height: auto !important;
  max-height: 62px !important;
  object-fit: contain !important;
}

.site-footer .footer-socials {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  align-self: center !important;
  display: inline-flex !important;
  gap: 10px !important;
}

.site-footer .footer-center {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  width: min(100%, 900px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  text-align: center !important;
  flex-wrap: nowrap !important;
}

.site-footer .footer-map {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.site-footer .footer-map a {
  font-size: 14px !important;
  line-height: 1 !important;
}

.site-footer .footer-meta {
  direction: rtl;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  color: rgba(255, 250, 242, .78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.site-footer .footer-meta strong {
  direction: ltr;
  color: #fffaf2;
  font-weight: 900;
}

.site-footer .footer-meta .heart {
  color: var(--terracotta);
  font-size: 16px;
  line-height: 1;
}

.site-footer .footer-meta img {
  width: 22px;
  height: 26px;
  object-fit: contain;
  margin-inline-start: 3px;
}

@media (max-width: 980px) {
  .section-pad,
  .food-story,
  .features,
  .location,
  .contact,
  .gallery-reels {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  .vibe .vibe-collage {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .vibe .vibe-collage img,
  .vibe .vibe-collage img:first-child {
    aspect-ratio: 4 / 5 !important;
    width: 100% !important;
  }

  .instagram-underlink {
    font-size: 16px !important;
    min-height: 42px !important;
    padding-inline: 18px !important;
  }

  .site-footer .footer-layout {
    width: min(100%, calc(100vw - 32px)) !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding-block: 26px !important;
    gap: 18px !important;
  }

  .site-footer .footer-brand,
  .site-footer .footer-center,
  .site-footer .footer-socials {
    justify-self: center !important;
  }

  .site-footer .footer-brand {
    transform: none !important;
  }

  .site-footer .footer-center {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  .site-footer .footer-map {
    flex-wrap: wrap !important;
    gap: 8px 14px !important;
  }

  .site-footer .footer-meta {
    white-space: normal !important;
  }
}

/* Deployment fixes: mobile overflow, location stack, and centered 3-row footer */
html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  position: relative;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

.site-header,
.hero,
.intro-strip,
.section-pad,
.location,
.site-footer {
  max-width: 100vw;
  overflow-x: clip;
}

.site-footer {
  padding-block: 0 !important;
}

.site-footer .footer-layout {
  width: min(1120px, calc(100% - 32px)) !important;
  min-height: 132px !important;
  padding-block: 18px !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto auto !important;
  justify-items: center !important;
  align-items: center !important;
  gap: 10px !important;
  text-align: center !important;
}

.site-footer .footer-brand {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  align-self: center !important;
  width: auto !important;
  height: auto !important;
}

.site-footer .nav-logo {
  width: clamp(108px, 8vw, 142px) !important;
  max-height: 66px !important;
  object-fit: contain !important;
}

.site-footer .footer-center {
  grid-column: 1 !important;
  grid-row: 2 / 4 !important;
  width: 100% !important;
  max-width: 760px !important;
  display: contents !important;
  text-align: center !important;
}

.site-footer .footer-map {
  grid-row: 2 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px 16px !important;
  white-space: normal !important;
}

.site-footer .footer-map a {
  font-size: clamp(14px, 1vw, 16px) !important;
}

.site-footer .footer-meta {
  grid-row: 3 !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  white-space: normal !important;
  font-size: clamp(12px, .9vw, 14px) !important;
}

.site-footer .footer-meta img {
  width: 24px !important;
  height: 28px !important;
}

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 24px, 1120px) !important;
    left: 12px !important;
    right: 12px !important;
    transform: none !important;
  }

  .location-cinematic {
    min-height: auto !important;
    padding-block: 42px !important;
  }

  .location-cinematic .location-layout {
    width: min(100% - 28px, 560px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    align-items: stretch !important;
  }

  .location-cinematic .location-layout > div:first-child,
  .location-media {
    width: 100% !important;
    max-width: none !important;
  }

  .location-media {
    display: grid !important;
    gap: 12px !important;
  }

  .location-cinematic .map-frame {
    width: 100% !important;
    height: clamp(260px, 70vw, 360px) !important;
  }

  .location-cinematic .map-frame iframe {
    width: 100% !important;
    height: 100% !important;
  }

  .location .nav-buttons {
    justify-content: center !important;
  }

  .map-logo.waze-logo {
    width: 108px !important;
  }

  .site-footer .footer-layout {
    width: min(100% - 28px, 560px) !important;
    min-height: 142px !important;
    padding-block: 20px !important;
  }

  .site-footer .nav-logo {
    width: 112px !important;
    max-height: 58px !important;
  }

  .site-footer .footer-meta {
    max-width: 300px !important;
    line-height: 1.7 !important;
  }
}

@media (max-width: 980px) {
  section.location.location-cinematic .container.location-layout {
    width: min(100% - 28px, 560px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px !important;
  }

  section.location.location-cinematic .container.location-layout > div,
  section.location.location-cinematic .location-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  section.location.location-cinematic .map-frame {
    width: 100% !important;
    height: clamp(280px, 78vw, 380px) !important;
  }
}

.section-note {
  max-width: 820px;
  margin: clamp(22px, 3vw, 34px) auto 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.75;
  font-weight: 700;
  text-align: center;
}

.youtube-video-row {
  width: min(980px, 100%);
  margin: clamp(28px, 4vw, 44px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.youtube-placeholder {
  min-height: clamp(260px, 28vw, 360px);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  background:
    linear-gradient(180deg, rgba(14, 14, 14, .55), rgba(14, 14, 14, .86)),
    url("assets/images/web/social-close.jpg") center / cover;
  color: #fff;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  padding: 26px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .18);
}

.youtube-placeholder:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(14, 14, 14, .48), rgba(14, 14, 14, .84)),
    url("assets/images/web/drink-red.jpg") center / cover;
}

.youtube-placeholder h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.youtube-placeholder p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
}

.play-mark {
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(4px);
}

.play-mark::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
  transform: translateX(2px);
}

@media (max-width: 760px) {
  .youtube-video-row {
    grid-template-columns: 1fr;
  }

  .youtube-placeholder {
    min-height: 260px;
  }
}

.menu-page .menu-hero::after {
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, .34), rgba(0, 0, 0, .86)),
    linear-gradient(to top, rgba(17, 17, 17, .88), rgba(0, 0, 0, .38));
}

.menu-page .menu-hero-content {
  background: rgba(14, 14, 14, .66);
  border: 1px solid rgba(194, 112, 89, .42);
  padding: clamp(28px, 4vw, 50px);
  box-shadow: 0 28px 85px rgba(0, 0, 0, .38);
}

.menu-page .menu-hero-content,
.menu-page .menu-hero-content h1,
.menu-page .menu-hero-content p {
  color: #fff;
}

.menu-page .menu-hero-content .eyebrow {
  color: var(--accent);
}

.menu-custom-top {
  background: var(--cream);
}

.menu-custom-top .split {
  align-items: start;
}

.menu-custom-copy {
  display: grid;
  gap: 14px;
  color: rgba(23, 23, 23, .78);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.8;
  font-weight: 700;
}

.menu-custom-copy p {
  margin: 0;
}

.menu-list-section .section-head p {
  max-width: 820px;
  margin: 14px auto 0;
  color: rgba(23, 23, 23, .72);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.75;
  font-weight: 700;
}

.menu-page .menu-items li {
  grid-template-columns: 1fr;
}

.menu-page .menu-price {
  display: none;
}

/* Nuni July polish: hero hierarchy, intro feature icons and reels slider */
.hero-content {
  width: min(880px, calc(100% - 36px));
}

.hero-keywords {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px auto 20px !important;
  color: var(--gold) !important;
  font-size: clamp(17px, 1.35vw, 23px) !important;
  line-height: 1;
  white-space: nowrap;
}

.hero-keywords::before,
.hero-keywords::after {
  content: "";
  width: clamp(34px, 4vw, 72px);
  height: 1px;
  background: color-mix(in srgb, var(--gold) 70%, transparent);
}

.hero-keywords i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .9;
}

.hero h1 {
  margin-bottom: 14px;
}

.hero-subtitle {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.04;
}

.hero-copy {
  max-width: 780px;
  margin-top: 18px;
  margin-inline: auto;
  font-size: clamp(17px, 1.25vw, 22px);
  color: rgba(255, 255, 255, .84);
}

.hero-event-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 24px auto 0;
  padding: 12px clamp(20px, 3vw, 38px);
  color: var(--gold);
  background: linear-gradient(90deg, rgba(216, 176, 103, .08), rgba(216, 176, 103, .18), rgba(216, 176, 103, .08));
  border-block: 1px solid rgba(216, 176, 103, .42);
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 900;
  letter-spacing: .01em;
}

.hero-event-note::before,
.hero-event-note::after {
  content: "";
  width: clamp(28px, 3vw, 52px);
  height: 1px;
  background: rgba(216, 176, 103, .72);
}

.intro-split {
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(42px, 4.4vw, 70px);
}

.intro-feature-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: clamp(22px, 3vw, 34px) 0;
}

.intro-feature-icons article {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 154px;
  padding: 18px 12px;
  text-align: center;
  background: rgba(255, 250, 242, .74);
  border: 1px solid rgba(23, 23, 23, .11);
}

.intro-feature-icons img {
  width: clamp(38px, 3.2vw, 54px);
  height: clamp(38px, 3.2vw, 54px);
  object-fit: contain;
}

.intro-feature-icons strong {
  color: #171717;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.1;
  font-weight: 900;
}

.intro-feature-icons span {
  color: rgba(23, 23, 23, .68);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.reels-slider {
  position: relative;
  margin-top: clamp(30px, 4vw, 52px);
}

.reels-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 18vw);
  gap: clamp(14px, 2vw, 26px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 0 4px 12px;
  cursor: default;
}

.reels-track::-webkit-scrollbar {
  display: none;
}

.reels-track .reel-card {
  scroll-snap-align: center;
}

.reel-card em {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  color: #fff;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
}

.reel-card-youtube span {
  background: #ff0033;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  width: 54px;
  height: 62px;
  border-radius: 0;
}

.reels-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 54px;
  border: 1px solid rgba(23, 23, 23, .16);
  color: #171717;
  background: rgba(255, 250, 242, .92);
  font-size: 32px;
  font-weight: 900;
  cursor: pointer;
}

.reels-next {
  right: 10px;
}

.reels-prev {
  left: 10px;
}

@media (max-width: 980px) {
  .intro-feature-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-feature-icons article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hero-keywords {
    gap: 8px;
    font-size: 16px !important;
  }

  .hero-keywords::before,
  .hero-keywords::after {
    width: 28px;
  }

  .hero-subtitle {
    font-size: clamp(31px, 9vw, 46px);
  }

  .hero-event-note {
    width: min(100%, 360px);
    padding-inline: 14px;
    font-size: 17px;
  }

  .intro-feature-icons {
    grid-template-columns: 1fr;
  }

  .intro-feature-icons article:last-child {
    grid-column: auto;
  }

  .reels-track {
    grid-auto-columns: minmax(210px, 72vw);
  }
}

/* Correction pass: intro feature row, event note and dark moments sections */
.intro .intro-split {
  width: min(1240px, calc(100vw - 48px));
  max-width: 1240px !important;
}

.intro .intro-text {
  width: min(850px, 100%);
  justify-self: center;
}

.intro .intro-text .section-kicker {
  color: var(--accent) !important;
}

.intro .intro-text h2 {
  max-width: 820px;
  margin-inline: auto;
}

.intro-feature-row {
  width: 100%;
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(34px, 4vw, 56px) clamp(18px, 4vw, 58px);
  border-top: 1px solid rgba(23, 23, 23, .1);
  border-bottom: 1px solid rgba(23, 23, 23, .08);
  box-shadow: 0 22px 60px rgba(23, 23, 23, .04);
}

.intro-feature-row article {
  min-height: 164px;
}

.intro-feature-row .feature-icon-img {
  width: clamp(58px, 4.6vw, 78px);
  height: clamp(58px, 4.6vw, 78px);
}

.intro-memory {
  grid-column: 1 / -1;
  width: min(760px, 100%);
  margin: clamp(18px, 2.5vw, 28px) auto clamp(20px, 2.6vw, 30px);
  padding: clamp(18px, 2.4vw, 28px) clamp(20px, 3vw, 34px);
  border-inline: 1px solid rgba(183, 111, 96, .55);
  background: linear-gradient(90deg, rgba(183, 111, 96, .08), rgba(226, 196, 130, .14), rgba(183, 111, 96, .08));
}

.intro-memory h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 900;
}

.intro-memory p {
  margin: 0 auto 10px;
  max-width: 680px;
  color: rgba(23, 23, 23, .78);
}

.intro-memory p:last-child {
  margin-bottom: 0;
}

.hero-event-note {
  display: none !important;
}

.event-section .section-note {
  width: min(920px, 100%);
  margin-top: clamp(32px, 4vw, 52px);
  padding: clamp(18px, 2.2vw, 26px) clamp(24px, 4vw, 48px);
  color: #f4ecdf;
  background:
    linear-gradient(90deg, rgba(184, 111, 94, .16), rgba(184, 111, 94, .05)),
    rgba(255, 250, 242, .035);
  border-top: 1px solid rgba(184, 111, 94, .55);
  border-bottom: 1px solid rgba(184, 111, 94, .55);
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.65;
  font-weight: 900;
}

.gallery,
.reels-section {
  background: #151515 !important;
  color: #fffaf2;
}

.gallery .section-kicker,
.reels-section .section-kicker {
  color: var(--accent) !important;
}

.gallery h2,
.reels-section h2,
.gallery .section-head h2,
.reels-section .section-head h2 {
  color: #fffaf2 !important;
}

.gallery .section-head p,
.reels-section .section-head p {
  color: rgba(255, 250, 242, .72) !important;
}

.gallery .gallery-track img {
  box-shadow: 0 24px 58px rgba(0, 0, 0, .32);
}

.gallery .gallery-actions .gallery-link,
.reels-section .outline-link {
  color: #fffaf2 !important;
  border-color: rgba(184, 111, 94, .72) !important;
}

.gallery .gallery-actions .gallery-link:hover,
.reels-section .outline-link:hover {
  color: #151515 !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.gallery .instagram-underlink {
  color: #fffaf2 !important;
  background: transparent !important;
  border-color: rgba(255, 250, 242, .18) !important;
}

.gallery .instagram-underlink:hover {
  color: #151515 !important;
  background: #fffaf2 !important;
}

.reels-section .reels-arrow {
  color: #fffaf2;
  background: rgba(21, 21, 21, .86);
  border-color: rgba(184, 111, 94, .72);
}

@media (max-width: 980px) {
  .intro .intro-split {
    width: min(100%, calc(100vw - 32px));
  }

  .intro-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .intro-feature-row {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }
}

/* Client correction: full-width icon band, wide event note and split gallery/reels colors */
@media (min-width: 981px) {
  .intro .intro-split {
    width: 100% !important;
    max-width: none !important;
  }

  .intro .intro-feature-row {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    padding: clamp(38px, 4vw, 64px) clamp(44px, 6vw, 118px);
    border-top: 1px solid rgba(23, 23, 23, .14);
    border-bottom: 1px solid rgba(23, 23, 23, .18);
    box-shadow: none;
  }

  .intro-feature-row article {
    min-height: 180px;
  }

  .intro-feature-row .feature-icon-img {
    width: clamp(74px, 5.2vw, 98px);
    height: clamp(74px, 5.2vw, 98px);
  }

  .intro-feature-row h3 {
    font-size: clamp(23px, 1.75vw, 32px);
  }

  .intro-feature-row p {
    max-width: 220px;
    font-size: clamp(15px, 1vw, 17px);
  }

  .event-section .section-note {
    width: min(1240px, calc(100vw - 92px));
    max-width: none;
    white-space: nowrap;
    font-size: clamp(20px, 1.35vw, 27px);
  }
}

.gallery .section-kicker {
  color: var(--accent) !important;
}

.gallery .section-kicker::before,
.gallery .section-kicker::after {
  background: color-mix(in srgb, var(--accent) 58%, transparent) !important;
}

.reels-section {
  background: #f5efe4 !important;
  color: #171717 !important;
}

.reels-section .section-kicker {
  color: var(--accent) !important;
}

.reels-section .section-kicker::before,
.reels-section .section-kicker::after {
  background: color-mix(in srgb, var(--accent) 58%, transparent) !important;
}

.reels-section h2,
.reels-section .section-head h2 {
  color: #171717 !important;
}

.reels-section .section-head p {
  color: rgba(23, 23, 23, .68) !important;
}

.reels-section .reels-arrow {
  color: #171717 !important;
  background: rgba(255, 250, 242, .96) !important;
  border-color: rgba(184, 111, 94, .55) !important;
}

.reels-section .reel-card {
  box-shadow: 0 24px 52px rgba(23, 23, 23, .14);
}

.reel-card span,
.reel-card-youtube span {
  width: 76px !important;
  height: 76px !important;
  border-radius: 50% !important;
  background: #ff1d15 !important;
  clip-path: none !important;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .28));
}

.reel-card span::before,
.reel-card-youtube span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid #fff;
}

@media (max-width: 980px) {
  .event-section .section-note {
    width: min(100%, calc(100vw - 32px));
    white-space: normal;
  }
}

/* Tightening pass before visual QA */
html,
body {
  overflow-x: hidden;
}

.hero-keywords {
  color: var(--accent) !important;
}

.hero-keywords i {
  background: var(--accent) !important;
}

.hero-keywords::before,
.hero-keywords::after {
  background: color-mix(in srgb, var(--accent) 70%, transparent) !important;
}

.hero-copy {
  color: var(--gold) !important;
  white-space: nowrap;
  max-width: none;
}

.intro.section-pad {
  padding-top: clamp(24px, 3.2vw, 46px) !important;
  padding-bottom: 0 !important;
}

.intro .intro-text {
  margin-bottom: clamp(14px, 2vw, 24px);
}

.intro .outline-link {
  margin-top: clamp(14px, 1.6vw, 22px);
}

@media (min-width: 981px) {
  .intro .intro-feature-row {
    margin-top: 0;
    padding-block: clamp(22px, 2.5vw, 36px);
  }

  .event-section .section-note {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-inline: clamp(46px, 8vw, 150px);
    text-align: center;
  }
}

.gallery .section-kicker,
.gallery .section-head .section-kicker,
.reels-section .section-kicker,
.reels-section .section-head .section-kicker {
  color: var(--accent) !important;
}

.gallery .section-kicker::before,
.gallery .section-kicker::after,
.gallery .section-head .section-kicker::before,
.gallery .section-head .section-kicker::after,
.reels-section .section-kicker::before,
.reels-section .section-kicker::after,
.reels-section .section-head .section-kicker::before,
.reels-section .section-head .section-kicker::after {
  background: color-mix(in srgb, var(--accent) 62%, transparent) !important;
}

.gallery .instagram-underlink {
  color: #151515 !important;
  background: #fffaf2 !important;
  border: 1px solid rgba(184, 111, 94, .58) !important;
  border-bottom: 3px solid var(--accent) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.gallery .instagram-underlink:hover {
  color: #fffaf2 !important;
  background: var(--accent) !important;
}

@media (max-width: 1100px) {
  .hero-copy {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .intro .intro-feature-row {
    width: 100%;
    margin-inline: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(138px, 46%);
    grid-template-columns: none !important;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    padding: 14px 14px 16px;
  }

  .intro .intro-feature-row::-webkit-scrollbar {
    display: none;
  }

  .intro-feature-row article {
    min-height: 142px;
    scroll-snap-align: center;
    padding-inline: 10px;
  }

  .intro-feature-row .feature-icon-img {
    width: 48px;
    height: 48px;
  }

  .intro-feature-row h3 {
    font-size: 18px;
  }

  .intro-feature-row p {
    font-size: 13px;
    line-height: 1.35;
  }

  .reels-section {
    padding-block: 54px !important;
  }
}

/* Hero and atmosphere polish - July 11 */
.hero .hero-keywords {
  color: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 24px);
  margin: clamp(12px, 1.8vw, 24px) auto clamp(18px, 2.2vw, 30px);
  font-family: "Secular One", "Assistant", system-ui, sans-serif;
  font-size: clamp(30px, 4.3vw, 76px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: 0;
  text-transform: none;
}

.hero .hero-keywords span {
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: clamp(1px, .11vw, 1.8px) rgba(255, 255, 255, .96);
  text-shadow: 0 0 30px rgba(255, 255, 255, .14), 0 12px 34px rgba(0, 0, 0, .42);
}

.hero .hero-keywords::before,
.hero .hero-keywords::after {
  width: clamp(44px, 6.5vw, 128px) !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .74), transparent) !important;
}

.hero .hero-keywords i {
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px;
  background: var(--gold) !important;
  box-shadow: 0 0 0 5px rgba(221, 180, 103, .13), 0 0 22px rgba(221, 180, 103, .55);
}

.hero .hero-copy {
  display: inline-block;
  color: var(--gold) !important;
  max-width: none;
  padding: 9px clamp(16px, 2.1vw, 32px);
  border-top: 1px solid rgba(221, 180, 103, .42);
  border-bottom: 1px solid rgba(221, 180, 103, .42);
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .22), transparent);
  font-size: clamp(16px, 1.28vw, 22px);
  font-weight: 800;
  line-height: 1.55;
  text-shadow: 0 10px 24px rgba(0, 0, 0, .52);
}

.hero .hero-actions {
  gap: clamp(12px, 1.4vw, 22px);
  margin-top: clamp(18px, 2vw, 28px);
}

.hero .hero-actions .btn {
  min-width: clamp(168px, 12.8vw, 220px);
  min-height: 54px;
  padding: 15px 28px;
  border: 1px solid rgba(221, 180, 103, .82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
    rgba(16, 16, 15, .32);
  color: #fffaf2;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .32), inset 0 0 0 1px rgba(255, 255, 255, .08);
  font-size: clamp(15px, .95vw, 17px);
  font-weight: 900;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.hero .hero-actions .btn:hover,
.hero .hero-actions .btn:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .38), 0 0 0 4px rgba(184, 111, 94, .18);
}

.vibe .vibe-text .section-kicker {
  color: var(--accent) !important;
}

@media (min-width: 981px) {
  .vibe .vibe-layout {
    align-items: center;
    min-height: clamp(610px, 44vw, 700px);
  }

  .vibe .vibe-collage {
    min-height: clamp(530px, 39vw, 640px);
  }

  .vibe .vibe-collage img,
  .vibe .vibe-collage img:first-child {
    height: clamp(500px, 37vw, 620px) !important;
  }
}

@media (max-width: 980px) {
  .hero .hero-keywords {
    font-size: clamp(27px, 9vw, 52px);
    gap: 12px;
  }

  .hero .hero-keywords::before,
  .hero .hero-keywords::after {
    width: clamp(28px, 12vw, 56px) !important;
  }

  .hero .hero-copy {
    white-space: normal;
    max-width: min(92vw, 620px);
    font-size: 15px;
  }

  .hero .hero-actions .btn {
    min-height: 50px;
  }
}

/* Final polish pass - July 11 */
.hero .hero-keywords {
  gap: clamp(14px, 2vw, 34px) !important;
  margin: clamp(10px, 1.4vw, 18px) auto clamp(20px, 2.4vw, 34px) !important;
  font-size: clamp(48px, 7.4vw, 132px) !important;
  line-height: .82 !important;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .48));
}

.hero .hero-keywords span {
  -webkit-text-stroke: clamp(2px, .24vw, 4px) rgba(255, 255, 255, .98) !important;
  text-shadow:
    0 0 1px rgba(255, 255, 255, .92),
    0 0 26px rgba(255, 255, 255, .18),
    0 16px 36px rgba(0, 0, 0, .56) !important;
}

.hero .hero-keywords::before,
.hero .hero-keywords::after {
  width: clamp(52px, 8vw, 168px) !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .78), transparent) !important;
}

.hero .hero-keywords i {
  width: 7px !important;
  height: 7px !important;
  background: rgba(255, 255, 255, .95) !important;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .08), 0 0 20px rgba(255, 255, 255, .45) !important;
}

.hero .hero-copy {
  color: #e9c56f !important;
  font-size: clamp(18px, 1.55vw, 27px) !important;
  font-weight: 900 !important;
  padding: 12px clamp(20px, 3vw, 46px) !important;
  border-color: rgba(233, 197, 111, .72) !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(18, 16, 13, .48), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(233, 197, 111, .08), rgba(233, 197, 111, 0)) !important;
}

.hero .hero-actions .btn {
  position: relative;
  overflow: hidden;
  min-width: clamp(190px, 14.4vw, 250px) !important;
  min-height: 62px !important;
  padding: 18px 32px !important;
  font-size: clamp(16px, 1.05vw, 19px) !important;
  border-width: 2px !important;
}

.hero .hero-actions .btn::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, .12);
  pointer-events: none;
}

.menu-page .menu-hero {
  min-height: clamp(470px, 48vw, 650px) !important;
  color: #fffaf2 !important;
}

.menu-page .menu-hero::after {
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, .18), rgba(0, 0, 0, .76)),
    linear-gradient(to top, rgba(17, 17, 17, .82), rgba(0, 0, 0, .28)) !important;
}

.menu-page .menu-hero-content {
  width: min(1080px, calc(100% - 36px)) !important;
  max-width: min(1080px, calc(100% - 36px)) !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.menu-page .menu-hero-content h1 {
  max-width: 980px;
  margin: 0 auto clamp(22px, 2.6vw, 34px);
  color: #fffaf2 !important;
  font-size: clamp(44px, 6.4vw, 104px);
  line-height: .94;
  text-shadow: 0 18px 44px rgba(0, 0, 0, .58);
}

.menu-page .menu-hero-content .hero-actions {
  justify-content: center;
}

.menu-card-image {
  height: clamp(175px, 16vw, 245px);
  margin: calc(clamp(24px, 3vw, 36px) * -1) calc(clamp(24px, 3vw, 36px) * -1) 24px;
  overflow: hidden;
  border-bottom: 1px solid rgba(23, 23, 23, .12);
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.menu-list-card:hover .menu-card-image img {
  transform: scale(1.035);
}

.gallery-full-grid img {
  cursor: zoom-in;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(10, 10, 10, .9);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: min(1180px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .5);
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(233, 197, 111, .8);
  background: rgba(18, 18, 18, .62);
  color: #fffaf2;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.lightbox-close {
  top: 22px;
  left: 22px;
  font-size: 26px;
}

.lightbox-prev {
  right: clamp(14px, 3vw, 44px);
}

.lightbox-next {
  left: clamp(14px, 3vw, 44px);
}

@media (max-width: 760px) {
  .hero .hero-keywords {
    font-size: clamp(42px, 14vw, 72px) !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
  }

  .hero .hero-keywords span {
    -webkit-text-stroke: 2px rgba(255, 255, 255, .98) !important;
  }

  .hero .hero-keywords::before,
  .hero .hero-keywords::after {
    width: clamp(26px, 11vw, 54px) !important;
  }

  .hero .hero-copy {
    width: min(92vw, 420px);
    font-size: 15px !important;
    white-space: normal;
  }

  .hero .hero-actions .btn {
    width: min(86vw, 310px);
    min-height: 54px !important;
  }

  .intro .intro-feature-row {
    position: relative;
    display: block !important;
    width: min(280px, 78vw);
    height: 178px;
    margin: 18px auto 0;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(23, 23, 23, .1);
    background: rgba(255, 250, 242, .68);
  }

  .intro .intro-feature-row article {
    position: absolute !important;
    inset: 0;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px !important;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(.98);
    animation: introIconFade 15s infinite;
    scroll-snap-align: unset;
  }

  .intro .intro-feature-row article:nth-child(1) { animation-delay: 0s; }
  .intro .intro-feature-row article:nth-child(2) { animation-delay: 3s; }
  .intro .intro-feature-row article:nth-child(3) { animation-delay: 6s; }
  .intro .intro-feature-row article:nth-child(4) { animation-delay: 9s; }
  .intro .intro-feature-row article:nth-child(5) { animation-delay: 12s; }

  .intro-feature-row .feature-icon-img {
    width: 48px !important;
    height: 48px !important;
  }

  .intro-feature-row h3 {
    font-size: 22px !important;
  }

  .intro-feature-row p {
    max-width: 210px;
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .menu-page .menu-hero {
    min-height: 440px !important;
  }

  .menu-page .menu-hero-content h1 {
    font-size: clamp(40px, 13vw, 68px);
  }

  .menu-card-image {
    height: 185px;
  }

  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
}

@keyframes introIconFade {
  0%, 17% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  23%, 100% {
    opacity: 0;
    transform: translateY(-8px) scale(.98);
  }
}

/* Conversion polish and responsive fixes - July 12 */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .hero-logo {
  margin-bottom: clamp(12px, 1.5vw, 22px);
}

.hero .hero-content h1 {
  margin: 0;
  color: #fffaf2;
  font-family: "Secular One", "Assistant", system-ui, sans-serif;
  font-size: clamp(58px, 7.2vw, 136px);
  line-height: .88;
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .62);
}

.hero .hero-keywords {
  gap: clamp(10px, 1.35vw, 20px) !important;
  margin: clamp(10px, 1.25vw, 16px) auto clamp(18px, 2vw, 28px) !important;
  color: transparent !important;
  font-size: clamp(28px, 3.6vw, 68px) !important;
  line-height: .9 !important;
  filter: drop-shadow(0 0 10px rgba(184, 111, 94, .34)) drop-shadow(0 12px 28px rgba(0, 0, 0, .45)) !important;
}

.hero .hero-keywords span {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: clamp(1.4px, .14vw, 2.7px) rgba(214, 139, 126, .98) !important;
  text-shadow:
    0 0 2px rgba(255, 255, 255, .3),
    0 0 18px rgba(184, 111, 94, .38),
    0 14px 30px rgba(0, 0, 0, .58) !important;
}

.hero .hero-keywords::before,
.hero .hero-keywords::after {
  width: clamp(36px, 5vw, 108px) !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(214, 139, 126, .82), rgba(255, 255, 255, .44), transparent) !important;
}

.hero .hero-keywords i {
  width: 5px !important;
  height: 5px !important;
  background: #fffaf2 !important;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .08), 0 0 16px rgba(255, 255, 255, .42) !important;
}

.hero .hero-copy {
  max-width: min(1000px, 92vw);
  color: #e7c36e !important;
  font-size: clamp(17px, 1.28vw, 23px) !important;
  font-weight: 900 !important;
  white-space: normal;
}

.hero .hero-actions .btn {
  min-width: clamp(198px, 14vw, 250px) !important;
  min-height: 64px !important;
  padding: 18px 34px !important;
  color: #fffdf8 !important;
  font-size: clamp(17px, 1.05vw, 20px) !important;
  font-weight: 900 !important;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .48);
  letter-spacing: 0;
}

.hero .hero-actions .btn:hover,
.hero .hero-actions .btn:focus-visible {
  color: #fffdf8 !important;
}

body.js-enabled .will-reveal {
  will-change: transform, opacity;
  transition:
    opacity .72s ease var(--reveal-delay, 0ms),
    transform .72s cubic-bezier(.2, .78, .22, 1) var(--reveal-delay, 0ms);
}

body.js-enabled .food-image.will-reveal,
body.js-enabled .vibe-collage img.will-reveal,
body.js-enabled .gallery-slider.will-reveal,
body.js-enabled .reels-slider.will-reveal,
body.js-enabled .event-tetris .tile.will-reveal {
  transform: translateY(26px) scale(.985);
}

body.js-enabled .food-image.will-reveal.revealed,
body.js-enabled .vibe-collage img.will-reveal.revealed,
body.js-enabled .gallery-slider.will-reveal.revealed,
body.js-enabled .reels-slider.will-reveal.revealed,
body.js-enabled .event-tetris .tile.will-reveal.revealed {
  transform: translateY(0) scale(1);
}

.intro,
.event-section,
.food,
.vibe,
.gallery-preview,
.reels-section,
.location,
.contact {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

@media (max-width: 760px) {
  .hero .hero-content h1 {
    font-size: clamp(52px, 15vw, 84px);
  }

  .hero .hero-keywords {
    font-size: clamp(25px, 8.2vw, 42px) !important;
    margin-bottom: 14px !important;
  }

  .hero .hero-keywords span {
    -webkit-text-stroke: 1.5px rgba(214, 139, 126, .98) !important;
  }

  .hero .hero-copy {
    width: min(92vw, 420px);
    font-size: 14px !important;
    line-height: 1.75;
  }

  .hero .hero-actions .btn {
    width: min(86vw, 320px);
    min-height: 56px !important;
  }

  .intro .intro-feature-row {
    position: relative !important;
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 20px) / 3);
    gap: 10px;
    width: min(94vw, 520px) !important;
    height: auto !important;
    margin: 18px auto 0 !important;
    padding: 0 0 14px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    border: 0 !important;
    background: transparent !important;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 38px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 38px), transparent 100%);
    scrollbar-width: none;
  }

  .intro .intro-feature-row::-webkit-scrollbar {
    display: none;
  }

  .intro .intro-feature-row::after {
    content: "‹";
    position: sticky;
    left: 3px;
    z-index: 2;
    align-self: center;
    display: grid;
    place-items: center;
    width: 28px;
    height: 44px;
    margin-right: -28px;
    border: 1px solid rgba(184, 111, 94, .28);
    background: rgba(255, 250, 242, .78);
    color: var(--accent);
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    animation: mobileArrowNudge 1.9s ease-in-out infinite;
  }

  .intro .intro-feature-row article {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    min-height: 152px;
    padding: 14px 8px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    animation: none !important;
    scroll-snap-align: start;
    border: 1px solid rgba(23, 23, 23, .11);
    background: rgba(255, 250, 242, .72);
  }

  .intro-feature-row .feature-icon-img {
    width: 44px !important;
    height: 44px !important;
  }

  .intro-feature-row h3 {
    font-size: 17px !important;
    line-height: 1.1 !important;
  }

  .intro-feature-row p {
    max-width: 120px;
    font-size: 11px !important;
    line-height: 1.35 !important;
  }
}

@keyframes mobileArrowNudge {
  0%, 100% {
    opacity: .58;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.js-enabled .will-reveal,
  body.js-enabled .will-reveal.revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .intro .intro-feature-row::after {
    animation: none !important;
  }
}

/* Final hero hierarchy, mobile icons and interaction polish - July 12 */
.hero .hero-logo {
  margin-bottom: clamp(14px, 1.7vw, 26px) !important;
}

.hero .hero-content h1 {
  font-size: clamp(68px, 7.7vw, 146px) !important;
  line-height: .86 !important;
  text-shadow:
    0 4px 0 rgba(255, 255, 255, .08),
    0 18px 52px rgba(0, 0, 0, .72) !important;
}

.hero .hero-keywords {
  order: 3;
  margin: clamp(10px, 1.2vw, 18px) auto clamp(16px, 1.8vw, 26px) !important;
  font-size: clamp(34px, 3.2vw, 62px) !important;
  gap: clamp(12px, 1.45vw, 24px) !important;
  isolation: isolate;
}

.hero .hero-keywords span {
  -webkit-text-stroke: clamp(2.2px, .22vw, 4px) rgba(214, 139, 126, 1) !important;
  text-shadow:
    0 0 1px rgba(255, 255, 255, .9),
    0 0 13px rgba(214, 139, 126, .74),
    0 0 34px rgba(214, 139, 126, .36),
    0 18px 34px rgba(0, 0, 0, .62) !important;
}

.hero .hero-keywords::before,
.hero .hero-keywords::after {
  background: linear-gradient(90deg, transparent, rgba(255, 250, 242, .62), rgba(214, 139, 126, .86), transparent) !important;
}

.hero .hero-subtitle {
  order: 4;
}

.hero .hero-copy {
  order: 5;
  padding: 13px clamp(18px, 2vw, 34px);
  border-block: 1px solid rgba(231, 195, 110, .52);
  background: linear-gradient(90deg, transparent, rgba(30, 24, 18, .46), transparent);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .58);
}

.hero .hero-actions {
  order: 6;
}

.hero .hero-actions .btn {
  border-width: 2px !important;
  background: rgba(16, 15, 13, .34) !important;
  color: #fffdf8 !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .1),
    0 18px 42px rgba(0, 0, 0, .28) !important;
  backdrop-filter: blur(8px);
  font-size: clamp(18px, 1.12vw, 22px) !important;
}

.hero .hero-actions .btn:hover,
.hero .hero-actions .btn:focus-visible {
  background: #d68b7e !important;
  border-color: #d68b7e !important;
  color: #151310 !important;
  text-shadow: none !important;
}

.lightbox-arrow {
  font-family: "Assistant", system-ui, sans-serif !important;
  font-size: clamp(34px, 4vw, 58px) !important;
}

@media (max-width: 760px) {
  .hero .hero-logo {
    margin-bottom: 12px !important;
  }

  .hero .hero-content h1 {
    font-size: clamp(58px, 16vw, 92px) !important;
  }

  .hero .hero-keywords {
    font-size: clamp(26px, 8vw, 38px) !important;
    gap: 10px !important;
    margin: 10px auto 16px !important;
  }

  .hero .hero-keywords span {
    -webkit-text-stroke: 1.9px rgba(214, 139, 126, 1) !important;
  }

  .hero .hero-keywords::before,
  .hero .hero-keywords::after {
    width: clamp(28px, 12vw, 52px) !important;
  }

  .hero .hero-copy {
    max-width: min(92vw, 420px);
    padding: 9px 12px;
  }

  .hero .hero-actions .btn {
    width: min(86vw, 330px);
    min-height: 60px !important;
    font-size: 18px !important;
  }

  .intro .intro-feature-row {
    display: flex !important;
    direction: rtl;
    width: min(94vw, 520px) !important;
    max-width: calc(100vw - 24px);
    padding: 0 0 14px 28px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .intro .intro-feature-row::after {
    content: "\2190" !important;
    left: 0;
    width: 30px;
    height: 44px;
    margin-right: -30px;
    border-radius: 999px;
    background: rgba(255, 250, 242, .9);
    color: #b86f5e;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
  }

  .intro .intro-feature-row article {
    flex: 0 0 calc((100% - 20px) / 3);
    scroll-snap-align: start;
  }
}

/* Hero kicker aligned with section title language - July 12 */
.hero .hero-keywords {
  order: 3;
  margin: clamp(8px, 1vw, 14px) auto clamp(14px, 1.5vw, 22px) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: min(92vw, 780px);
  gap: clamp(10px, 1.15vw, 18px) !important;
  color: #d68b7e !important;
  font-family: "Assistant", system-ui, sans-serif !important;
  font-size: clamp(23px, 1.75vw, 34px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .52) !important;
}

.hero .hero-keywords span {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
  -webkit-text-stroke: 0 transparent !important;
  text-shadow: inherit !important;
}

.hero .hero-keywords::before,
.hero .hero-keywords::after {
  content: "" !important;
  display: block !important;
  width: clamp(54px, 6vw, 118px) !important;
  height: 1px !important;
  flex: 0 0 auto;
  background: linear-gradient(90deg, transparent, rgba(214, 139, 126, .95), rgba(255, 250, 242, .72)) !important;
}

.hero .hero-keywords::after {
  background: linear-gradient(90deg, rgba(255, 250, 242, .72), rgba(214, 139, 126, .95), transparent) !important;
}

.hero .hero-keywords i {
  width: 5px !important;
  height: 5px !important;
  border-radius: 999px;
  background: #d68b7e !important;
  box-shadow: 0 0 0 5px rgba(214, 139, 126, .12) !important;
}

@media (max-width: 760px) {
  .hero .hero-keywords {
    font-size: clamp(20px, 6vw, 29px) !important;
    gap: 9px !important;
    margin: 8px auto 14px !important;
    max-width: 96vw;
  }

  .hero .hero-keywords::before,
  .hero .hero-keywords::after {
    width: clamp(28px, 11vw, 54px) !important;
  }

  .hero .hero-keywords i {
    width: 4px !important;
    height: 4px !important;
  }
}

/* Reels cards: make the visual play icon pass clicks to the Instagram link */
.reel-card span,
.reel-card span::before {
  pointer-events: none !important;
}

/* Larger reels preview cards - July 13 */
.reels-section .reels-slider {
  max-width: min(96vw, 1260px) !important;
  margin-inline: auto;
}

.reels-section .reels-track {
  grid-auto-columns: clamp(250px, 20vw, 326px) !important;
  gap: clamp(18px, 1.8vw, 28px) !important;
  padding: clamp(10px, 1.5vw, 20px) clamp(10px, 1vw, 16px) clamp(20px, 2vw, 30px) !important;
}

.reels-section .reels-track .reel-card,
.reels-section .reel-card {
  width: 100% !important;
  min-width: 0 !important;
  min-height: auto !important;
  aspect-ratio: 9 / 16 !important;
}

@media (max-width: 760px) {
  .reels-section .reels-slider {
    max-width: 100vw !important;
  }

  .reels-section .reels-track {
    grid-auto-columns: min(76vw, 286px) !important;
    gap: 16px !important;
    padding-inline: 18px !important;
  }

  .reels-section .reels-track .reel-card,
  .reels-section .reel-card {
    min-height: auto !important;
  }
}

/* FAQ and recommendations sections - July 13 */
.testimonials-section {
  background: #141414;
  color: #fffaf2;
  overflow: hidden;
}

.testimonials-section .section-kicker,
.faq-section .section-kicker {
  color: #c98278 !important;
}

.testimonials-section .section-kicker::before,
.testimonials-section .section-kicker::after,
.faq-section .section-kicker::before,
.faq-section .section-kicker::after {
  background: #c98278 !important;
}

.testimonials-section .section-head p:not(.section-kicker) {
  color: rgba(255, 250, 242, 0.72);
}

.testimonial-feed {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: clamp(14px, 1.5vw, 22px);
  align-items: stretch;
  margin-top: clamp(28px, 4vw, 52px);
}

.testimonial-card {
  position: relative;
  min-height: clamp(260px, 25vw, 390px);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.08), rgba(201, 130, 120, 0.06)),
    #1c1c1c;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.testimonial-feed-screenshots {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin-inline: auto;
}

.testimonial-screenshot {
  min-height: clamp(430px, 44vw, 640px);
  padding: clamp(8px, 1vw, 12px);
  background: #fff;
}

.testimonial-screenshot img {
  object-fit: contain;
  border-radius: 5px;
  background: #fff;
}

.testimonial-feature {
  grid-row: span 2;
  min-height: clamp(420px, 42vw, 620px);
}

.testimonial-wide {
  grid-column: span 2;
}

.testimonial-placeholder {
  min-height: inherit;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 44px);
  text-align: center;
}

.testimonial-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 7px;
  pointer-events: none;
}

.testimonial-placeholder::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 58px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 6px 5px, #c98278 0 3px, transparent 4px),
    radial-gradient(circle at 23px 5px, #e4c374 0 3px, transparent 4px),
    radial-gradient(circle at 40px 5px, rgba(255, 250, 242, 0.72) 0 3px, transparent 4px);
}

.testimonial-placeholder span {
  font-size: 0.86rem;
  font-weight: 900;
  color: #c98278;
}

.testimonial-placeholder strong {
  max-width: 12ch;
  color: #fffaf2;
  font-size: clamp(2rem, 3.6vw, 4.1rem);
  line-height: 0.95;
}

.testimonial-placeholder small {
  max-width: 26ch;
  color: rgba(255, 250, 242, 0.72);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.65;
}

.faq-section {
  background: #f6efe3;
  color: #171717;
  overflow: hidden;
}

.faq-layout {
  max-width: 1120px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 40px);
}

.faq-item {
  border: 1px solid rgba(23, 23, 23, 0.13);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.62);
  box-shadow: 0 22px 54px rgba(21, 21, 21, 0.07);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2vw, 24px) clamp(18px, 2.5vw, 32px);
  cursor: pointer;
  list-style: none;
  color: #171717;
  font-size: clamp(1.25rem, 1.55vw, 1.75rem);
  font-weight: 900;
  line-height: 1.25;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 36px;
  place-items: center;
  border: 1px solid rgba(201, 130, 120, 0.65);
  color: #c98278;
  font-style: normal;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq-item summary i::before {
  content: "+";
  font-size: 1.45rem;
  line-height: 1;
}

.faq-item[open] summary i {
  background: #c98278;
  color: #fffaf2;
  transform: rotate(180deg);
}

.faq-item[open] summary i::before {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 clamp(18px, 2.5vw, 32px) clamp(20px, 2.2vw, 28px);
  color: rgba(23, 23, 23, 0.72);
  font-size: clamp(1.02rem, 1.1vw, 1.2rem);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .testimonial-feed {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-feed-screenshots {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .testimonial-feature,
  .testimonial-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: clamp(280px, 56vw, 460px);
  }
}

@media (max-width: 640px) {
  .testimonial-feed {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 18px 22px;
    margin-inline: -18px;
  }

  .testimonial-card {
    flex: 0 0 min(78vw, 330px);
    min-height: 380px;
    scroll-snap-align: center;
  }

  .testimonial-feed-screenshots .testimonial-card {
    flex-basis: min(82vw, 360px);
    min-height: 460px;
  }

  .testimonial-placeholder strong {
    font-size: 2.45rem;
  }

  .faq-item summary {
    align-items: flex-start;
  }
}

.accessibility-widget {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 90;
  direction: rtl;
  font-family: "Assistant", Arial, sans-serif;
}

.accessibility-toggle {
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  background: rgba(17, 17, 17, .92);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
}

.accessibility-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  display: none;
  min-width: 190px;
  padding: 10px;
  border: 1px solid rgba(216, 176, 103, .55);
  background: rgba(17, 17, 17, .96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .34);
}

.accessibility-panel.open {
  display: grid;
  gap: 8px;
}

.accessibility-panel button {
  padding: 10px 12px;
  border: 1px solid rgba(246, 240, 232, .18);
  background: rgba(246, 240, 232, .05);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: right;
  cursor: pointer;
}

.accessibility-panel button:hover,
.accessibility-panel button:focus-visible,
.accessibility-toggle:hover,
.accessibility-toggle:focus-visible {
  background: var(--gold);
  color: #17120a;
  outline: none;
}

.privacy-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 95;
  width: min(680px, calc(100vw - 36px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(216, 176, 103, .52);
  background: rgba(17, 17, 17, .96);
  color: var(--ink);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .42);
  transform: translateX(-50%);
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner p {
  margin: 0;
  color: rgba(246, 240, 232, .82);
  font-size: .98rem;
  line-height: 1.55;
}

.privacy-banner button {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.privacy-banner button:hover,
.privacy-banner button:focus-visible {
  background: var(--gold);
  color: #17120a;
  outline: none;
}

.a11y-large-text {
  font-size: 112%;
}

.a11y-links a {
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.a11y-high-contrast {
  filter: contrast(1.18);
}

.a11y-high-contrast .site-header,
.a11y-high-contrast .site-footer,
.a11y-high-contrast .accessibility-panel,
.a11y-high-contrast .privacy-banner {
  background: #000 !important;
}

.a11y-high-contrast a,
.a11y-high-contrast button {
  outline-color: #fff !important;
}

@media (max-width: 700px) {
  .accessibility-widget {
    right: 12px;
    bottom: 84px;
  }

  .accessibility-toggle {
    min-height: 42px;
    padding: 9px 14px;
    font-size: .95rem;
  }

  .privacy-banner {
    bottom: 12px;
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .privacy-banner button {
    width: 100%;
  }
}

/* Final production polish: memorial card and accessibility panel. */
.intro-memory {
  width: min(1040px, calc(100% - 32px));
  margin: clamp(12px, 1.6vw, 20px) auto clamp(8px, 1.2vw, 14px);
  padding: clamp(24px, 3vw, 40px) clamp(28px, 5vw, 72px);
  border: 1px solid rgba(183, 111, 96, .48);
  border-inline-width: 1px;
  background:
    linear-gradient(135deg, rgba(183, 111, 96, .13), rgba(226, 196, 130, .2), rgba(183, 111, 96, .08)),
    rgba(255, 249, 239, .72);
  box-shadow: 0 22px 58px rgba(29, 21, 13, .09);
  text-align: center;
}

.intro-memory h3 {
  margin-bottom: clamp(12px, 1.5vw, 18px);
  color: #161412;
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  line-height: 1.15;
}

.intro-memory p {
  max-width: 940px;
  color: rgba(23, 23, 23, .86);
  font-size: clamp(1.06rem, 1.12vw, 1.28rem);
  font-weight: 700;
  line-height: 1.85;
}

.intro-memory + .intro-text {
  margin-top: 0;
}

.intro-memory + .intro-text .section-kicker {
  margin-top: clamp(6px, 1vw, 12px);
}

.accessibility-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
  color: #fff;
}

.accessibility-toggle::before {
  content: "Aa";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #17120a;
  font-size: .82rem;
  font-weight: 900;
}

.accessibility-panel {
  width: min(340px, calc(100vw - 28px));
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
}

.accessibility-panel.open {
  display: block;
}

.accessibility-panel-head {
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(216, 176, 103, .38);
  background: linear-gradient(135deg, rgba(216, 176, 103, .18), rgba(183, 111, 96, .08));
}

.accessibility-panel-head strong,
.accessibility-panel-head small {
  display: block;
}

.accessibility-panel-head strong {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
}

.accessibility-panel-head small {
  margin-top: 4px;
  color: rgba(246, 240, 232, .72);
  font-size: .88rem;
}

.accessibility-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
}

.accessibility-panel button {
  min-height: 44px;
  border-radius: 6px;
  color: #fff;
  text-align: center;
}

.accessibility-panel button[aria-pressed="true"] {
  border-color: var(--gold);
  background: var(--gold);
  color: #17120a;
}

.accessibility-panel .a11y-reset {
  grid-column: 1 / -1;
  border-color: rgba(246, 240, 232, .3);
}

.accessibility-note {
  margin: 0;
  padding: 0 14px 14px;
  color: rgba(246, 240, 232, .64);
  font-size: .78rem;
  line-height: 1.45;
  text-align: center;
}

.a11y-readable-font,
.a11y-readable-font * {
  font-family: Arial, "Assistant", sans-serif !important;
  letter-spacing: 0 !important;
}

.a11y-dark-contrast {
  background: #000 !important;
  color: #fff !important;
}

.a11y-dark-contrast main,
.a11y-dark-contrast section,
.a11y-dark-contrast .site-footer,
.a11y-dark-contrast .intro-memory,
.a11y-dark-contrast .contact-section {
  background: #000 !important;
  color: #fff !important;
}

.a11y-dark-contrast p,
.a11y-dark-contrast h1,
.a11y-dark-contrast h2,
.a11y-dark-contrast h3,
.a11y-dark-contrast li {
  color: #fff !important;
}

.a11y-pause-motion,
.a11y-pause-motion *,
.a11y-pause-motion *::before,
.a11y-pause-motion *::after {
  scroll-behavior: auto !important;
  animation: none !important;
  transition: none !important;
}

.a11y-focus :focus-visible {
  outline: 3px solid #f2c870 !important;
  outline-offset: 4px !important;
}

@media (max-width: 700px) {
  .intro-memory {
    width: min(100%, calc(100vw - 28px));
    padding: 22px 18px;
  }

  .intro-memory p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .accessibility-panel {
    right: auto;
    left: 0;
  }
}

/* Mobile gallery swipe stability - July 18 */
.gallery-slider {
  max-width: 100%;
  overflow: hidden;
}

.gallery-track {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.gallery-track.dragging {
  scroll-behavior: auto;
}

@media (hover: none), (pointer: coarse) {
  .gallery-track {
    cursor: auto;
    user-select: auto;
    touch-action: pan-x pan-y;
    scroll-snap-type: x mandatory;
  }

  .gallery-track img {
    pointer-events: auto;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
  }
}

@media (max-width: 700px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .gallery {
    overflow: hidden;
  }

  .gallery-track {
    grid-auto-columns: minmax(78vw, 82vw);
    gap: 12px;
    margin-inline: -18px;
    padding: 0 18px 16px;
    scroll-padding-inline: 18px;
  }

  .gallery-track img {
    width: 100%;
  }
}
