:root {
  --bg: #030303;
  --panel: #080808;
  --ink: #f6f2eb;
  --muted: #a9a29b;
  --line: rgba(255, 255, 255, 0.22);
  --pink: #ff087d;
  --wine: #42001f;
  --yellow: #ffc400;
  --green: #68d66f;
  --glass: rgba(255, 255, 255, 0.06);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 8, 125, 0.15), transparent 28%),
    radial-gradient(circle at 78% 10%, rgba(255, 196, 0, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #030303;
  background-size: auto, auto, 92px 92px, auto;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: center;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 70px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
  transition: background 0.2s ease, padding 0.2s ease;
}

.site-header.is-scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 20px;
  line-height: 1;
}

.brand span::after {
  content: ".";
  color: var(--pink);
}

.brand small {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 5px;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 44px);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.header-call {
  justify-self: end;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 130px clamp(20px, 6vw, 84px) 70px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/bacaro-hero.png") center 42% / cover no-repeat;
  transform: scale(1.03);
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding-left: clamp(0px, 7vw, 86px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--pink);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(86px, 14vw, 210px);
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(255, 8, 125, 0.22);
}

h1::after,
.contact-panel h2::after {
  content: ".";
  color: var(--pink);
}

.hero-copy {
  width: min(560px, 100%);
  color: #ddd6cf;
  font-family: Arial, sans-serif;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  border-color: var(--pink);
  background: var(--pink);
  color: white;
  box-shadow: 0 14px 34px rgba(255, 8, 125, 0.25);
}

.btn-ghost:hover {
  border-color: var(--yellow);
}

.hero-frame {
  position: absolute;
  width: min(18vw, 210px);
  height: min(18vw, 210px);
  border-color: var(--wine);
  opacity: 0.95;
}

.hero-frame-a {
  right: 8vw;
  top: 31vh;
  border-top: 10px solid var(--wine);
  border-right: 10px solid var(--wine);
}

.hero-frame-b {
  left: 0;
  bottom: 7vh;
  border-left: 10px solid var(--wine);
  border-bottom: 10px solid var(--wine);
}

.hero-side {
  position: absolute;
  right: clamp(16px, 4vw, 56px);
  bottom: 64px;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.15);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.8;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.intro-strip {
  width: min(var(--max), calc(100% - 40px));
  margin: -34px auto 70px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #070707;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-strip div {
  min-height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip strong {
  color: var(--yellow);
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.9;
  text-transform: uppercase;
}

.intro-strip span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 92px auto 40px;
}

.services-intro {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.services-intro p:last-child {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-pill {
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 22px;
  text-align: center;
  color: var(--ink);
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 0.95;
  text-transform: uppercase;
  background:
    linear-gradient(150deg, rgba(255, 196, 0, 0.12), transparent 36%),
    linear-gradient(25deg, rgba(255, 8, 125, 0.13), transparent 42%),
    #080808;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.34);
}

.feature-section {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 7vw, 100px);
  align-items: center;
  padding: 74px 0;
}

.feature-section-flipped {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature-section-flipped .feature-copy {
  order: 2;
}

.feature-section-flipped .feature-visual {
  order: 1;
}

.section-kicker {
  position: absolute;
  left: 0;
  top: 62px;
  color: var(--ink);
  font-size: 28px;
}

.feature-copy {
  position: relative;
  padding-left: 64px;
}

.feature-copy .line {
  position: absolute;
  left: 0;
  top: 39px;
  width: 48px;
  height: 2px;
  background: var(--line);
}

.feature-copy h2,
.contact-panel h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
}

.feature-copy p:not(.eyebrow),
.contact-panel li,
.site-footer p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.feature-visual {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 36px 24px 0 auto;
  width: 66%;
  border-right: 10px solid var(--wine);
  border-bottom: 10px solid var(--wine);
  z-index: -1;
}

.feature-visual::after {
  content: none;
}

.aperitivo-visual,
.drink-visual {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.72);
}

.aperitivo-visual {
  background-image: url("b6511783-4b32-4710-9e9b-4a82a1051b70.JPG");
  background-position: center;
}

.drink-visual {
  background-image: url("a763ad0f-f48b-4438-acb1-5f4f976a3bcc.JPG");
  background-position: center;
}

.menu-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 88px auto 120px;
}

.ritual-section,
.gallery-section,
.map-section,
.timeline-section,
.booking-band,
.contact-directory,
.hours-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 96px auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 4vw, 46px);
  margin-bottom: 42px;
}

.section-heading span {
  height: 1px;
  background: var(--line);
}

.section-heading h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(58px, 8vw, 116px);
  line-height: 1;
  text-transform: uppercase;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.menu-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-tabs button.is-active {
  border-color: var(--yellow);
  color: var(--yellow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.menu-item {
  position: relative;
  min-height: 250px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 8, 125, 0.14), transparent 32%),
    #080808;
  border: 1px solid rgba(255, 255, 255, 0.11);
  overflow: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.menu-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 196, 0, 0.45);
}

.menu-item.is-hidden {
  display: none;
}

.item-number {
  color: rgba(255, 255, 255, 0.16);
  font-size: 76px;
  line-height: 0.8;
}

.menu-item h3 {
  margin: 28px 0 12px;
  color: var(--yellow);
  font-size: 34px;
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-item p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.menu-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 22px;
  color: #ddd6cf;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.menu-prices-stacked {
  display: grid;
  gap: 8px;
  align-items: start;
}

.price-value {
  color: var(--pink);
  font-size: 24px;
  letter-spacing: 0;
}

.menu-item strong {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--pink);
  font-size: 32px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ritual-card,
.timeline-section article,
.contact-directory article {
  position: relative;
  min-height: 260px;
  padding: 32px;
  background:
    linear-gradient(160deg, rgba(255, 196, 0, 0.13), transparent 34%),
    linear-gradient(25deg, rgba(255, 8, 125, 0.12), transparent 40%),
    #080808;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ritual-card span,
.timeline-section span,
.contact-directory span {
  color: var(--pink);
  font-size: 46px;
  line-height: 1;
}

.ritual-card h3,
.timeline-section h2,
.contact-directory h2 {
  margin: 28px 0 14px;
  color: var(--yellow);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.9;
  text-transform: uppercase;
}

.ritual-card p,
.gallery-copy p,
.map-info p,
.timeline-section p,
.booking-band p,
.contact-directory p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.gallery-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-areas:
    "hero copy"
    "hero a"
    "b a";
  gap: 18px;
}

.gallery-tile {
  min-height: 260px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.55);
}

.gallery-hero {
  grid-area: hero;
  min-height: 620px;
  background-image: url("6a4962a1-e3c7-4272-bbec-f73298da6e16.JPG");
}

.gallery-a {
  grid-area: a;
  min-height: 390px;
}

.gallery-b {
  grid-area: b;
  background-image: url("25b18e7d-98f5-4b6e-9c4b-5ec879abb1a3.JPG");
  background-position: center 58%;
}

.gallery-copy {
  grid-area: copy;
  padding: clamp(26px, 5vw, 58px);
  background: #080808;
  border-left: 10px solid var(--wine);
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
}

.gallery-copy h2,
.map-info h2,
.booking-band h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 90px;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: clamp(30px, 7vw, 90px);
}

.map-section {
  margin-bottom: 120px;
}

.map-layout {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  min-height: 480px;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-info {
  padding: clamp(28px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.map-info .btn + .btn {
  margin-top: 12px;
}

.map-layout iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.1);
}

.page-hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 84px) 72px;
  overflow: hidden;
  background: url("assets/bacaro-hero.png") center / cover no-repeat;
}

.page-hero > div {
  position: relative;
  width: min(850px, 100%);
}

.menu-page-hero {
  background-image: url("assets/bacaro-hero.png");
  background-position: center 42%;
}

.events-page-hero,
.contact-page-hero {
  background-position: center;
}

.page-menu {
  margin-top: 76px;
  margin-bottom: 80px;
}

.bacaro-story {
  margin-top: 84px;
  margin-bottom: 24px;
}

.story-panel {
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 196, 0, 0.08), transparent 34%),
    linear-gradient(35deg, rgba(255, 8, 125, 0.1), transparent 40%),
    #080808;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 10px solid var(--wine);
}

.story-panel p {
  max-width: 980px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.story-panel p:last-child {
  margin-bottom: 0;
}

.menu-grid-large {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.booking-band {
  min-height: 360px;
  padding: clamp(34px, 6vw, 76px);
  display: grid;
  align-content: center;
  background: url("6a4962a1-e3c7-4272-bbec-f73298da6e16.JPG") center / cover no-repeat;
  border-left: 10px solid var(--wine);
}

.booking-band h2 {
  max-width: 900px;
}

.contact-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-word {
  position: absolute;
  left: -18px;
  top: 42px;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(58px, 11vw, 150px);
  line-height: 0.75;
  writing-mode: vertical-rl;
}

.contact-image {
  min-height: 430px;
  background: url("e95d97da-924a-4bcf-b42a-cd8460f050ef.JPG") center / cover no-repeat;
  border-left: 10px solid var(--wine);
  border-bottom: 10px solid var(--wine);
}

.contact-panel {
  padding: clamp(28px, 5vw, 58px) 0;
}

.contact-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hours-preview {
  margin-top: 28px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-preview-title {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 24px;
  text-transform: uppercase;
}

.hours-preview p {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.hours-preview p:last-child {
  margin-bottom: 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hours-card {
  min-height: 210px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(255, 196, 0, 0.11), transparent 34%),
    linear-gradient(25deg, rgba(255, 8, 125, 0.1), transparent 40%),
    #080808;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hours-card span {
  color: var(--pink);
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hours-card h3 {
  margin: 24px 0 10px;
  color: var(--yellow);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.95;
  text-transform: uppercase;
}

.hours-card p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.hours-card-sunday {
  border-color: rgba(255, 196, 0, 0.34);
}

.contact-panel li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: var(--pink);
}

.site-footer {
  min-height: 116px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 70px);
  background: var(--wine);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
  background: rgba(255, 196, 0, 0.12);
}

.social-links-large a {
  width: 50px;
  height: 50px;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 30;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 58px rgba(37, 211, 102, 0.52);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    padding: 20px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    justify-self: center;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    gap: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.72);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-call {
    font-size: 0;
  }

  .header-call::before {
    content: "CALL";
    font-size: 11px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 120px;
    align-items: end;
  }

  .hero-media {
    background-position: 47% center;
  }

  .hero-side {
    display: none;
  }

  .intro-strip,
  .feature-section,
  .feature-section-flipped,
  .services-grid,
  .menu-grid,
  .contact-section,
  .ritual-grid,
  .gallery-section,
  .map-layout,
  .timeline-section,
  .contact-directory,
  .hours-grid {
    grid-template-columns: 1fr;
  }

  .gallery-section {
    grid-template-areas:
      "copy"
      "hero"
      "a"
      "b";
  }

  .gallery-hero {
    min-height: 440px;
  }

  .map-layout iframe {
    min-height: 390px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .intro-strip {
    margin-top: 0;
  }

  .feature-section,
  .services-section,
  .menu-section,
  .ritual-section,
  .gallery-section,
  .map-section,
  .timeline-section,
  .booking-band,
  .contact-directory,
  .hours-section {
    margin-top: 72px;
    margin-bottom: 72px;
  }

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

  .feature-section-flipped .feature-copy,
  .feature-section-flipped .feature-visual {
    order: initial;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 14px;
    min-height: 68px;
  }

  .site-header.is-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand {
    font-size: 17px;
    letter-spacing: 3px;
  }

  .brand small {
    font-size: 8px;
    letter-spacing: 4px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle span {
    width: 26px;
    height: 2px;
    margin: 6px auto;
  }

  .site-nav {
    inset: 68px 12px auto;
  }

  .hero {
    min-height: 82svh;
    padding: 100px 18px 42px;
  }

  h1 {
    font-size: clamp(70px, 22vw, 104px);
    line-height: 0.86;
  }

  .hero-content {
    padding-left: 0;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 3px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
  }

  .hero-frame {
    opacity: 0.5;
  }

  .hero-frame-a {
    right: -18px;
    top: 25vh;
  }

  .intro-strip {
    width: 100%;
    grid-template-columns: 1fr;
    border-left: 0;
    border-right: 0;
  }

  .intro-strip div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .intro-strip strong {
    font-size: 28px;
  }

  .intro-strip span {
    font-size: 10px;
  }

  .feature-section,
  .services-section,
  .menu-section,
  .contact-section,
  .ritual-section,
  .gallery-section,
  .map-section,
  .timeline-section,
  .booking-band,
  .contact-directory,
  .hours-section {
    width: calc(100% - 32px);
  }

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

  .story-panel {
    padding: 22px;
    border-left-width: 7px;
  }

  .story-panel p {
    font-size: 14px;
    line-height: 1.65;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-pill {
    min-height: 0;
    padding: 20px 18px;
    font-size: 28px;
  }

  .feature-copy {
    padding-left: 0;
  }

  .feature-copy h2,
  .contact-panel h2,
  .gallery-copy h2,
  .map-info h2,
  .booking-band h2 {
    font-size: clamp(38px, 13vw, 58px);
    line-height: 0.92;
  }

  .feature-copy p:not(.eyebrow),
  .contact-panel li,
  .ritual-card p,
  .gallery-copy p,
  .map-info p,
  .timeline-section p,
  .booking-band p,
  .contact-directory p {
    font-size: 14px;
    line-height: 1.6;
  }

  .feature-copy .line {
    display: none;
  }

  .section-kicker {
    position: static;
    margin-bottom: 18px;
  }

  .feature-visual {
    min-height: 360px;
    background-size: cover;
  }

  .feature-visual::before {
    inset: 24px 14px 0 auto;
  }

  .contact-word {
    display: none;
  }

  .contact-image {
    min-height: 320px;
  }

  .site-footer {
    align-items: flex-start;
    padding: 28px 18px 94px;
  }

  .footer-links {
    display: grid;
    gap: 12px;
  }

  .social-links a {
    width: 42px;
    height: 42px;
  }

  .page-hero {
    min-height: 58svh;
    padding: 104px 18px 44px;
  }

  .page-hero h1 {
    font-size: clamp(68px, 23vw, 106px);
  }

  .ritual-card,
  .timeline-section article,
  .contact-directory article,
  .hours-card,
  .menu-item {
    min-height: 0;
    padding: 22px;
  }

  .ritual-card span,
  .timeline-section span,
  .contact-directory span,
  .item-number {
    font-size: 42px;
  }

  .ritual-card h3,
  .timeline-section h2,
  .contact-directory h2,
  .menu-item h3 {
    margin-top: 20px;
    font-size: 31px;
    line-height: 0.98;
  }

  .menu-item strong {
    position: static;
    display: block;
    margin-top: 22px;
    font-size: 30px;
  }

  .menu-prices {
    margin-top: 18px;
    font-size: 11px;
  }

  .price-value {
    font-size: 21px;
  }

  .gallery-copy {
    padding: 24px;
  }

  .gallery-hero,
  .gallery-a,
  .gallery-b {
    min-height: 310px;
  }

  .map-layout {
    min-height: auto;
  }

  .map-info {
    padding: 24px;
  }

  .map-layout iframe {
    min-height: 330px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 380px) {
  .brand {
    font-size: 15px;
    letter-spacing: 2px;
  }

  .header-call::before {
    font-size: 10px;
  }

  h1,
  .page-hero h1 {
    font-size: 64px;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading h2 {
    font-size: 46px;
  }

  .feature-copy h2,
  .contact-panel h2,
  .gallery-copy h2,
  .map-info h2,
  .booking-band h2 {
    font-size: 36px;
  }
}
