/* ============================================================
   O'SULLIVAN'S — Irish Pub V2
   Style: Raw & Brutalist
   Mobile-first: base styles = mobile, min-width = larger screens
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;700&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap");

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

:root {
  --white: #f2ede6;
  --off: #e8e0d0;
  --paper: #d4c9b0;
  --black: #0a0a08;
  --black2: #111108;
  --black3: #1a1a12;
  --green: #1a4d2e;
  --green2: #2a7a48;
  --green3: #3db566;
  --green4: #a8e6be;
  --red: #8b1a1a;
  --red2: #c42b2b;
  --muted: #6b6550;
  --border: #2a2a1e;
  --border2: #3a3a28;

  /* Typography scale — mobile first */
  --fs-xs: 0.7rem;
  --fs-sm: 0.85rem;
  --fs-base: 1rem;
  --fs-md: 1.15rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-2xl: 3rem;
  --fs-3xl: 5rem;
  --fs-hero: clamp(4.5rem, 22vw, 14rem);
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
}

/* ─── SELECTION ─── */
::selection {
  background: var(--green);
  color: var(--white);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--green2);
}

/* ─── NOISE TEXTURE ─── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 56px;
  background: var(--black);
  border-bottom: 2px solid var(--green);
}

@media (min-width: 768px) {
  .header {
    padding: 0 2.5rem;
    height: 64px;
  }
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-main {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  color: var(--green3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .logo-main {
    font-size: 1.8rem;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 0;
}
@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-left: 1px solid var(--border);
  transition:
    color 0.15s,
    background 0.15s;
  white-space: nowrap;
}
.nav a:hover,
.nav a.active {
  color: var(--green3);
  background: rgba(42, 122, 72, 0.08);
}
.nav a.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  border-color: var(--green);
  margin-left: 0.5rem;
}
.nav a.nav-cta:hover {
  background: var(--green2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--border2);
  overflow: hidden;
}
.lang-btn {
  font-family: "Courier Prime", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.28rem 0.6rem;
  color: var(--muted);
  transition: all 0.15s;
  min-width: 36px;
  min-height: 32px; /* touch target */
}
.lang-btn.active {
  background: var(--green);
  color: var(--white);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px; /* touch target */
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

/* ─── MOBILE DRAWER ─── */
.mobile-nav {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black2);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  border-top: 2px solid var(--green);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  font-family: "Bebas Neue", sans-serif;
  font-size: var(--fs-2xl);
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition:
    color 0.15s,
    padding-left 0.2s;
  min-height: 60px;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover {
  color: var(--green3);
  padding-left: 0.5rem;
}
.mobile-nav .lang-toggle {
  margin-top: 2rem;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .mobile-nav {
    top: 64px;
  }
}

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 1.25rem 2rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--green);
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 2.5rem 3rem;
  }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: grayscale(0.4);
  z-index: 0;
}

.hero-ticker {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  background: var(--green);
  overflow: hidden;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--green2);
}
@media (min-width: 768px) {
  .hero-ticker {
    top: 64px;
  }
}
.hero-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerMove 120s linear infinite !important;
  width: max-content;
}
.hero-ticker-track span {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 2rem;
}
.hero-ticker-track span::before {
  content: "◆";
  margin-right: 2rem;
  opacity: 0.6;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-eyebrow {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green3);
  margin-bottom: 1rem;
  position: relative;
  opacity: 0;
  animation: brutIn 0.5s 0.1s forwards;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: var(--fs-hero);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.15em;
  opacity: 0;
  animation: brutIn 0.6s 0.2s forwards;
}
.hero h1 .green {
  color: var(--green3);
}
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-sub-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  opacity: 0;
  animation: brutIn 0.6s 0.4s forwards;
}
@media (min-width: 600px) {
  .hero-sub-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.hero-desc {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-sm);
  color: var(--paper);
  line-height: 1.6;
  max-width: 380px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-corner-badge {
  position: absolute;
  top: 5rem;
  right: 1.25rem;
  width: 88px;
  height: 88px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  animation: brutIn 0.6s 0.6s forwards;
}
@media (min-width: 768px) {
  .hero-corner-badge {
    top: 6rem;
    right: 2.5rem;
    width: 110px;
    height: 110px;
  }
}
.hero-corner-badge .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: var(--green3);
  line-height: 1;
}
.hero-corner-badge .label {
  font-family: "Courier Prime", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 8px;
  text-align: center;
}

@keyframes brutIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  padding: 0.8rem 1.5rem;
  border: 2px solid;
  transition: all 0.15s;
  min-height: 44px; /* touch target */
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green2);
  border-color: var(--green2);
}
.btn-ghost {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
}
.btn-green-outline {
  background: transparent;
  border-color: var(--green2);
  color: var(--green3);
}
.btn-green-outline:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ─── SECTION BASE ─── */
.section {
  padding: 4rem 1.25rem;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 2.5rem;
  }
}
@media (min-width: 1200px) {
  .section {
    padding: 8rem 2.5rem;
  }
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--green3);
  padding: 0.2rem 0.6rem;
  margin-bottom: 1.5rem;
}
.section-tag::before {
  content: "01";
  font-size: 0.6em;
  opacity: 0.7;
}
.section-tag[data-n]::before {
  content: attr(data-n);
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.section-title .green {
  color: var(--green3);
}

/* ─── ABOUT ─── */
.about-section {
  background: var(--black2);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.about-img-col {
  position: relative;
}
@media (min-width: 900px) {
  .about-img-col {
    border-right: 2px solid var(--border);
    padding-right: 3rem;
  }
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--black3);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
/* Real photo: .about-img img { width:100%; height:100%; object-fit:cover; display:block; } */
.about-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green);
  padding: 0.5rem 1rem;
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.about-img-placeholder {
  font-family: "Bebas Neue", sans-serif;
  font-size: 6rem;
  color: var(--border2);
  opacity: 0.5;
}

.about-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--border2);
  margin-top: 1.5rem;
}
.stat-block {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border2);
}
.stat-block:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: var(--fs-2xl);
  color: var(--green3);
  line-height: 1;
}
.stat-label {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .about-text-col {
    padding-left: 3rem;
  }
}

.about-text-col p {
  font-size: var(--fs-sm);
  color: var(--paper);
  line-height: 1.8;
}
.about-quote {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--green3);
  line-height: 1.1;
  border-left: 4px solid var(--green);
  padding-left: 1rem;
}

/* ─── MENU ─── */
.menu-section {
  background: var(--black);
}

.menu-tabs {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 2px solid var(--border2);
  margin-bottom: 0;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex-shrink: 0;
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.85rem 1.25rem;
  border-right: 1px solid var(--border2);
  transition: all 0.15s;
  min-height: 44px;
}
.menu-tab:last-child {
  border-right: none;
}
.menu-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.menu-tab.active {
  color: var(--black);
  background: var(--green3);
}

.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
}

.menu-list {
  border: 2px solid var(--border2);
  border-top: none;
}

.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  min-height: 44px;
}
.menu-row:last-child {
  border-bottom: none;
}
.menu-row:hover {
  background: rgba(42, 122, 72, 0.07);
}

.menu-row-left {
  flex: 1;
}
.menu-row-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--white);
}
.menu-row-desc {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: 2px;
  font-style: italic;
}
.menu-row-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 5px;
}
.menu-badge {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 6px;
  border: 1px solid var(--green2);
  color: var(--green3);
}
.menu-badge.red {
  border-color: var(--red);
  color: #e06060;
}
.menu-row-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: var(--green3);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ─── GALLERY ─── */
.gallery-section {
  background: var(--black2);
  border-top: 2px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--black3);
  aspect-ratio: 1;
}

.gallery-ph {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--black3);
  transition: background 0.2s;
}
/* Real photo styles */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item:hover .gallery-ph {
  background: var(--black2);
}

.gallery-ph-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: var(--border2);
}
.gallery-ph-label {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--border2);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--green3);
  text-align: center;
  padding: 0 1rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open {
  display: flex;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--green);
  border: none;
  cursor: pointer;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.15s;
}
.lightbox-close:hover {
  background: var(--green2);
}
.lightbox-content {
  max-width: 900px;
  width: 100%;
  border: 2px solid var(--green);
  aspect-ratio: 4/3;
  background: var(--black3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--border2);
  letter-spacing: 0.05em;
}

/* ─── EVENTS ─── */
.events-section {
  background: var(--black);
  border-top: 2px solid var(--border);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0;
  background: var(--black2);
  border: 1px solid var(--border2);
  overflow: hidden;
  transition: border-color 0.15s;
  min-height: 44px;
}
@media (min-width: 600px) {
  .event-card {
    grid-template-columns: 90px 1fr auto;
  }
}
.event-card:hover {
  border-color: var(--green2);
}

.event-date-col {
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  text-align: center;
}
.event-day {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}
.event-mon {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.event-body {
  padding: 1rem 1.25rem;
}
.event-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .event-title {
    font-size: 1.6rem;
  }
}
.event-desc {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  color: var(--muted);
  font-style: italic;
}
.event-tag-col {
  display: none;
  padding: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 600px) {
  .event-tag-col {
    display: flex;
  }
}
.event-pill {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border2);
  color: var(--muted);
  white-space: nowrap;
}
.event-pill.live {
  border-color: var(--red);
  color: var(--red2);
}

/* ─── BOOKING ─── */
.booking-section {
  background: var(--black2);
  border-top: 3px solid var(--green);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.35rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--black3);
  border: 2px solid var(--border2);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs-base);
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  min-height: 44px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green3);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233db566' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-table {
  border: 2px solid var(--border2);
}
.info-table-head {
  background: var(--green);
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.6rem 1rem;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--border);
  font-size: var(--fs-sm);
  min-height: 44px;
}
.info-row span:first-child {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.info-row span:last-child {
  color: var(--white);
  text-align: right;
}

.wa-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(37, 211, 102, 0.08);
  border: 2px solid rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: all 0.15s;
  min-height: 44px;
}
.wa-cta:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.5);
}
.wa-cta svg {
  width: 28px;
  height: 28px;
  fill: #25d366;
  flex-shrink: 0;
}
.wa-cta-text {
}
.wa-cta-label {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4ade80;
}
.wa-cta-sub {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: 2px;
  font-family: "Courier Prime", monospace;
  font-style: italic;
}

/* ─── REVIEWS ─── */
.reviews-section {
  background: var(--black);
  border-top: 2px solid var(--border);
}

.reviews-wrap {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  margin: 0 -1.25rem;
}
@media (min-width: 768px) {
  .reviews-wrap {
    margin: 0 -2.5rem;
  }
}

.reviews-track {
  display: flex;
  gap: 2px;
  animation: marquee 200s linear infinite !important;
  width: max-content;
  padding: 0.5rem 1.25rem;
}
.reviews-track:hover {
  animation-play-state: paused;
}

.review-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--black2);
  border: 2px solid var(--border2);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
@media (min-width: 768px) {
  .review-card {
    width: 340px;
  }
}
.review-card:hover {
  border-color: var(--green2);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.review-stars {
  display: flex;
  gap: 2px;
}
.review-stars span {
  color: var(--green3);
  font-size: 0.8rem;
}
.review-platform {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-text {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--paper);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 32px;
  height: 32px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--white);
}

/* ─── MAP ─── */
.map-section {
  background: var(--black2);
  border-top: 2px solid var(--border);
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid var(--border2);
}
@media (min-width: 900px) {
  .map-layout {
    grid-template-columns: 340px 1fr;
  }
}

.map-sidebar {
  padding: 2rem 1.5rem;
  border-bottom: 2px solid var(--border2);
}
@media (min-width: 900px) {
  .map-sidebar {
    border-bottom: none;
    border-right: 2px solid var(--border2);
  }
}

.map-sidebar h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.map-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
}
.map-row:last-of-type {
  border-bottom: none;
}
.map-row-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.map-row-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}
.map-row-text {
}
.map-row-key {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.map-row-val {
  font-size: var(--fs-sm);
  color: var(--paper);
  font-style: italic;
}

.map-embed {
  height: 400px;
  position: relative;
  background: var(--black3);
}
@media (min-width: 900px) {
  .map-embed {
    height: 480px;
  }
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.map-ph {
  text-align: center;
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.map-ph-icon {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: var(--border2);
  line-height: 1;
}
.map-ph-label {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--border2);
  margin-top: 0.5rem;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  border-top: 3px solid var(--green);
  padding: 3rem 1.25rem 1.5rem;
}
@media (min-width: 768px) {
  .footer {
    padding: 4rem 2.5rem 2rem;
  }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand .logo-main {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.footer-brand .logo-sub {
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green3);
  margin-bottom: 1rem;
}
.footer-col a,
.footer-col p {
  display: block;
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-sm);
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
  font-style: italic;
  min-height: 24px;
}
.footer-col a:hover {
  color: var(--green3);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-copy {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  color: var(--muted);
  letter-spacing: 0.08em;
}
.footer-copy a {
  color: var(--green3);
  text-decoration: none;
}
.footer-social {
  display: flex;
  gap: 2px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--black2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
}
.footer-social a:hover svg {
  stroke: var(--white);
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: waPulse 3s ease infinite;
  transition: transform 0.15s;
}
.wa-float:hover {
  transform: scale(1.1);
  animation: none;
}
.wa-float svg {
  width: 26px;
  height: 26px;
  fill: white;
}
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  60% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ─── BOOKING SUCCESS ─── */
.booking-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  border: 2px solid var(--green);
}
.booking-success-icon {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  color: var(--green3);
  line-height: 1;
}
.booking-success h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  margin: 0.5rem 0;
}
.booking-success p {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-sm);
  color: var(--muted);
  font-style: italic;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
