/* === Font pairing (Gabarito + Plus Jakarta Sans) === */
:root {
  --font-display: "Gabarito", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
  font-family: var(--font-body);
}

h1,
h2,
h3,
.brand,
.display {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

nav,
.btn,
small,
.badge,
.meta {
  font-family: var(--font-body);
}

:root {
  /* === PALETTE (Existing) === */
  --rose: #CD2C58;
  --rose-700: #a92f46;
  --peach: #FFC69D;
  /* apricot */
  --blush: #FFE6D4;
  /* creamy base */
  --accent: #E06B80;
  /* soft pink */
  --ink: #1e1d1d;
  --muted: #6e6e6e;
  --paper: #fff;
  --bg: #f6e1d2;
  --bg-2: #f3d7c6;

  /* === SPACING SYSTEM (New) === */
  --space-xs: 0.5rem;
  /* 8px */
  --space-sm: 1rem;
  /* 16px */
  --space-md: 1.5rem;
  /* 24px */
  --space-lg: 2.5rem;
  /* 40px */
  --space-xl: 4rem;
  /* 64px */
  --section-gap: clamp(3rem, 5vw, 5rem);
  /* Consistent section spacing */
  --container-max: 1200px;
  --gutter: clamp(16px, 4vw, 24px);

  /* === RADII (Premium Feel) === */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* === SHADOWS (Soft & Layered) === */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
  /* Card default */
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  /* Flying/Hover */
  --ring: 0 0 0 3px rgba(205, 44, 88, .15);

  /* === TYPOGRAPHY SCALING === */
  --lh-body: 1.65;
  --lh-tight: 1.15;
}

/* ===== GLOBAL RESET ===== */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.display {
  font-family: var(--font-display);
  line-height: var(--lh-tight);
  color: var(--ink);
  margin-top: 0;
}

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

.container {
  width: min(var(--container-max), 92%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-gap);
}

.section-sm {
  padding-block: calc(var(--section-gap) / 2);
}

/* ===== ACCESSIBILITY ===== */
.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

/* ===== PAGE HERO SECTIONS ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem clamp(1rem, 3vw, 3rem);
  margin: 6px auto 18px;
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.page-hero * {
  position: relative;
  z-index: 1;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  height: 60%;
  width: 60%;
  background: radial-gradient(45% 55% at 70% 30%, rgba(224, 107, 128, .30), transparent 60%),
    radial-gradient(35% 45% at 20% 80%, rgba(255, 198, 157, .35), transparent 60%);
  filter: blur(18px);
  pointer-events: none;
}

.page-hero .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--rose);
  font-weight: 800;
  opacity: .9;
  font-size: .8rem;
}

.page-hero h1 {
  font-size: clamp(28px, 4.5vw, 42px);
  margin: .35em 0 .25em;
  letter-spacing: -.02em;
}

.page-hero p {
  color: #333;
}

.page-hero .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Hero variants */
.page-hero.hero-menu {
  background: linear-gradient(135deg, #FFF8F4 0%, #FFF1EB 50%, #FFEDE8 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.page-hero.hero-gallery {
  background: linear-gradient(135deg, #FFF9F6 0%, #FFF3EF 55%, #FFEFEA 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.page-hero.hero-about {
  background: linear-gradient(135deg, #FFF8F5 0%, #FFF2F0 52%, #FFEFEF 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.page-hero.hero-book {
  background: linear-gradient(135deg, #FFF9F7 0%, #FFF4F1 56%, #FFF0ED 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.page-hero.hero-contact {
  background: linear-gradient(135deg, #FFF9F7 0%, #FFF3F0 54%, #FFEFEF 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.page-hero.hero-booking {
  background: linear-gradient(135deg, #FFFAF8 0%, #FFF4F1 56%, #FFF0ED 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.page-hero-wrap {
  background: linear-gradient(180deg, #FFE6D4, rgba(255, 230, 212, 0));
  padding-top: 4px;
}

/* ===== ENHANCED HERO SECTION ===== */
.hero-wrap {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 230, 212, 0.8) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 198, 157, 0.6) 0%, transparent 50%),
    linear-gradient(135deg,
      #f8e5d4 0%,
      #f4dcc8 25%,
      #f2d7c4 50%,
      #f0d2c0 75%,
      #eeccbc 100%);
  padding: 32px 0 40px;
  min-height: 65vh;
}

@media (max-width: 768px) {
  .hero-wrap {
    min-height: auto;
    padding-bottom: 24px;
  }
}

.hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(199, 59, 87, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(224, 107, 128, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  filter: blur(40px) saturate(130%);
  opacity: 0.5;
  transform: scale(1.1);
}

.hero-blur-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 45%, rgba(199, 59, 87, .08) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(199, 59, 87, .06) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, .1) 100%);
  backdrop-filter: blur(1px);
}

/* === PREMIUM CARD STYLES === */
.card,
.content-card,
.header-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 4vw, 3rem);
  /* Responsive padding */
  border: 1px solid rgba(255, 255, 255, 0.4);
  /* Subtle glass border */
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Specific overrides for header cards to stand out */
.header-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "lead carousel"
    "welcome welcome";
  gap: 32px 48px;
  align-items: start;
}

.lead {
  grid-area: lead;
  display: flex;
  align-items: center;
}

.lead-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .15), 0 0 0 1px rgba(255, 255, 255, .5);
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease;
  position: relative;
  animation: slideInLeft 0.8s ease-out;
}

.lead-card::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(199, 59, 87, .08) 0%, transparent 70%);
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lead-card:hover::before {
  opacity: 1;
}

.lead-card:hover {
  transform: translateY(-4px);
}

.lead-card h1 {
  margin: 4px 0 12px;
  font-weight: 900;
  color: var(--rose);
  font-size: clamp(32px, 3.5vw + 16px, 52px);
  line-height: 1.05;
  background: linear-gradient(135deg, var(--rose), #E06B80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.lead-card p {
  color: #403b3b;
  margin: 0 0 18px;
  font-size: clamp(16px, 1.2vw + 8px, 20px);
  line-height: 1.6;
}

.lead-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== CAROUSEL ===== */
.carousel-field {
  grid-area: carousel;
  position: relative;
  padding-bottom: 50px;
  align-self: start;
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.card-stack {
  height: 425px;
  width: min(459px, 94%);
  margin-inline: auto;
  position: relative;
  perspective: 1400px;
  transform: translateX(var(--deck-nudge-x));
  z-index: 5;
  margin-top: 0;
}

.card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 15px 35px rgba(199, 59, 87, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform-origin: center bottom;
  transition: transform 0.5s ease, opacity 0.4s ease, filter 0.4s ease, box-shadow 0.3s ease;
  will-change: transform, opacity, filter;
  background: #f0f0f0;
}

.card::before {
  content: '';
  position: absolute;
  inset: -25px;
  background: radial-gradient(circle at center,
      rgba(199, 59, 87, 0.08) 0%,
      rgba(255, 255, 255, 0.04) 50%,
      transparent 70%);
  border-radius: 35px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.card img:not([src]),
.card img[src=""] {
  opacity: 0;
}

.card img[src]:not([src=""]) {
  opacity: 1;
}

.card:hover {
  box-shadow:
    0 35px 80px rgba(199, 59, 87, .25),
    0 30px 70px rgba(0, 0, 0, .3);
}

.card:hover img {
  transform: scale(1.05);
}

.card--behind {
  filter: grayscale(12%) saturate(85%) brightness(.92);
}

.card--far {
  opacity: 0;
  pointer-events: none;
}

/* ===== CAROUSEL CONTROLS ===== */
.cf-controls {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(199, 59, 87, 0.1);
  backdrop-filter: blur(20px);
  padding: 14px 24px;
  border-radius: 20px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.15),
    0 5px 15px rgba(199, 59, 87, 0.1);
}

.cf-btn {
  border: none;
  background: var(--rose);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cf-btn:hover {
  background: var(--rose-700);
  transform: scale(1.1);
}

.cf-dots {
  display: flex;
  gap: 10px;
}

.cf-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .2);
  background: rgba(255, 255, 255, 0.7);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cf-dots button:hover {
  transform: scale(1.2);
}

.cf-dots button[aria-current="true"] {
  background: var(--rose);
  border-color: var(--rose);
}

/* Home carousel scale down */
.home-coverflow,
.image-stack,
.coverflow,
.deck {
  transform: scale(.7);
  transform-origin: 75% 50%;
}

/* ===== WELCOME SECTION ===== */
.welcome {
  grid-area: welcome;
  justify-self: center;
  width: 100%;
  margin-top: -20px;
}

.welcome h2 {
  text-align: center;
  color: var(--rose);
  margin: 6px 0 12px;
  font-size: 2rem;
  font-weight: 700;
}

.welcome .muted {
  text-align: center;
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.feature {
  padding: 24px 20px;
  min-height: 160px;
  background:
    radial-gradient(circle at 30% 70%, rgba(199, 59, 87, 0.05) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(199, 59, 87, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), #ff6b8a, var(--rose));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(199, 59, 87, .2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(199, 59, 87, .15);
}

.feature .icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
  padding: 12px;
  background: rgba(199, 59, 87, 0.1);
  border-radius: 50%;
  transition: transform 0.3s ease;
  color: var(--rose, #CD2C58);
}

.feature:hover .icon {
  transform: scale(1.2) rotate(5deg);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

/* Enhanced CTA buttons */
.lead-ctas .btn {
  padding: 12px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), #E06B80);
  color: #fff;
  box-shadow: 0 6px 20px rgba(199, 59, 87, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199, 59, 87, 0.4);
  background: linear-gradient(135deg, #B91E4A, var(--rose));
}

.btn-secondary {
  background: #fff;
  border-color: #f0f0f0;
  color: var(--ink);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--rose);
  color: var(--rose);
  backdrop-filter: blur(10px);
}

/* ===== ENHANCED GALLERY ===== */
.masonry {
  column-count: 3;
  column-gap: 0.5rem;
  padding: 0.5rem 0;
}

.masonry>* {
  break-inside: avoid;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  animation: galleryFadeIn 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.masonry img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(1) saturate(1) contrast(1);
  position: relative;
  z-index: 1;
}

.masonry>*:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 20px 40px rgba(199, 59, 87, 0.3),
    0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.masonry>*:hover img {
  transform: scale(1.08);
  filter: brightness(1.15) saturate(1.3) contrast(1.15);
}

.masonry>*::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(199, 59, 87, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 40%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  border-radius: 12px;
  pointer-events: none;
}

.masonry>*:hover::before {
  opacity: 1;
}

.masonry>*::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg,
      rgba(199, 59, 87, 0.6),
      rgba(224, 107, 128, 0.4),
      rgba(255, 198, 157, 0.3),
      rgba(199, 59, 87, 0.6));
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  filter: blur(4px);
}

.masonry>*:hover::after {
  opacity: 1;
}

.masonry>*:nth-child(3n+1):hover {
  transform: translateY(-12px) rotate(1deg) scale(1.03);
}

.masonry>*:nth-child(3n+2):hover {
  transform: translateY(-6px) rotate(-0.5deg) scale(1.02);
}

.masonry>*:nth-child(3n+3):hover {
  transform: translateY(-10px) rotate(0.8deg) scale(1.025);
}

.masonry>*:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

.masonry>*:nth-child(1) {
  animation-delay: 0.1s;
}

.masonry>*:nth-child(2) {
  animation-delay: 0.2s;
}

.masonry>*:nth-child(3) {
  animation-delay: 0.3s;
}

.masonry>*:nth-child(4) {
  animation-delay: 0.4s;
}

.masonry>*:nth-child(5) {
  animation-delay: 0.5s;
}

.masonry>*:nth-child(6) {
  animation-delay: 0.6s;
}

.masonry>*:nth-child(n+7) {
  animation-delay: 0.7s;
}

@keyframes galleryFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery .container {
  padding-left: clamp(8px, 2vw, 16px);
  padding-right: clamp(8px, 2vw, 16px);
}

.gallery.section {
  padding: clamp(12px, 3vw, 24px) 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(18px, 4vw, 40px) 0;
}

.grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

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

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

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 44, 88, .18), transparent);
  margin: 8px 0 24px;
  border-radius: 999px;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 1;
  transform: none;
}

.fx .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: all .6s cubic-bezier(.2, .6, .2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ===== FORMS ===== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.input,
select,
textarea {
  width: 100%;
  padding: .8rem .9rem;

}

.input,
select,
textarea {
  width: 100%;
  padding: .8rem .9rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .15);
  background: #fff;
  font: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: var(--ring);
  border-color: var(--rose);
  transform: translateY(-1px);
}

label {
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 4px;
  display: block;
}

.form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.form-card .pad {
  padding: 18px;
}

.info-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.info-card .pad {
  padding: 16px;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.book-form {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, .06);
}

.book-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: #fff;
  font: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  box-shadow: var(--ring);
  border-color: var(--rose);
  transform: translateY(-1px);
}

.book-form .requests {
  margin: 14px 0 16px;
  border: 1px dashed rgba(0, 0, 0, .18);
  padding: 12px 16px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: rgba(199, 59, 87, .02);
}

.book-form .requests legend {
  color: #444;
  padding: 0 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.book-form .requests label {
  font-size: 0.9rem;
}

.book-form .full {
  display: block;
  margin-top: 12px;
}

.form-actions {
  margin-top: 16px;
}

.form-note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.optional {
  font-weight: 400;
  opacity: 0.8;
}

.map-embed {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info {
  margin-top: 16px;
}

.map .muted {
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 0.9rem;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
  color: var(--ink);
}

.lead {
  color: #363636;
  font-size: clamp(16px, 2.2vw, 18px);
  max-width: 70ch;
}

.text-muted {
  color: var(--muted);
}

.figure {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
  padding: 40px 0 32px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(199, 59, 87, .02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(199, 59, 87, .02) 0%, transparent 50%);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199, 59, 87, .1), transparent);
  transition: left 0.6s ease;
}

.footer-contact-item:hover::before {
  left: 100%;
}

.footer-contact-item:hover {
  color: var(--rose);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(199, 59, 87, .2);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(199, 59, 87, .2);
}

.footer-contact-item .icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.footer-contact-item:hover .icon {
  transform: scale(1.2) rotate(5deg);
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  margin: 0 auto 24px;
  border-radius: 1px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--rose);
}

.copyright {
  text-align: center;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0 20px;
}

@media (max-width: 640px) {
  .lead-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .center-ctas .btn+.btn {
    margin-left: 0;
    margin-top: 10px;
  }

  .welcome h2 {
    font-size: 1.8rem;
  }

  .feature .icon {
    font-size: 24px;
  }

  .site-footer {
    padding: 32px 0 24px;
  }

  .footer-contact-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .masonry {
    column-count: 1;
    column-gap: 0;
  }

  .masonry>* {
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 480px) {
  .footer-contact-item {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .footer-contact-item .icon {
    font-size: 1.2rem;
  }
}


.center-ctas .btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Remove any weird blue underlined buttons */
.center-ctas a,
.lead-ctas a {
  text-decoration: none !important;
  color: inherit;
}

.center-ctas .btn-primary {
  background: var(--rose);
  color: #fff;
  border: none;
}

.center-ctas .btn-outline {
  background: transparent;
  color: var(--rose);
  border: 1px solid var(--rose);
}

/* Clean up booking section */
.book-section {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.book-section h2 {
  color: var(--ink);
  margin-bottom: 24px;
  text-align: center;
}

/* Fix booking form layout */
.booking-form {
  max-width: 600px;
  margin: 0 auto;
}

.booking-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.booking-form .form-grid .full {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(199, 59, 87, 0.15);
}

.booking-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}

/* Clean up form buttons */
.form-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.form-actions .btn {
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

/* Remove any default button styling */
button,
input[type="submit"],
input[type="button"] {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  font: inherit;
}

/* Style form submit buttons properly */
button.btn,
input[type="submit"].btn {
  background: var(--rose);
  color: #fff;
  border: none;
  cursor: pointer;
}

button.btn:hover,
input[type="submit"].btn:hover {
  background: var(--rose-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 59, 87, 0.3);
}

/* Clean up map section */
.map-section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.map-section h2 {
  color: var(--ink);
  margin-bottom: 16px;
}

/* Remove any weird spacing/margins */
.weird-spacing {
  margin: 0 !important;
  padding: 0 !important;
}

/* Clean up any stray elements */
.clean-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Mobile responsive cleanup */
@media (max-width: 768px) {
  .center-ctas {
    flex-direction: column;
    align-items: center;
  }

  .center-ctas .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .booking-form .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    align-items: center;
  }

  .form-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Force clean button appearance */
.btn-clean {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: none !important;
  background: var(--rose) !important;
  color: #fff;
  padding: 12px 24px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.btn-clean:hover {
  background: var(--rose-700) !important;
  transform: translateY(-2px) !important;
}

/* ===== SOFTER, FRIENDLIER SECTION STYLING ===== */

/* Welcome section - make it feel cozy */
.welcome {
  background:
    radial-gradient(circle at 30% 70%, rgba(255, 230, 212, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(255, 198, 157, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  border-radius: 24px;
  padding: 40px 32px;
  margin: 40px 0;
  border: 1px solid rgba(199, 59, 87, 0.08);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.welcome::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 25% 25%, rgba(199, 59, 87, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 198, 157, 0.03) 0%, transparent 50%);
  pointer-events: none;
  animation: gentleFloat 20s ease-in-out infinite;
}

@keyframes gentleFloat {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(1deg) scale(1.02);
  }
}

.welcome h2 {
  color: var(--rose);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.welcome .muted {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Book a table section - warm and inviting */
.book-section,
.book-map {
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 230, 212, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255, 198, 157, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 244, 0.8));
  border-radius: 28px;
  padding: 48px 40px;
  margin: 48px 0;
  border: 1px solid rgba(199, 59, 87, 0.06);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.08),
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(199, 59, 87, 0.03) inset;
  backdrop-filter: blur(15px);
  position: relative;
}

.book-section::before,
.book-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(199, 59, 87, 0.015) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(224, 107, 128, 0.02) 0%, transparent 50%);
  border-radius: 28px;
  pointer-events: none;
}

.book-section h2,
.book-map h2 {
  color: var(--rose);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

/* Make form cards gentler */
.form-card,
.info-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 246, 0.9));
  border: 1px solid rgba(199, 59, 87, 0.08);
  border-radius: 20px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.form-card:hover,
.info-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.form-card .pad,
.info-card .pad {
  padding: 28px 24px;
}

/* Softer input styling */
.form-card input,
.form-card select,
.form-card textarea,
.info-card input,
.info-card select,
.info-card textarea {
  border: 1px solid rgba(199, 59, 87, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus,
.info-card input:focus,
.info-card select:focus,
.info-card textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 3px rgba(199, 59, 87, 0.08),
    0 4px 12px rgba(199, 59, 87, 0.1);
  transform: translateY(-1px);
}

/* Gentler buttons */
.btn-gentle {
  background:
    linear-gradient(135deg, var(--rose), rgba(199, 59, 87, 0.9));
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow:
    0 8px 20px rgba(199, 59, 87, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-gentle:hover {
  background:
    linear-gradient(135deg, rgba(199, 59, 87, 0.95), var(--rose-700));
  transform: translateY(-2px);
  box-shadow:
    0 12px 25px rgba(199, 59, 87, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.btn-gentle-outline {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 246, 0.9));
  color: var(--rose);
  border: 1.5px solid rgba(199, 59, 87, 0.3);
  border-radius: 16px;
  padding: 13px 27px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow:
    0 6px 18px rgba(199, 59, 87, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.btn-gentle-outline:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 248, 244, 0.95));
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow:
    0 10px 22px rgba(199, 59, 87, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

/* Apply gentle styling to existing buttons */
.center-ctas .btn-primary {
  background:
    linear-gradient(135deg, var(--rose), rgba(199, 59, 87, 0.9));
  border-radius: 16px;
  box-shadow:
    0 8px 20px rgba(199, 59, 87, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.center-ctas .btn-outline {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 246, 0.9));
  border: 1.5px solid rgba(199, 59, 87, 0.3);
  border-radius: 16px;
  box-shadow:
    0 6px 18px rgba(199, 59, 87, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(10px);
}

/* Soft spacing */
.gentle-spacing {
  margin: 32px 0;
  padding: 0 16px;
}

/* Mobile gentle adjustments */
@media (max-width: 768px) {

  .welcome,
  .book-section,
  .book-map {
    border-radius: 20px;
    padding: 32px 24px;
    margin: 32px 0;
  }

  .form-card,
  .info-card {
    border-radius: 16px;
  }

  .form-card .pad,
  .info-card .pad {
    padding: 20px 18px;
  }
}

/* ===== PERFECT SECTION ALIGNMENT ===== */

/* Container alignment for all main sections */
.section,
.welcome,
.book-section,
.book-map {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
}

/* Consistent container padding */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-left: clamp(16px, 3vw, 32px);
  padding-right: clamp(16px, 3vw, 32px);
}

/* Welcome section alignment */
.welcome {
  margin: 40px auto;
  padding: 40px clamp(24px, 4vw, 48px);
  max-width: 1200px;
  width: calc(100% - 32px);
}

/* Book section grid alignment */
.book-map {
  margin: 48px auto;
  padding: 48px clamp(24px, 4vw, 48px);
  max-width: 1200px;
  width: calc(100% - 32px);
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  max-width: none;
  width: 100%;
}

/* Ensure form and map cards are same height and alignment */
.booking,
.map {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.form-card,
.info-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.form-card .pad,
.info-card .pad {
  flex: 1;
  padding: clamp(20px, 3vw, 32px);
}

/* Map container alignment */
.map-embed {
  width: 100%;
  aspect-ratio: 16/10;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Hero grid alignment */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "lead carousel"
    "welcome welcome";
  gap: 32px 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

/* Form grid alignment */
.booking-form {
  max-width: none;
  width: 100%;
}

.booking-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.booking-form .form-grid .full {
  grid-column: 1 / -1;
}

/* Section spacing consistency */
.hero-wrap {
  padding: 32px 0 40px;
}

.section {
  padding: clamp(32px, 5vw, 64px) 0;
}

/* Mobile alignment */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "lead" "carousel" "welcome";
    gap: 24px;
    padding: 0 clamp(16px, 4vw, 24px);
  }

  .book-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .welcome,
  .book-map {
    width: calc(100% - 24px);
    margin: 32px auto;
    padding: 32px clamp(20px, 4vw, 32px);
  }

  .booking-form .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .welcome,
  .book-map {
    width: calc(100% - 16px);
    margin: 24px auto;
    padding: 24px 20px;
  }

  .center-ctas {
    flex-direction: column;
    align-items: center;
    max-width: 280px;
  }

  .center-ctas .btn {
    width: 100%;
    text-align: center;
  }
}

/* Force consistent margins */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

/* Ensure everything lines up perfectly */
.align-sections {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0;
}

.align-sections>* {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* ===== ENHANCED GALLERY GRID - TIGHTER & PRETTIER ===== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #f5f5f5;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(1) saturate(1) contrast(1);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(199, 59, 87, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2) contrast(1.1);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(199, 59, 87, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 40%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  border-radius: 16px;
  pointer-events: none;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg,
      rgba(199, 59, 87, 0.4),
      rgba(224, 107, 128, 0.3),
      rgba(255, 198, 157, 0.2),
      rgba(199, 59, 87, 0.4));
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(6px);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Staggered animation */
.gallery-item {
  opacity: 0;
  transform: translateY(20px);
  animation: galleryItemFadeIn 0.6s ease forwards;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

.gallery-item:nth-child(n+7) {
  animation-delay: 0.7s;
}

@keyframes galleryItemFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About page story layout */
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 48px 0;
}

.story-text h2 {
  color: var(--rose);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.story-text p {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-ctas {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.story-image {
  position: relative;
}

.story-image .figure {
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 15px 35px rgba(199, 59, 87, 0.1);
  transition: transform 0.3s ease;
}

.story-image .figure:hover {
  transform: translateY(-4px);
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-item img {
    height: 200px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-image img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-item img {
    height: 250px;
  }

  .story-ctas {
    flex-direction: column;
    align-items: center;
  }

  .story-ctas .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* Final V1: nicer buttons */
.btn,
.button,
.cta-btn {
  display: inline-block;
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--peach), var(--accent));
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .35);
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  text-decoration: none;
}

.btn:hover,
.button:hover,
.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  filter: brightness(1.02);
}

.btn:active,
.button:active,
.cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .14);
}

.btn--ghost {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
}


/* Final V1: tagline adopts accent vibe */
.tagline,
.hero .tagline,
.hero h2.tagline {
  color: var(--accent);
}


/* Final V1.1: Carousel-style buttons everywhere */
.btn,
.button,
.cta-btn,
button,
input[type="submit"] {
  display: inline-block;
  padding: 0.9rem 1.15rem;
  border-radius: 18px;
  background: var(--rose);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 20px rgba(205, 44, 88, .25);
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn:hover,
.button:hover,
.cta-btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(205, 44, 88, .30);
}

.btn:active,
.button:active,
.cta-btn:active,
button:active,
input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(205, 44, 88, .22);
}

.btn--ghost {
  background: rgba(205, 44, 88, .12);
  color: #CD2C58;
}


/* Final V1.2: white (inverted) button variant */
.btn--light {
  background: #fff !important;
  color: var(--rose) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08), inset 0 0 0 1px rgba(205, 44, 88, .18);
}

.btn--light:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12), inset 0 0 0 1px rgba(205, 44, 88, .24);
}


/* Final V1.3: booking/map block & cards fit container */
.block-card,
.booking-card,
.card,
.hero .card,
.hero .block-card {
  max-width: 100%;
  box-sizing: border-box;
}

.hero .grid,
.row,
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
}

@media (max-width: 900px) {

  .hero .grid,
  .row,
  .split {
    grid-template-columns: 1fr;
  }
}

iframe,
.map-embed {
  max-width: 100%;
  width: 100% !important;
  height: auto;
  border: 0;
  display: block;
}

.hero .controls,
.carousel-controls,
.block-controls {
  max-width: 100%;
}

/* Final V1.3: global overflow guard */
html,
body {
  overflow-x: hidden;
}

.container,
.wrapper,
main,
section {
  max-width: 100%;
}

/* Final V3 — Home booking section (clean, responsive) */
#home-booking .grid,
#home-booking .row,
#home-booking .book-grid,
#home-booking .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 28px);
}

#home-booking .booking.block-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  padding: clamp(16px, 3vw, 20px);
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  box-sizing: border-box;
}

#home-booking form.book-form {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  box-sizing: border-box;
}

#home-booking form.book-form input,
#home-booking form.book-form select,
#home-booking form.book-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 700px) {

  #home-booking .grid,
  #home-booking .row,
  #home-booking .book-grid,
  #home-booking .split {
    grid-template-columns: 1fr !important;
  }

  #home-booking .booking.block-card {
    width: min(92vw, 560px) !important;
    max-width: none;
    margin-inline: auto;
    padding: 16px;
  }

  #home-booking form.book-form {
    width: 100% !important;
    max-width: none;
  }
}

/* Final V3 — hero title palette */
.hero .hero-title {
  color: var(--rose);
}


/* Final V3.3 — carousel centering, booking bubble, unified sections */

/* Center carousel slides and controls */
@media (max-width: 700px) {

  .carousel,
  .carousel .slides,
  .carousel .slide {
    width: 100%;
  }

  .carousel .slide {
    transform: none !important;
    margin-inline: auto;
  }

  .carousel .slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: inherit;
  }

  .carousel .controls {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Booking bubble styling (same style as welcome section) */
.panel,
.panel--welcome,
.panel--booking {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  padding: clamp(16px, 3vw, 24px);
}

/* Booking panel alignment */
#home-booking .booking.block-card,
.panel--booking {
  max-width: 760px;
  margin-inline: auto;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* Form inside booking bubble */
.panel--booking .book-form {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

/* Mobile stacking */
@media (max-width: 700px) {
  #welcome-and-book .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .panel--booking {
    width: min(92vw, 560px);
  }

  #home-booking .booking.block-card {
    width: min(92vw, 560px) !important;
    max-width: none;
    margin-inline: auto;
    padding: 16px;
  }
}


/* =========================================================
   Final V3.4 — polish pack
   1) Tighten spacing in "Welcome to 22" feature cards
   2) Mobile nav: readable link colors & active pill contrast
   3) Burger icon alignment/visibility fixes
   4) Carousel + booking tweaks kept from V3.3
   --------------------------------------------------------- */

/* 1) WELCOME SECTION — tighter gaps & card padding */
.features,
.feature-grid,
.card-grid {
  gap: clamp(10px, 2.2vw, 16px);
  /* less space between cards */
}

.feature,
.card {
  padding: clamp(12px, 2.4vw, 16px);
  /* reduce inner padding */
}

/* Reduce extra vertical space in the welcome container */
#welcome-and-book .container,
.panel--welcome {
  row-gap: clamp(10px, 2.2vw, 16px);
}

.panel--welcome h2,
.panel--welcome h3,
.panel--welcome p {
  margin-top: 0.35rem;
  margin-bottom: 0.55rem;
}

/* Keep carousel centering & booking bubble tweaks from V3.3 (if not present) */
@media (max-width: 700px) {

  .carousel,
  .carousel .slides,
  .carousel .slide {
    width: 100%;
  }

  .carousel .slide {
    transform: none !important;
    margin-inline: auto;
  }

  .carousel .slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
  }

  .carousel .controls {
    left: 50%;
    transform: translateX(-50%);
  }
}

.panel,
.panel--welcome,
.panel--booking {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.panel--booking {
  max-width: 760px;
  margin-inline: auto;
  padding: 20px;
  box-sizing: border-box;
}

.panel--booking .book-form {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

/* Final V3.5 — mobile carousel centering */
@media (max-width: 700px) {

  .carousel,
  .carousel .slides,
  .carousel .slide {
    width: 100%;
  }

  .carousel .slide {
    transform: none !important;
    margin-inline: auto;
  }

  .carousel .slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: inherit;
  }

  .carousel .controls {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* Final V3.5 — booking bubble + centering */
.panel,
.panel--welcome,
.panel--booking {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  padding: clamp(16px, 3vw, 24px);
}

.booking.block-card {
  max-width: 760px;
  width: 100%;
  margin-inline: auto;
  padding: 20px;
  box-sizing: border-box;
}

.book-form {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 700px) {
  .booking.block-card {
    width: min(92vw, 560px) !important;
    max-width: none;
    padding: 16px;
  }

  .book-form {
    max-width: none;
  }

  .book-form input,
  .book-form select,
  .book-form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}


/* Final V3.5 — welcome spacing tighten */
.features,
.feature-grid,
.card-grid {
  gap: clamp(10px, 2.2vw, 16px);
}

.feature,
.card {
  padding: clamp(12px, 2.4vw, 16px);
}

.panel--welcome h2,
.panel--welcome h3,
.panel--welcome p {
  margin-top: .35rem;
  margin-bottom: .55rem;
}

/* Final V3.5 — hero title palette */
.hero .hero-title {
  color: var(--rose);
}

/* Flex version: let columns wrap/scale */
section:nth-of-type(2)>div>div {
  display: flex !important;
  /* puts the main columns side-by-side */
  flex-wrap: wrap !important;
  /* allows wrapping on smaller screens */
  gap: 16px;
  /* consistent breathing room between panels */
}

section:nth-of-type(2)>div>div>div:first-child {
  flex: 1 1 560px;
  /* flex-grow, flex-shrink, flex-basis */
  min-width: 0;
  /* ensures children can shrink properly */
}

/* =========================================================
   MICRO INSET FIX - move hero carousel slightly inward
   Why:
     • Prevent right-side clipping or image bleed
     • Maintain NatGeo overlap and right bias
   ========================================================= */

.hero-media>div:nth-child(2),
.hero-media .carousel {
  position: relative;
  right: clamp(1vw, 1.8vw, 2.5vw);
  /* gentle inward shift (1–2.5% of screen) */
  transform-origin: center right;
}

/* On smaller devices, reduce bias slightly to avoid clipping */
@media (max-width: 640px) {

  .hero-media>div:nth-child(2),
  .hero-media .carousel {
    right: clamp(2vw, 3vw, 4vw);
    /* pull slightly inward */
    margin-right: clamp(10px, 4vw, 18px);
  }
}

/* =========================================================
   HERO CAROUSEL RIGHT OFFSET (safe non-destructive version)
   Target: /html/body/section[1]/div[3]/div/div[2]/div[1]
   Works with existing flex/grid without overriding structure
   ========================================================= */

body>section:first-of-type>div:nth-of-type(3)>div>div:nth-of-type(2)>div:first-child {
  position: relative;
  margin-left: auto;
  /* key: pushes it right within its column */
  margin-right: clamp(24px, 8vw, 80px);
  /* fine-tune offset distance */
  transform: translateX(0);
  /* ensures no hidden offsets remain */
  max-width: min(92vw, 560px);
  width: 100%;
  transition: margin-right 0.4s ease, transform 0.4s ease;
  z-index: 2;
}

/* Slight scaling tweak for elegant fit */
@media (max-width: 900px) {
  body>section:first-of-type>div:nth-of-type(3)>div>div:nth-of-type(2)>div:first-child {
    margin-right: clamp(30px, 10vw, 90px);
    transform: scale(0.94);
    transform-origin: center right;
  }
}

@media (max-width: 640px) {
  body>section:first-of-type>div:nth-of-type(3)>div>div:nth-of-type(2)>div:first-child {
    margin-right: clamp(28px, 9vw, 70px);
    transform: scale(0.9);
  }
}

/* Optional: give that "NatGeo" visual separation */
body>section:first-of-type>div:nth-of-type(3)>div>div:nth-of-type(2)>div:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25),
    0 0 60px rgba(255, 198, 157, 0.25);
  pointer-events: none;
  z-index: -1;
}

/* =========================================================
   GRADIENT TEXT EFFECT - "Italian dining with a warm, modern glow."
   ========================================================= */

.hero h1,
.hero-heading,
section:first-of-type h1,
section:first-of-type .hero-text h1 {
  background: linear-gradient(90deg,
      #CD2C58 0%,
      #E06B80 25%,
      #FFC69D 60%,
      #FFE6D4 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  font-weight: 800;
  text-shadow: none !important;
  transition: background 0.4s ease;
}

/* Subtle hover or scroll shimmer effect (optional) */
.hero h1:hover {
  background-position: 100% 0;
  transition: background-position 0.8s ease;
}

/* Force gradient on hero title (beats any prior color/text rules) */
#hero-title,
#hero-title * {
  /* kill any inherited solid colors */
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  filter: none !important;
}

#hero-title {
  /* brand gradient */
  --title-gradient: linear-gradient(90deg,
      #CD2C58 0%,
      #E06B80 25%,
      #FFC69D 60%,
      #FFE6D4 100%);
  background: var(--title-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  display: inline-block;
  /* required for reliable clipping */
  line-height: 1.05;
  /* crisp baseline */
}

/* =========================================================
   HERO HEADING Z-INDEX FIX
   Prevent hero title gradient from being hidden by carousel
   ========================================================= */

/* Lift the text layer above the carousel */
#hero-title {
  position: relative !important;
  z-index: 5 !important;
  /* ensures text always renders on top */
}

/* In case the hero container has a pseudo or gradient overlay */
.hero,
.hero-text,
section:first-of-type {
  isolation: isolate;
  /* creates a new stacking context to respect z-index */
}

/* ===== NAV PATCH START: Premium Navigation – single source of truth ===== */
:root {
  --rose-primary: #c73b57;
  --rose-dark: #a12d47;
  --ink: #333
}

header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(199, 59, 87, .15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  padding: 10px 0;
  transition: .3s cubic-bezier(.4, 0, .2, 1)
}

.header--scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 6px 30px rgba(0, 0, 0, .12);
  border-bottom-color: rgba(199, 59, 87, .2)
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.2rem;
  transition: .3s;
  padding: 6px 10px;
  border-radius: 12px
}

.brand:hover {
  transform: scale(1.05);
  color: var(--rose-primary);
}

.brand img {
  height: 34px;
  width: auto;
  transition: filter .3s
}

.brand:hover img {
  filter: saturate(1.2) brightness(1.05)
}

.site-nav {
  display: flex;
  align-items: center
}

.site-nav .links {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 6px 10px;
  list-style: none;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(8px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06)
}

.site-nav .links a {
  display: inline-block;
  padding: 10px 18px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  border-radius: 20px;
  position: relative;
}

.site-nav .links a:hover {
  color: var(--rose-primary);
  background: rgba(255, 255, 255, .8);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(199, 59, 87, .15)
}

.site-nav .links a.is-active,
.site-nav .links a[aria-current="page"] {
  color: #fff !important;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-dark)) !important;
  font-weight: 600;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(199, 59, 87, .3), 0 0 0 2px rgba(255, 255, 255, .8)
}

.site-nav .links a.is-active:hover,
.site-nav .links a[aria-current="page"]:hover {
  background: linear-gradient(135deg, var(--rose-dark), var(--rose-primary)) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199, 59, 87, .4), 0 0 0 2px rgba(255, 255, 255, .9)
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(199, 59, 87, .15);
  border-radius: 16px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08)
}

.nav-toggle:hover {
  transform: scale(1.05);
  border-color: var(--rose-primary);
  box-shadow: 0 6px 20px rgba(199, 59, 87, .15)
}

.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: .3s cubic-bezier(.4, 0, .2, 1)
}

.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  left: 0;
  transition: .3s cubic-bezier(.4, 0, .2, 1)
}

.nav-toggle .bar::before {
  top: -7px
}

.nav-toggle .bar::after {
  top: 7px
}

.nav-toggle[aria-expanded="true"] {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-dark));
  border-color: var(--rose-dark)
}

.nav-toggle[aria-expanded="true"] .bar {
  background: transparent
}

.nav-toggle[aria-expanded="true"] .bar::before {
  transform: rotate(45deg);
  top: 0;
  background: #fff
}

.nav-toggle[aria-expanded="true"] .bar::after {
  transform: rotate(-45deg);
  top: 0;
  background: #fff
}

.nav-list {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(199, 59, 87, .15);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .15);
  z-index: 5001;
  opacity: 0;
  transform: translateY(-15px);
  transition: .3s cubic-bezier(.4, 0, .2, 1)
}

.nav-list.open {
  display: block;
  opacity: 1;
  transform: translateY(0)
}

.nav-list li {
  list-style: none;
  margin: 0;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn .4s cubic-bezier(.4, 0, .2, 1) forwards
}

.nav-list li:nth-child(1) {
  animation-delay: .05s
}

.nav-list li:nth-child(2) {
  animation-delay: .1s
}

.nav-list li:nth-child(3) {
  animation-delay: .15s
}

.nav-list li:nth-child(4) {
  animation-delay: .2s
}

.nav-list li:nth-child(5) {
  animation-delay: .25s
}

.nav-list li:nth-child(6) {
  animation-delay: .3s
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.nav-list a {
  display: block;
  padding: 16px 20px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 14px;
  transition: .3s;
  margin-bottom: 6px
}

.nav-list a:hover {
  background: rgba(199, 59, 87, .08);
  color: var(--rose-primary);
  transform: translateX(8px)
}

.nav-list a.is-active {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-dark));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(199, 59, 87, .3)
}

.nav-list a.is-active:hover {
  background: linear-gradient(135deg, var(--rose-dark), var(--rose-primary));
  transform: translateX(8px) scale(1.02)
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  backdrop-filter: blur(4px);
  z-index: 5000;
  opacity: 0;
  transition: opacity .3s
}

.nav-backdrop.active {
  display: block;
  opacity: 1
}

@media (max-width:768px) {
  .site-nav .links {
    display: none
  }

  .nav-toggle {
    display: flex
  }

  .nav-row {
    padding: 0 20px
  }
}

@media (min-width:769px) {
  .nav-list {
    display: none !important
  }

  .nav-toggle {
    display: none !important
  }

  .nav-backdrop {
    display: none !important
  }
}

/* a11y + perf */
.nav-toggle:focus-visible,
.site-nav .links a:focus-visible,
.nav-list a:focus-visible {
  outline: 2px solid var(--rose-primary);
  outline-offset: 2px
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  .nav-list li {
    opacity: 1;
    transform: none
  }
}

@media (max-width:768px) and (-webkit-max-device-pixel-ratio:1) {

  header,
  .site-header,
  .nav-list,
  .site-nav .links {
    backdrop-filter: none !important
  }

  .nav-list,
  .site-nav .links {
    background: #fff !important
  }
}

/* ===== NAV PATCH END ===== */
/* ===== BOOKING WIDTH PATCH ===== */
/* Match the hero content width & gutters */
:root {
  --content-max: 1200px;
  /* keep in sync with your hero/container */
  --page-gutter: 16px;
  /* mobile side padding */
}

/* Ensure all "container" blocks share the same max width + center */
.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

/* Booking section should NOT inherit any full-bleed hacks from the hero */
.book-map .container {
  max-width: var(--content-max) !important;
  padding-inline: var(--page-gutter) !important;
}

/* The card itself must not exceed the container or overflow horizontally */
.book-map .booking.block-card {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  /* prevents accidental shifts */
  overflow: hidden;
  /* clip inner shadows if needed */
}

/* Mobile layout: stack grid, kill any fixed/half widths */
@media (max-width: 768px) {
  .book-grid {
    display: block !important;
  }

  /* Row-by-row, full-width fields */
  .book-form {
    width: 100% !important;
    max-width: 100% !important;
  }

  .book-form .row {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .book-form label {
    display: block;
    width: 100% !important;
    margin: 0 0 12px !important;
  }

  .book-form input,
  .book-form select,
  .book-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Global guard against horizontal creep */
html,
body {
  overflow-x: hidden;
}

/* ===== MATCH HERO CARD WIDTH → BOOKING CARD (mobile) ===== */
:root {
  /* one source of truth for card width on mobile */
  --page-gutter: 16px;
  --card-max: 680px;
  /* tweak this if you want the card narrower/wider */
}

@media (max-width: 768px) {

  /* make both cards use the same width + centering */
  .hero-grid .lead .block-card,
  .book-map .booking.block-card {
    width: min(100%, var(--card-max));
    margin-inline: auto;
    /* centers within container */
    box-sizing: border-box;
  }

  /* ensure the booking section uses the same inner gutters as hero */
  .book-map .container {
    padding-left: var(--page-gutter) !important;
    padding-right: var(--page-gutter) !important;
    margin-inline: auto;
  }

  /* guard: stop any full-bleed hacks from pulling it wider */
  .book-map,
  .book-map * {
    max-width: 100%;
  }

  /* form fields must never overflow to the right */
  .book-form,
  .book-form .row,
  .book-form label,
  .book-form input,
  .book-form select,
  .book-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ===== END MATCH PATCH ===== */
/* ===== BOOKING CARD WIDTH — HARD MATCH TO HERO CARD (mobile) ===== */
:root {
  /* tune this if needed — make it the same as the hero card’s visual width */
  --page-gutter: 16px;
  --hero-card-max: 560px;
  /* try 560px; if your hero looks narrower, drop to 540/520 */
}

@media (max-width: 768px) {

  /* Ensure the booking section uses normal gutters (no full-bleed) */
  section#booking.book-map.reveal {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden;
    /* safety: no horizontal creep */
  }

  /* Container inside booking: same gutters as the hero */
  section#booking.book-map.reveal>.container {
    padding-left: var(--page-gutter) !important;
    padding-right: var(--page-gutter) !important;
    margin-inline: auto;
  }

  /* Make the booking card exactly the same visual width as the hero card */
  .hero-grid .lead .block-card,
  section#booking.book-map.reveal .booking.block-card {
    width: min(100%, var(--hero-card-max)) !important;
    margin-inline: auto !important;
    /* centered */
    box-sizing: border-box !important;
  }

  /* Form elements must not overflow the card */
  section#booking.book-map.reveal .book-form,
  section#booking.book-map.reveal .book-form .row,
  section#booking.book-map.reveal .book-form label,
  section#booking.book-map.reveal .book-form input,
  section#booking.book-map.reveal .book-form select,
  section#booking.book-map.reveal .book-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ==== BOOKING CONTAINER WIDTH FIX (mobile) ==== */
/* One place to tweak the card width to match the hero card */
:root {
  --page-gutter: 16px;
  --hero-card-max: 560px;
  /* if still a tad wide, try 540px or 520px */
}

@media (max-width: 768px) {

  /* Stop the global .container mobile rule from stretching the booking section */
  section#booking.book-map.reveal>.container {
    width: 100% !important;
    max-width: none !important;
    /* cancel max-width:100% side effects */
    padding-left: 0 !important;
    /* we’ll pad the card instead */
    padding-right: 0 !important;
    margin: 0 auto !important;
  }

  /* Make the booking card the SAME visual width as the hero’s left card */
  .hero-grid .lead .block-card,
  section#booking.book-map.reveal .booking.block-card {
    width: min(100%, var(--hero-card-max)) !important;
    margin-inline: auto !important;
    padding-left: var(--page-gutter) !important;
    padding-right: var(--page-gutter) !important;
    box-sizing: border-box !important;
  }

  /* Ensure the form can’t hang off to the right */
  section#booking.book-map.reveal .book-form,
  section#booking.book-map.reveal .book-form .row,
  section#booking.book-map.reveal .book-form label,
  section#booking.book-map.reveal .book-form input,
  section#booking.book-map.reveal .book-form select,
  section#booking.book-map.reveal .book-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ===== HERO TEXT STACKING + GRADIENT SOFTEN ===== */
.hero-grid .lead-card {
  position: relative;
  z-index: 1;
  /* ensure the card and its text sit above overlays */
}

.hero-grid .lead-card h1 {
  position: relative;
  z-index: 2;
  /* bring headline above paragraph */
}

/* Ensure the paragraph doesn't overlap */
.hero-grid .lead-card p {
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
}

/* ===== HERO H1: Gradient text via CSS ===== */
.hero-title,
.hero-grid .lead-card h1 {
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  background: linear-gradient(90deg, #CD2C58 0%, #FFC69D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-fill-color: transparent;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Make it slightly softer on mobile screens */
@media (max-width: 768px) {

  .hero-title,
  .hero-grid .lead-card h1 {
    background: linear-gradient(90deg, #D86C7E 0%, #FFD3AE 100%);
  }
}

/* 1) Force H1 above all overlays (try this first) */
.hero-grid .lead .block-card {
  isolation: isolate;
}

.hero-grid .lead .block-card h1 {
  position: relative !important;
  z-index: 99999 !important;
  transform: translateZ(0) !important;
  /* promotes to its own layer */
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text !important;
}

/* ——— MOBILE NAV EMERGENCY LAYERING ——— */
.site-header,
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100000 !important;
  /* above all hero overlays */
}

.nav-row {
  position: relative;
  z-index: 100001;
}

.nav-toggle {
  position: relative;
  z-index: 100002;
  pointer-events: auto !important;
  /* ignore accidental pointer-events:none */
}

/* If the hero has an overlay/pseudo, ensure it can't cover the header */
.hero-wrap,
.hero-grid,
.hero-grid .lead,
.hero-grid .lead .block-card {
  position: relative;
  z-index: 0;
}

.hero-wrap::before,
.hero-grid::before,
.hero-grid .lead .block-card::before {
  pointer-events: none !important;
  /* overlay can’t intercept clicks */
}

/* When menu opens, lock body scroll and show backdrop above hero */
body.nav-open {
  overflow: hidden;
}

.nav-backdrop {
  z-index: 99999;
}

.nav-list {
  z-index: 100000;
}

/* --- Burger → X geometry & centering --- */
.nav-toggle {
  position: relative;
  z-index: 100002;
}

.nav-toggle .bar {
  position: relative;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, background .2s ease, opacity .2s ease;
}

.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  /* center baseline */
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: 50% 50%;
  transition: transform .25s ease, top .25s ease, background .2s ease, opacity .2s ease;
  /* stack the 3 lines for the hamburger */
}

.nav-toggle .bar::before {
  transform: translateY(-7px);
}

.nav-toggle .bar::after {
  transform: translateY(7px);
}

/* expanded → perfect X centered in the button */
.nav-toggle[aria-expanded="true"] .bar {
  background: transparent;
  /* hide middle line */
}

.nav-toggle[aria-expanded="true"] .bar::before {
  top: 0;
  transform: rotate(45deg);
  background: #fff;
  /* white X */
}

.nav-toggle[aria-expanded="true"] .bar::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff;
}

/* --- Backdrop should not block when closed --- */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  backdrop-filter: blur(4px);
  opacity: 0;
  display: none;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 99999;
}

.nav-backdrop.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Menu panel above backdrop */
.nav-list {
  z-index: 100000;
}

body.nav-open {
  overflow: hidden;
}

/* NAV SAFETY LAYERS */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100000
}

.nav-row {
  position: relative;
  z-index: 100001
}

.nav-toggle {
  position: relative;
  z-index: 100002;
  pointer-events: auto
}

/* Backdrop visibility & clicks */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  backdrop-filter: blur(4px);
  opacity: 0;
  display: none;
  pointer-events: none;
  transition: opacity .25s;
  z-index: 99999;
}

.nav-backdrop.active {
  display: block;
  opacity: 1;
  pointer-events: auto
}

/* Panel above backdrop */
.nav-list {
  z-index: 100000
}

/* Hero overlays can't block header clicks */
.hero-wrap::before,
.hero-grid .lead .block-card::before {
  pointer-events: none
}

/* ===== ACTIVE LINK COLOR (mobile + desktop) ===== */

/* shared highlight */
.site-nav .links a.is-active,
.nav-list a.is-active {
  color: #fff !important;
  background: linear-gradient(135deg, #CD2C58, #E06B80) !important;
  font-weight: 600;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(205, 44, 88, 0.25);
  transform: translateY(-1px);
}

/* keep active hover consistent */
.site-nav .links a.is-active:hover,
.nav-list a.is-active:hover {
  background: linear-gradient(135deg, #E06B80, #CD2C58) !important;
}

/* accessibility focus ring */
.site-nav .links a:focus-visible,
.nav-list a:focus-visible {
  outline: 2px solid #CD2C58;
  outline-offset: 2px;
}

/* ===== SAFE PAGE FADE (no blank screen) ===== */
body {
  opacity: 1;
  /* visible by default (fail-safe) */
  transition: opacity .35s ease;
  will-change: opacity;
}

/* used only by JS */
body.is-fading {
  opacity: 0;
}

/* for fade-out on navigation */
body.is-booting {
  opacity: 0;
}

/* very brief load-in fade (optional) */

/* accessibility */
@media (prefers-reduced-motion: reduce) {
  body {
    transition: none !important;
    opacity: 1 !important;
  }

  body.is-fading,
  body.is-booting {
    opacity: 1 !important;
  }
}

/* ===== GLOBAL BUTTON FIX: ROSE BUTTONS ===== */
.btn-rose,
a.btn-rose,
.btn.btn-rose {
  background: linear-gradient(135deg, #E06B80, #CD2C58) !important;
  /* rose gradient */
  color: #fff !important;
  /* white text */
  border: none !important;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(205, 44, 88, 0.25);
  transition: all 0.25s ease;
}

/* Hover and focus states */
.btn-rose:hover,
a.btn-rose:hover,
.btn.btn-rose:hover {
  background: linear-gradient(135deg, #CD2C58, #E06B80) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(205, 44, 88, 0.35);
}

.btn-rose:focus-visible,
a.btn-rose:focus-visible {
  outline: 2px solid #fff !important;
  outline-offset: 3px !important;
}

/* Optional: active state (pressed) */
.btn-rose:active,
a.btn-rose:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(205, 44, 88, 0.2);
}

/* ===== GHOST BUTTON STYLING (APRICOT HOVER) ===== */
.btn-ghost,
a.btn-ghost,
.btn.btn-ghost {
  background: transparent !important;
  border: 2px solid #E06B80 !important;
  /* soft rose border */
  color: #E06B80 !important;
  /* rose text */
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* Hover → gentle apricot fill with rose text */
.btn-ghost:hover,
a.btn-ghost:hover,
.btn.btn-ghost:hover {
  background: linear-gradient(135deg, #FFC69D, #FFE6D4) !important;
  /* apricot fill */
  color: #CD2C58 !important;
  /* rose text on apricot */
  border-color: #FFC69D !important;
  box-shadow: 0 4px 14px rgba(255, 198, 157, 0.35);
  transform: translateY(-1px);
}

/* Active click state */
.btn-ghost:active,
a.btn-ghost:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 198, 157, 0.25);
}

/* Focus ring for accessibility */
.btn-ghost:focus-visible,
a.btn-ghost:focus-visible {
  outline: 2px solid #FFC69D;
  outline-offset: 3px;
}

/* Backdrop for mobile nav */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 80;
  /* beneath nav list but above page */
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* When nav is open */
.nav-list.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 80;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-list {
  /* your mobile panel hidden styles go here (transform/opacity) */
}

.nav-list.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ==== NAV / BRAND HIT-BOX FIX ==== */
/* Ensure header uses a sane flex row */
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

/* Constrain the <a class="brand"> to the logo size only */
.site-header .brand {
  position: static !important;
  /* kill any absolute full-bleed rules */
  display: inline-flex !important;
  /* shrink to contents */
  align-items: center;
  width: auto !important;
  height: auto !important;
  flex: 0 0 auto !important;
  /* don't grow across the header */
  margin: 0;
  padding: 0;
  z-index: 1;
  /* below menus/backdrop but above bg */
  pointer-events: auto;
}

/* Keep the logo image tidy */
.site-header .brand img {
  display: block;
  height: 28px;
  /* or whatever you use */
  width: auto;
}

/* Make sure the nav stays clickable and not overlapped */
.site-header .site-nav {
  position: relative;
  z-index: 2;
  flex: 0 1 auto;
}

/* Defensive: if any global rule made ALL header anchors full-width, stop it */
.site-header .header-inner>a {
  max-width: unset;
  width: auto;
}

/* ===== Lightbox (Menu Images) ===== */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

.lightbox.open {
  display: flex;
  animation: lb-fade .18s ease-out;
}

@keyframes lb-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox__frame {
  position: relative;
  max-width: min(92vw, 1200px);
  max-height: 88vh;
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 14px 48px rgba(0, 0, 0, .45);
  transform: scale(.985);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}

.lightbox.open .lightbox__img {
  transform: scale(1);
  opacity: 1;
}

/* Controls */
.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
  transition: opacity .15s ease, transform .15s ease;
  outline: none;
}

.lightbox__btn:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox__btn:active {
  transform: translateY(-50%) scale(.98);
}

.lightbox__prev {
  left: -60px;
}

.lightbox__next {
  right: -60px;
}

@media (max-width: 768px) {
  .lightbox__prev {
    left: 8px;
  }

  .lightbox__next {
    right: 8px;
  }
}

/* Close */
.lightbox__close {
  position: absolute;
  top: -56px;
  right: 0;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
}

@media (max-width: 768px) {
  .lightbox__close {
    top: 8px;
    right: 8px;
  }
}

/* Subtle cursor hint on thumbnails */
.enlargeable {
  cursor: zoom-in;
}

/* emoji badge styling */
.emoji-badge {
  font-size: .9em;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .08));
}

/* micro-interactions */
.btn {
  transition: transform .08s ease, box-shadow .2s ease;
}

.btn:active {
  transform: translateY(1px) scale(.98);
}

@media (hover:hover) {
  .card:hover {
    transform: translateY(-2px);
    transition: transform .2s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}


/* small white border for gallery images (not logos) */
.gallery img,
.gallery-grid img,
.content img:not([alt*="logo" i]) {
  border: 4px solid #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}