:root {
  --ink: #24150d;
  --muted: #766052;
  --paper: #fffdf8;
  --cream: #fff7ea;
  --saffron: #d9771f;
  --marigold: #f4b23f;
  --chili: #a13318;
  --leaf: #2f6f44;
  --line: rgba(90, 48, 25, 0.15);
  --shadow: 0 24px 70px rgba(70, 33, 14, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(244, 178, 63, 0.18), transparent 25rem),
    linear-gradient(180deg, #fffaf1 0%, #fff 46%, #fff6e8 100%);
  font-family: Inter, Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  width: 100%;
  max-width: 100vw;
  padding: 12px clamp(18px, 4vw, 54px);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(74, 36, 18, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

nav a,
.header-call {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

nav a:hover,
.header-call {
  color: var(--chili);
  background: rgba(217, 119, 31, 0.12);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.language-switcher button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.language-switcher button.is-active {
  color: #fff;
  background: var(--chili);
}

.compact-hero,
.quick-section,
.order-section,
.reservation-contact,
.map-section {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.compact-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  min-height: auto;
  padding: clamp(28px, 5vw, 54px) 0 clamp(34px, 6vw, 64px);
}

.hero-copy {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(255, 246, 229, 0.94)),
    url("assets/selected/food-curry.png") right bottom / 48% auto no-repeat;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--saffron);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(2.35rem, 4.6vw, 4.25rem);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.3rem);
}

.hero-copy p:not(.eyebrow),
.quick-section p,
.reservation-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy .takeaway-note {
  display: inline-flex;
  margin: 8px 0 22px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #6a341f;
  background: rgba(244, 178, 63, 0.2);
  font-weight: 800;
}

.hero-actions,
.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--chili), var(--saffron));
  box-shadow: 0 14px 34px rgba(161, 51, 24, 0.22);
}

.button.ghost,
.icon-button {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero-slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background: #24150d;
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: none;
  filter: none;
  transition: opacity 700ms ease;
}

.slide.is-active {
  opacity: 1;
}

.slide-interior,
.slide-bar {
  object-position: center 48%;
}

.slide-garden {
  object-position: center 42%;
}

.slide-food {
  object-position: center;
}

.slider-dots {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}

.slider-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.slider-dots span.is-active {
  width: 28px;
  border-radius: 999px;
  background: #fff;
}

.quick-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 8px 0 clamp(48px, 7vw, 84px);
}

.quick-section article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 14px 44px rgba(70, 33, 14, 0.08);
}

.quick-section img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.quick-section div {
  padding: 20px;
}

.quick-section h2 {
  font-size: 1.65rem;
}

.menu-section {
  padding: clamp(34px, 6vw, 64px) clamp(18px, 4vw, 54px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(35, 21, 13, 0.9), rgba(35, 21, 13, 0.76)),
    url("assets/selected/bar-detail.jpg") center / cover;
}

.section-heading,
.menu-shell {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.section-heading {
  margin-bottom: 16px;
}

.menu-shell {
  padding: clamp(10px, 2vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.menu-toolbar {
  justify-content: space-between;
  margin-bottom: 12px;
}

.menu-toolbar span {
  font-weight: 800;
}

.menu-download {
  color: var(--ink);
  background: var(--marigold);
}

.menu-viewer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  max-height: none;
  overflow: visible;
  border-radius: 12px;
  background: transparent;
}

.menu-viewer img {
  width: auto;
  max-width: 100%;
  max-height: min(88vh, 1040px);
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(14, 8, 4, 0.34);
}

.order-section {
  padding: clamp(48px, 7vw, 82px) 0 10px;
}

.order-section .section-heading {
  color: var(--ink);
}

.order-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.order-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 3vw, 34px);
  margin-top: 22px;
  align-items: stretch;
}

.order-builder,
.order-form {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 46px rgba(70, 33, 14, 0.08);
}

.order-builder {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 24px;
}

.order-builder select,
.order-builder input {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(75, 42, 24, 0.2);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--ink);
  background: #fffaf0;
  font: inherit;
  font-weight: 800;
}

.order-builder .button {
  width: 100%;
}

.order-builder .is-hidden {
  display: none;
}

.order-form {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 24px;
}

.order-builder,
.order-form {
  min-height: 544px;
}

.field-hint {
  margin-top: -6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.order-summary {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #22140d, #5a2a18);
}

.order-summary strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.order-lines,
.order-summary span,
.order-note {
  margin: 0;
  line-height: 1.55;
}

.order-lines {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.order-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.order-line:last-child {
  border-bottom: 0;
}

.order-line strong {
  color: #fff;
  font-family: inherit;
  font-size: 0.98rem;
}

.order-line span {
  color: #ffd37a;
  font-weight: 900;
}

.order-line-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.order-line-actions button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #3f1e12;
  background: #ffd37a;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.order-empty {
  margin: 0;
}

.order-summary span {
  color: #ffd37a;
  font-weight: 900;
}

.order-note {
  padding: 12px 14px;
  border-radius: 14px;
  color: #6a341f;
  background: rgba(244, 178, 63, 0.18);
  font-weight: 800;
}

.reservation-contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  padding: clamp(50px, 8vw, 86px) 0 28px;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, #23150e, #4b2516);
}

.hours-card {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(126, 64, 27, 0.14);
  border-radius: 20px;
  background: linear-gradient(145deg, #fffaf0, #ffe9bd);
  box-shadow: 0 18px 42px rgba(91, 49, 22, 0.1);
}

.hours-card strong {
  color: var(--chili);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.hours-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.hours-card div {
  display: grid;
  grid-template-columns: minmax(130px, 0.9fr) 1.1fr;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(126, 64, 27, 0.14);
}

.hours-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-card dt,
.hours-card dd {
  margin: 0;
}

.hours-card dt {
  color: #6f4227;
  font-weight: 800;
}

.hours-card dd {
  color: var(--ink);
  font-weight: 700;
}

.contact-card span,
.contact-card a {
  color: rgba(255, 255, 255, 0.84);
}

.contact-card a {
  font-weight: 800;
}

.reservation-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #4f3524;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(75, 42, 24, 0.2);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

.form-status.error {
  color: var(--chili);
}

.map-section {
  padding-bottom: 50px;
}

iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.84);
  background: #17100b;
}

.footer-brand {
  display: grid;
  gap: 4px;
  min-width: 220px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  text-align: center;
}

.footer-contact p {
  margin: 0;
  line-height: 1.55;
}

.footer-contact a {
  color: #ffd37a;
  font-weight: 800;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 211, 122, 0.34);
  border-radius: 50%;
  color: #ffd37a;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 211, 122, 0.78);
  background: rgba(255, 211, 122, 0.12);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 2px;
  }

  nav a,
  .header-call {
    padding-inline: 9px;
    font-size: 0.84rem;
  }

  .language-switcher {
    order: 3;
  }

  .compact-hero,
  .quick-section,
  .order-shell,
  .reservation-contact {
    grid-template-columns: 1fr;
  }

  .compact-hero {
    padding-top: 24px;
  }

  .hero-slider {
    min-height: 430px;
  }

  .order-summary {
    grid-column: auto;
  }

  .order-builder,
  .order-form {
    min-height: 0;
  }

  .quick-section {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    overflow-x: auto;
    padding-bottom: 42px;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  h1 {
    font-size: clamp(1.72rem, 8.5vw, 2.15rem);
    line-height: 1.08;
  }

  h2 {
    font-size: 2rem;
  }

  .compact-hero,
  .quick-section,
  .order-section,
  .reservation-contact,
  .map-section {
    width: min(100% - 28px, 1180px);
  }

  .hero-copy {
    padding: 22px;
    overflow: hidden;
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(255, 246, 229, 0.98));
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .hero-slider {
    min-height: 320px;
    border-radius: 22px;
  }

  .quick-section {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .menu-toolbar,
  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .menu-toolbar > * {
    width: 100%;
  }

  .menu-viewer img {
    max-height: 74vh;
  }
}
