:root {
  --ink: #211b17;
  --muted: #6e625b;
  --paper: #fbf7ef;
  --mist: #e7eef0;
  --coffee: #4b3028;
  --teal: #0e6c67;
  --teal-dark: #074744;
  --blush: #f1cecc;
  --sky: #7ec0d0;
  --sage: #6f8e7e;
  --clay: #d3948d;
  --rose: #b95148;
  --line: rgba(33, 27, 23, 0.15);
  --shadow: 0 24px 80px rgba(33, 27, 23, 0.18);
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, #d3948d 0%, #fbf7ef 30%, #6f8e7e 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--ink);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.has-scrolled {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(211, 148, 141, 0.94), rgba(251, 247, 239, 0.96) 48%, rgba(111, 142, 126, 0.94));
  box-shadow: 0 12px 34px rgba(33, 27, 23, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.site-header.has-scrolled .brand img {
  filter: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

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

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-book {
  color: var(--ink);
  background: linear-gradient(135deg, #d3948d, #6f8e7e);
  padding: 11px 16px;
  border-radius: 999px;
}

.site-header.has-scrolled .nav-book {
  color: var(--ink);
}

.nav-book::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: currentColor;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 48px) clamp(20px, 7vw, 96px) 72px;
  color: var(--ink);
  overflow: hidden;
  background: linear-gradient(135deg, #d3948d 0%, #fbf7ef 44%, #6f8e7e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  animation: heroDrift 12s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(211, 148, 141, 0.9) 0%, rgba(251, 247, 239, 0.78) 42%, rgba(111, 142, 126, 0.66) 100%),
    linear-gradient(0deg, rgba(255, 250, 241, 0.28), rgba(255, 250, 241, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(92vw, 1320px);
  max-width: none;
  padding-top: 36px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .kicker {
  color: #9b3f65;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(64px, 9vw, 150px);
  line-height: 0.86;
  letter-spacing: 0;
  white-space: nowrap;
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 24px;
  font-size: 24px;
}

h4 {
  margin: 0 0 7px;
  font-size: 18px;
}

.hero p:not(.kicker) {
  max-width: 520px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  color: rgba(33, 27, 23, 0.78);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, #d3948d 0%, #6f8e7e 100%);
  box-shadow: 0 16px 40px rgba(111, 142, 126, 0.32);
}

.button.primary:hover {
  background: linear-gradient(135deg, #6f8e7e 0%, #d3948d 100%);
}

.button.ghost {
  color: var(--ink);
  border-color: rgba(33, 27, 23, 0.34);
  background: rgba(255, 250, 241, 0.38);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(33, 27, 23, 0.54);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--ink);
  transform: translateX(-50%);
  animation: scrollPulse 1.4s ease-in-out infinite;
}

.section {
  padding: clamp(76px, 10vw, 138px) clamp(20px, 7vw, 96px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(90deg, #d3948d, #fffaf1 38%, #6f8e7e);
  color: var(--ink);
}

.intro-band div {
  min-height: 170px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(111, 142, 126, 0.42), rgba(211, 148, 141, 0.42));
}

.intro-band strong {
  font-size: 21px;
  margin-bottom: 10px;
}

.intro-band span {
  color: rgba(33, 27, 23, 0.68);
  line-height: 1.55;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.section-heading > p:not(.kicker),
.about-copy > p:not(.kicker),
.booking-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.drinks-section {
  background:
    linear-gradient(135deg, rgba(241, 206, 204, 0.42), rgba(255, 250, 241, 0.92) 45%, rgba(126, 192, 208, 0.36)),
    #fffaf1;
}

.drink-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 14px;
}

.drink-tile {
  position: relative;
  min-height: clamp(260px, 26vw, 420px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 18px 60px rgba(33, 27, 23, 0.14);
}

.drink-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.drink-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 11, 9, 0.74), rgba(14, 11, 9, 0.06) 58%);
}

.drink-tile div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fffaf1;
}

.drink-tile h3 {
  margin: 0 0 7px;
  font-size: 22px;
}

.drink-tile p {
  margin: 0;
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.45;
}

.drink-tile:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.menu-drinks {
  padding-top: 42px;
  padding-bottom: 42px;
}

.menu-section {
  background:
    linear-gradient(115deg, rgba(241, 206, 204, 0.48), rgba(251, 247, 239, 0.9) 42%, rgba(126, 192, 208, 0.38)),
    var(--paper);
}

.menu-page-header {
  position: sticky;
}

.menu-page-hero {
  padding: calc(var(--header-height) + 72px) clamp(20px, 7vw, 96px) 54px;
  background:
    linear-gradient(135deg, rgba(211, 148, 141, 0.95), rgba(251, 247, 239, 0.94) 45%, rgba(111, 142, 126, 0.9)),
    var(--paper);
}

.menu-page-hero h1 {
  color: var(--ink);
}

.menu-page-hero p:not(.kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.standalone-menu {
  padding-top: 42px;
}

.standalone-menu .menu-group h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  white-space: normal;
}

.standalone-menu .menu-item h3 {
  margin: 0 0 7px;
  font-size: 19px;
}

.menu-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(38px, 6vw, 72px);
}

.button.menu-ghost {
  color: var(--ink);
  border-color: rgba(33, 27, 23, 0.28);
  background: rgba(255, 250, 241, 0.64);
}

.menu-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 48px);
}

.menu-group {
  border-top: 3px solid var(--ink);
  padding-top: 28px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.menu-item span {
  color: var(--teal);
  font-weight: 900;
  white-space: nowrap;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(241, 206, 204, 0.55), rgba(255, 250, 241, 0.92) 48%, rgba(126, 192, 208, 0.35)),
    #fffaf1;
}

.about-details {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.about-details p {
  margin: 0;
  padding: 28px;
  color: var(--ink);
  background: #fffaf1;
  line-height: 1.55;
}

.contact-section {
  background: linear-gradient(135deg, var(--ink) 0%, #34231f 45%, #1c5662 100%);
  color: #fffaf1;
}

.contact-section .kicker {
  color: #f4b0a9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 250, 241, 0.18);
}

.contact-grid > * {
  min-height: 140px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #2c241f;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-grid a:hover {
  color: var(--ink);
  background: linear-gradient(135deg, #f1cecc, #7ec0d0);
  transform: translateY(-2px);
}

.contact-grid span {
  color: rgba(255, 250, 241, 0.62);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid strong {
  font-size: clamp(17px, 2vw, 24px);
  overflow-wrap: anywhere;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  padding: clamp(76px, 10vw, 138px) clamp(20px, 7vw, 96px);
  background:
    linear-gradient(135deg, #f1cecc 0%, rgba(251, 247, 239, 0.9) 42%, #7ec0d0 100%),
    var(--paper);
}

.booking-copy {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.booking-form {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(33, 27, 23, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
  min-height: 128px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14, 108, 103, 0.12);
}

.submit-button {
  width: 100%;
  margin-top: 22px;
}

.form-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.4;
}

.form-notice.success {
  color: #06413d;
  background: rgba(14, 108, 103, 0.13);
}

.form-notice.error {
  color: #7a211a;
  background: rgba(185, 81, 72, 0.13);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 7vw, 96px);
  color: rgba(255, 250, 241, 0.76);
  background: #17120f;
}

.requests-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(211, 148, 141, 0.92), rgba(255, 250, 241, 0.96) 42%, rgba(111, 142, 126, 0.82)),
    var(--paper);
}

.requests-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(36px, 7vw, 78px) 0;
}

.requests-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.requests-header h1 {
  color: var(--ink);
  font-size: clamp(42px, 8vw, 92px);
}

.requests-login {
  max-width: 430px;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: var(--shadow);
}

.requests-login .button {
  width: 100%;
  margin-top: 18px;
}

.requests-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.76);
}

.requests-summary strong {
  font-size: 32px;
}

.requests-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.9);
  box-shadow: var(--shadow);
}

.requests-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}

.requests-table th,
.requests-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(33, 27, 23, 0.12);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

.requests-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 250, 241, 0.95);
}

.requests-table td {
  font-size: 14px;
}

.screen-reader-only,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translateX(0);
  }
  to {
    transform: scale(1.07) translateX(1.5%);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  45% {
    opacity: 1;
    transform: translate(-50%, 9px);
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: rgba(251, 247, 239, 0.97);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-book {
    color: #fffaf1;
    text-align: center;
    margin-top: 6px;
  }

  .nav-toggle {
    display: block;
  }

  .intro-band,
  .menu-layout,
  .drink-gallery,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand img {
    width: 42px;
    height: 48px;
  }

  .hero {
    min-height: 92svh;
    padding: calc(var(--header-height) + 44px) 20px 64px;
  }

  .hero::before {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(211, 148, 141, 0.92) 0%, rgba(251, 247, 239, 0.8) 62%, rgba(111, 142, 126, 0.64) 100%),
      linear-gradient(0deg, rgba(255, 250, 241, 0.28), rgba(255, 250, 241, 0.08));
  }

  h1 {
    font-size: clamp(42px, 17vw, 82px);
  }

  h2 {
    font-size: clamp(34px, 13vw, 52px);
  }

  .section,
  .booking-section {
    padding: 72px 20px;
  }

  .intro-band {
    padding: 0;
  }

  .intro-band div {
    min-height: auto;
    padding: 28px 20px;
  }

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

  .booking-form {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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