:root {
      --bg: #090a08;
      --bg-soft: #10120e;
      --panel: #13160f;
      --text: #f5f2e9;
      --muted: #b7b3a7;
      --orange: #f25a0a;
      --orange-dark: #b73b00;
      --green: #6aa52c;
      --green-dark: #2d5516;
      --gold: #c9983e;
      --line: rgba(201, 152, 62, .35);
      --shadow: 0 25px 70px rgba(0,0,0,.45);
      --radius: 18px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background:
        radial-gradient(circle at 85% 10%, rgba(242,90,10,.08), transparent 22%),
        radial-gradient(circle at 10% 70%, rgba(106,165,44,.08), transparent 28%),
        var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 999;
      opacity: .14;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
      mix-blend-mode: soft-light;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; width: 100%; }
    button, input, textarea { font: inherit; }

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

    .section { padding: 88px 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--green);
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-size: .82rem;
    }
    .eyebrow::before, .eyebrow::after {
      content: "✦";
      color: var(--gold);
      font-size: .7rem;
    }

    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { line-height: 1.05; }
    h1, h2 { font-family: 'Bebas Neue', sans-serif; letter-spacing: .025em; }
    h2 { font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 14px; }
    .lead { color: var(--muted); font-size: 1.05rem; max-width: 680px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 4px;
      border: 1px solid transparent;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .06em;
      transition: .25s ease;
      cursor: pointer;
    }
    .btn-primary { background: var(--orange); color: white; }
    .btn-primary:hover { background: #ff6b1d; transform: translateY(-2px); }
    .btn-outline { border-color: var(--gold); color: var(--text); background: rgba(0,0,0,.25); }
    .btn-outline:hover { background: var(--gold); color: #10100d; transform: translateY(-2px); }
    .btn-green { background: var(--green); color: white; }
    .btn-green:hover { background: #7fbd39; transform: translateY(-2px); }

    /* Header */
    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 100;
      transition: .3s ease;
    }
    .site-header.scrolled {
      background: rgba(8,9,7,.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .logo{max-width:200px; margin-top: 5px;}

    .nav {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 13px;
      min-width: max-content;
    }
    .brand-mark {
      width: 54px;
      height: 54px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold);
      font-size: 1.4rem;
      position: relative;
      box-shadow: inset 0 0 0 4px rgba(201,152,62,.08);
    }
    .brand-mark::before, .brand-mark::after {
      content: "";
      position: absolute;
      inset: 6px;
      border: 1px solid rgba(201,152,62,.45);
      transform: rotate(45deg);
    }
    .brand-copy strong {
      display: block;
      color: var(--orange);
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      line-height: 1;
    }
    .brand-copy span {
      display: block;
      font-size: .68rem;
      letter-spacing: .19em;
      text-transform: uppercase;
      color: #ddd8cb;
      margin-top: 5px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 27px;
      margin-left: auto;
    }
    .nav-links a {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: .07em;
      font-size: 1.32rem;
      color: #f2eee4;
      position: relative;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -8px;
      height: 2px;
      background: var(--orange);
      transition: .25s ease;
    }
    .nav-links a:hover::after { right: 0; }
    .nav-cta {
      border: 1px solid var(--green);
      padding: 12px 16px;
      border-radius: 3px;
      font-weight: 700;
      color: white;
      min-width: max-content;
    }
    .nav-cta i { color: var(--green); margin-right: 8px; }
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,.2);
      color: white;
      background: transparent;
      border-radius: 4px;
    }

    /* Hero */
    .hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(
      90deg,
      rgba(5,6,4,.98) 0%,
      rgba(5,6,4,.9) 35%,
      rgba(5,6,4,.38) 62%,
      rgba(5,6,4,.16) 100%
    ),
    url('../images/gallery/babu-samui-20.webp') center right / cover no-repeat;
}
    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 160px;
      background: linear-gradient(transparent, var(--bg));
      z-index: -1;
    }
    .hero-content {
      padding-top: 120px;
      width: min(610px, 100%);
    }
    .hero h1 {
      font-size: clamp(4.1rem, 8.4vw, 7.8rem);
      margin: 18px 0 20px;
      max-width: 740px;
    }
    .hero h1 .orange { color: var(--orange); }
    .hero h1 .green { color: var(--green); }
    .hero-copy {
      color: #ddd8cd;
      font-size: 1.1rem;
      max-width: 540px;
      margin-bottom: 30px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
    .hero-badge {
      margin-top: 34px;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      color: #cbc6ba;
      font-size: .88rem;
    }
    .hero-badge span { display: inline-flex; align-items: center; gap: 8px; }
    .hero-badge i { color: var(--gold); }

    /* Menu cards */
    .menu-section { padding-top: 52px; }
    .section-heading {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 30px;
      margin-bottom: 34px;
    }
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .dish-card {
      background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
      border: 1px solid var(--line);
      overflow: hidden;
      transition: .28s ease;
      position: relative;
    }
    .dish-card:hover { transform: translateY(-7px); border-color: var(--gold); box-shadow: var(--shadow); }
    .dish-image { height: 220px; overflow: hidden; }
    .dish-image img { height: 100%; object-fit: cover; transition: .5s ease; }
    .dish-card:hover img { transform: scale(1.06); }
    .dish-body { padding: 20px; }
    .dish-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; margin-bottom: 8px; letter-spacing: .03em; }
    .dish-body p { color: var(--muted); font-size: .93rem; min-height: 48px; }
    .dish-footer { display: none; visibility: hidden; justify-content: space-between; align-items: center; margin-top: 16px; }
    .price { color: var(--green); font-weight: 800; font-size: 1.12rem; }
    .spice { color: var(--orange); font-size: .82rem; }

    /* About */
    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 58px;
      align-items: center;
    }
    .about-image {
      position: relative;
      min-height: 560px;
    }
    .about-image .main-photo {
      height: 100%;
      min-height: 560px;
      object-fit: cover;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }
    .about-image .stamp {
      position: absolute;
      right: -24px;
      bottom: 34px;
      width: 148px;
      height: 148px;
      border-radius: 50%;
      background: var(--orange);
      display: grid;
      place-items: center;
      text-align: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.45rem;
      line-height: 1.05;
      padding: 20px;
      transform: rotate(-8deg);
      border: 6px solid var(--bg);
    }
    .about-copy p { color: var(--muted); }
    .features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
    .feature {
      display: flex;
      gap: 14px;
      padding: 18px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.025);
    }
    .feature-icon {
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid var(--gold);
      color: var(--gold);
    }
    .feature h3 { margin-bottom: 4px; font-size: 1rem; color: var(--green); text-transform: uppercase; letter-spacing: .04em; }
    .feature p { margin: 0; font-size: .88rem; }

    /* =========================================================
   Gallery
========================================================= */

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

.gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
}

.gallery-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 4;
}

.gallery-item:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(3) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item:nth-child(7) {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-item:nth-child(8) {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-item:nth-child(9) {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 0, 0, .52)
  );
  opacity: .48;
  transition: opacity .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
}

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

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:first-child {
    grid-column: 1 / -1;
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-item,
  .gallery-item:nth-child(n),
  .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item:first-child {
    min-height: 380px;
  }
}
    /* Reviews */
    .reviews {
      background:
        linear-gradient(rgba(31,67,15,.93), rgba(31,67,15,.93)),
        url('https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=1800&q=80') center/cover;
      border-top: 1px solid rgba(255,255,255,.08);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .review-card {
      background: rgba(8,10,7,.42);
      border: 1px solid rgba(255,255,255,.14);
      padding: 28px;
      backdrop-filter: blur(8px);
    }
    .stars { color: #f2bd4c; letter-spacing: 4px; margin-bottom: 16px; }
    .review-card blockquote { margin: 0 0 18px; font-size: 1.02rem; }
    .review-card small { color: #d5dbc9; }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: .85fr 1.3fr .85fr;
      gap: 28px;
      align-items: stretch;
    }
    .contact-panel {
      background: var(--bg-soft);
      border: 1px solid rgba(255,255,255,.08);
      padding: 28px;
    }
    .contact-panel h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: .04em; color: var(--orange); }
    .contact-list { display: grid; gap: 18px; }
    .contact-row { display: flex; gap: 13px; color: var(--muted); }
    .contact-row i { color: var(--green); width: 18px; margin-top: 5px; }
    .map-wrap { min-height: 360px; border: 1px solid var(--line); overflow: hidden; }
    .map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: saturate(.85) contrast(1.05); }
    .hours { display: grid; gap: 14px; color: var(--muted); }
    .hours-row { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 12px; }
    .open-note { color: var(--green); font-weight: 800; font-size: 1.15rem; margin-top: 18px; }

    footer {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 24px 0;
      background: #070806;
    }
    .footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #9d998f; font-size: .88rem; }
    .socials { display: flex; gap: 10px; }
    .socials a {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      transition: .2s ease;
    }
    .socials a:hover { transform: translateY(-2px); background: var(--orange); }

    @media (max-width: 980px) {
      .menu-toggle { display: inline-grid; place-items: center; }
      .nav-links {
        position: fixed;
        top: 84px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 0;
        background: rgba(8,9,7,.98);
        border: 1px solid rgba(255,255,255,.1);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: .25s ease;
      }
      .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
      .nav-links a { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.07); }
      .nav-cta { display: none; }
      .menu-grid { grid-template-columns: repeat(2, 1fr); }
      .about-grid { grid-template-columns: 1fr; }
      .about-image { min-height: 460px; }
      .about-image .main-photo { min-height: 460px; }
      .about-image .stamp { right: 18px; }
      .review-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 220px 220px; }
      .gallery-item:first-child { grid-column: 1 / 3; grid-row: auto; }
        
      .reservation-shell {
  grid-template-columns: 1fr;
}

.reservation-intro {
  position: static;
}    
    }

    @media (max-width: 640px) {
      .container { width: min(100% - 28px, 1180px); }
      .section { padding: 68px 0; }
      .brand-copy strong { font-size: 1.45rem; }
      .brand-mark { width: 46px; height: 46px; }
      .hero { min-height: 700px; background-position: 64% center; }
      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.22);
        z-index: -1;
      }
      .hero h1 { font-size: clamp(3.75rem, 18vw, 5.7rem); }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .btn { width: 100%; }
      .section-heading { align-items: start; flex-direction: column; }
      .menu-grid { grid-template-columns: 1fr; }
      .dish-image { height: 250px; }
      .features { grid-template-columns: 1fr; }
      .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(5, 260px); }
      .gallery-item:first-child { grid-column: auto; }
      .footer-inner { flex-direction: column; text-align: center; }
        
      .reservation-form {
  grid-template-columns: 1fr;
  padding: 22px 18px;
}

.form-field.full,
.reservation-submit,
.reservation-note,
.form-status {
  grid-column: auto;
}    
    }

/* =========================================================
   WhatsApp Reservation Form
========================================================= */

.reservation-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(201, 152, 62, .14),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      #102d22 0%,
      #173f2f 55%,
      #0d271e 100%
    );
  color: #fff;
}

.reservation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,.7),
    transparent
  );
}

.reservation-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.reservation-intro {
  position: sticky;
  top: 120px;
}

.reservation-intro .eyebrow {
  color: var(--gold);
}

.reservation-intro h2 {
  max-width: 620px;
  margin-bottom: 24px;
}

.reservation-intro > p {
  max-width: 520px;
  color: rgba(255,255,255,.76);
}

.reservation-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.reservation-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.86);
  font-size: .95rem;
}

.reservation-points i {
  width: 22px;
  color: var(--gold);
  text-align: center;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255,255,255,.97);
  color: #1b261f;
  border-radius: 4px;
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field label {
  color: #315442;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(27,38,31,.18);
  border-radius: 2px;
  background: #fff;
  color: #1b261f;
  font: inherit;
  outline: none;
  transition:
    border-color .25s ease,
    box-shadow .25s ease;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,90,10,.12);
}

.reservation-submit {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 58px;
  cursor: pointer;
}

.reservation-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: #6b746e;
  font-size: .78rem;
  line-height: 1.5;
}

.form-status {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 12px 14px;
  background: rgba(242,90,10,.1);
  color: #7d3c13;
  font-size: .9rem;
}

.form-status.visible {
  display: block;
}

/* =========================================================
   Floating action buttons
========================================================= */

.back-to-top,
.floating-whatsapp {
  position: fixed;
  right: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .38);
  transition:
    opacity .25s ease,
    visibility .25s ease,
    transform .25s ease,
    background .25s ease;
}

.floating-whatsapp {
  bottom: 22px;
  background: #25d366;
  font-size: 1.75rem;
}

.floating-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-4px) scale(1.03);
}

.back-to-top {
  bottom: 90px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(9, 10, 8, .88);
  backdrop-filter: blur(10px);
  font-size: 1rem;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .back-to-top,
  .floating-whatsapp {
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp {
    bottom: 15px;
    font-size: 1.55rem;
  }

  .back-to-top {
    bottom: 76px;
  }
}

.contact-row a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.contact-row a:hover {
    color: var(--orange);
}

.gallery-item {
  cursor: zoom-in;
}

.glightbox-container .gslide-description,
.glightbox-container .gdesc-inner,
.glightbox-container .gslide-title,
.glightbox-container .gslide-desc {
  display: none !important;
}

/* =========================================================
   Reservation section: mobile
========================================================= */

@media (max-width: 768px) {
  .reservation-section {
    padding: 64px 0;
  }

  .reservation-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .reservation-intro {
    position: static;
    text-align: left;
  }

  .reservation-intro h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    margin-bottom: 18px;
  }

  .reservation-intro > p {
    font-size: .98rem;
    line-height: 1.7;
  }

  .reservation-points {
    gap: 12px;
    margin-top: 26px;
  }

  .reservation-points span {
    align-items: flex-start;
    font-size: .9rem;
    line-height: 1.5;
  }

  .reservation-points i {
    margin-top: 4px;
    flex: 0 0 20px;
  }

  .reservation-form {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
    border-radius: 4px;
  }

  .form-field,
  .form-field.full,
  .reservation-submit,
  .reservation-note,
  .form-status {
    grid-column: 1;
    width: 100%;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
  }

  .form-field textarea {
    min-height: 130px;
  }

  .reservation-submit {
    min-height: 58px;
    padding: 14px 18px;
    white-space: normal;
    line-height: 1.3;
  }

  .reservation-note {
    font-size: .76rem;
    line-height: 1.55;
  }

  .flatpickr-input,
  .form-field .flatpickr-input {
    width: 100%;
  }

  .form-field .flatpickr-wrapper {
    width: 100%;
    display: block;
  }
}

@media (max-width: 420px) {
  .reservation-section {
    padding: 54px 0;
  }

  .reservation-form {
    padding: 20px 16px;
  }

  .reservation-intro h2 {
    font-size: clamp(2.5rem, 14vw, 3.5rem);
  }

  .reservation-submit {
    font-size: .82rem;
    letter-spacing: .04em;
  }
}

.form-field .flatpickr-wrapper {
  width: 100%;
  display: block;
}