/* ============================================
   ROALDEN KAFÉ OG MATHUS — Stylesheet
   ============================================ */

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

@media (max-width: 768px) {
  .contact-page {
    grid-template-columns: 1fr;
    padding: 40px 18px;
  }

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

:root {
  --navy: #102d3b;
  --navy-light: #243044;
  --cream: #f3eee6;
  --cream-dark: #d8d1c7;
  --brown: #8b7355;
  --brown-light: #a89070;
  --olive: #5c6b4e;
  --gold: #c4a057;
  --text-dark: #2a2a2a;
  --text-light: #f0ece4;
  --text-muted: #8a8a8a;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- LOOM ORDERING --- */
.order-shell {
  min-height: 100vh;
  background: #f3eee6;
}

.order-shell.compact {
  padding-top: 0;
}

.order-hero {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 150px 40px 54px;
  background:
    linear-gradient(90deg, rgba(16, 45, 59, 0.86), rgba(16, 45, 59, 0.22)),
    url("../images/hero_front.png");
  background-size: cover;
  background-position: center;
  color: var(--cream);
}

.order-hero.table {
  min-height: 260px;
  padding-top: 48px;
}

.order-hero > div {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.order-hero h1 {
  font-size: clamp(2.35rem, 7vw, 4.9rem);
  max-width: 780px;
}

.order-hero p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 16px;
  font-size: 1.05rem;
  color: rgba(243, 238, 230, 0.9);
}

.order-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.order-tabs {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  background: var(--cream);
}

.order-tabs button {
  border: 1px solid rgba(16, 45, 59, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  padding: 10px 14px;
  white-space: nowrap;
  cursor: pointer;
}

.order-tabs button.active {
  background: var(--navy);
  color: var(--cream);
}

.order-menu {
  display: grid;
  gap: 14px;
}

.order-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  min-height: 150px;
  border: 1px solid rgba(16, 45, 59, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.order-item.sold-out {
  opacity: 0.55;
}

.order-item img,
.order-item-placeholder {
  width: 150px;
  height: 150px;
  object-fit: cover;
  background: #d8d1c7;
}

.order-item-body {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 16px 16px 0;
}

.order-item-body h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.order-item-body p,
.order-allergens,
.muted {
  color: #6d6a65;
  font-size: 0.94rem;
}

.order-allergens {
  margin-top: 10px;
}

.order-item-actions {
  display: flex;
  min-width: 116px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.order-item-actions button,
.checkout-button {
  border: 0;
  background: var(--olive);
  color: var(--white);
  padding: 11px 14px;
  cursor: pointer;
  font-weight: 700;
}

.order-item-actions button:disabled,
.checkout-button:disabled {
  background: #999;
  cursor: not-allowed;
}

.order-cart {
  position: sticky;
  top: 16px;
  border: 1px solid rgba(16, 45, 59, 0.15);
  background: #fffaf2;
  padding: 20px;
}

.order-cart h2 {
  margin-bottom: 18px;
}

.cart-lines {
  display: grid;
  gap: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(16, 45, 59, 0.1);
}

.cart-line span {
  display: block;
  color: #6d6a65;
  font-size: 0.9rem;
}

.cart-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-stepper button {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(16, 45, 59, 0.2);
  background: white;
  cursor: pointer;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 18px 0;
  font-size: 1.1rem;
}

.checkout-form {
  display: grid;
  gap: 10px;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 45, 59, 0.18);
  background: white;
  padding: 12px;
  font: inherit;
}

.checkout-form textarea {
  min-height: 82px;
  resize: vertical;
}

.order-success {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--cream);
}

.order-success-card {
  max-width: 560px;
  width: 100%;
  background: white;
  padding: 34px;
  border: 1px solid rgba(16, 45, 59, 0.14);
  text-align: center;
}

.order-success-card h1 {
  margin: 8px 0 16px;
}

@media (max-width: 900px) {
  .order-layout {
    grid-template-columns: 1fr;
  }
  .order-cart {
    position: static;
  }
}

@media (max-width: 620px) {
  .order-hero {
    min-height: 300px;
    padding: 116px 20px 36px;
  }
  .order-layout {
    width: min(100% - 20px, 1180px);
    margin-top: 18px;
  }
  .order-item {
    grid-template-columns: 104px 1fr;
  }
  .order-item img,
  .order-item-placeholder {
    width: 104px;
    height: 132px;
  }
  .order-item-body {
    display: grid;
    padding: 12px 12px 12px 0;
  }
  .order-item-actions {
    flex-direction: row;
    align-items: center;
  }
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

/* --- HEADER / NAV (transparent, overlays hero) --- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
}

.header-inner {
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 124px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 92px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.main-nav a {
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 15px;
  transition: color 0.2s;
  white-space: nowrap;
  font-weight: 400;
  font-family: var(--font-sans);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-book {
  display: inline-block;
  background: rgba(92, 100, 73, 0.92);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 1.35px;
  text-transform: uppercase;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  font-weight: 500;
  font-family: var(--font-sans);
}

.btn-book:hover {
  background: #4d5c40;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 0.8rem;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 2px;
  cursor: default;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.lang-toggle::after {
  content: "⌄";
  font-size: 0.9rem;
  line-height: 1;
  transform: translateY(-1px);
}

.lang-flag {
  width: 16px;
  height: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO (full image behind navbar) --- */
.hero {
  position: relative;
  width: 100%;
  height: 547px;
  overflow: hidden;
}

.hero-picture,
.hero-img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-img {
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 28%,
    rgba(0, 0, 0, 0.16) 57%,
    rgba(15, 12, 8, 0.0) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 1390px;
  margin: 0 auto;
  padding: 184px 40px 0;
  display: block;
}

.hero-text {
  max-width: 560px;
}

.hero-text .subtitle {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 4.8px;
  font-style: normal;
}

.hero-text h1 {
  font-family: var(--font-serif);
  font-size: 4.78rem;
  color: var(--white);
  margin-bottom: 11px;
  white-space: pre-line;
  line-height: 0.95;
}

.hero-rule {
  display: block;
  width: 55px;
  height: 1px;
  background: rgba(255,255,255,0.78);
  margin: 0 0 15px;
}

.hero-text .hero-desc {
  font-size: 1.01rem;
  color: rgba(255,255,255,0.92);
  max-width: 454px;
  margin-bottom: 20px;
  line-height: 1.46;
}

.hero-text .btn-book {
  font-size: 0.82rem;
  padding: 12px 22px;
}

/* --- FEATURES ROW --- */
.features {
  background: var(--cream);
  border-bottom: none;
}

.features-inner {
  max-width: 1442px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.62fr;
  height: 109px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 39px;
  border-right: none;
  height: 100%;
}

.feature-item:last-child {
  border-right: none;
  padding: 0;
}

.feature-item .lucide {
  width: 34px;
  height: 34px;
  stroke: #32352b;
  stroke-width: 1.45;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #1d1d1b;
  margin-bottom: 2px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.feature-text p {
  font-size: 0.8rem;
  color: #1d1d1b;
  line-height: 1.35;
}

/* Dagens meny — last feature with image */
.feature-item.has-image {
  padding: 0;
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 220px;
  height: 100%;
  border-left: 1px solid var(--cream-dark);
}

.feature-item.has-image .feature-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 36px;
}

.feature-item.has-image .feature-text-block h4 {
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-dark);
  margin-bottom: 2px;
  font-family: var(--font-sans);
  font-weight: 400;
}

.feature-item.has-image .feature-text-block p {
  font-size: 0.83rem;
  color: #1d1d1b;
  margin-bottom: 0;
  display: inline;
}

.feature-item.has-image .feature-text-block .feature-arrow {
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.85;
  display: inline-block;
  margin-left: 10px;
  transform: translateY(1px);
}

.feature-item.has-image .feature-img-wrap {
  height: 108px;
  overflow: hidden;
  align-self: end;
  transform: translateY(2px);
  filter: drop-shadow(0 7px 17px rgba(0,0,0,0.24));
}

.feature-item.has-image .feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-link {
  color: inherit;
}

.feature-link .feature-img-wrap img {
  transition: transform 0.35s ease;
}

.feature-link:hover .feature-img-wrap img {
  transform: scale(1.05);
}

/* --- CARDS SECTION --- */
.cards-section {
  background: var(--cream);
  padding: 0 0 15px;
}

.cards-grid {
  max-width: 1442px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  height: 199px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.67) 0%,
    rgba(0,0,0,0.34) 45%,
    rgba(0,0,0,0.08) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 26px 42px;
}

.card-overlay .lucide {
  width: 31px;
  height: 31px;
  color: #fff;
  stroke-width: 1.4;
  margin-bottom: 17px;
}

.card-overlay h3 {
  color: var(--white);
  font-size: 0.93rem;
  text-transform: uppercase;
  letter-spacing: 1.55px;
  margin-bottom: 5px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.card-overlay p {
  color: rgba(255,255,255,0.92);
  font-size: 0.91rem;
  margin-bottom: 8px;
  line-height: 1.45;
}

.card-overlay .card-arrow {
  color: rgba(255,255,255,0.9);
  font-size: 1.55rem;
  line-height: 1;
}

/* --- FOOTER --- */
.site-footer {
  background: radial-gradient(circle at 50% 0%, #16384b 0%, #102d3b 58%, #0b2430 100%);
  color: var(--cream);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 888px;
  margin: 0 auto;
  padding: 26px 0 11px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 82px;
  margin-bottom: 11px;
}

.footer-col h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-light);
  margin-bottom: 4px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.footer-col p,
.footer-col li {
  font-size: 0.91rem;
  color: rgba(245, 240, 232, 0.84);
  line-height: 1.65;
}

.footer-col ul {
  list-style: none;
}

.social-links {
  display: flex;
  gap: 28px;
  margin-top: 11px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border: none;
  border-radius: 0;
  color: var(--cream);
  transition: border-color 0.2s, color 0.2s;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 13px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  display: flex;
  justify-content: center;
  gap: 39px;
}

/* --- PAGE HEADER (subpages) --- */
.page-header {
  background: var(--navy);
  padding: 56px 40px;
  padding-top: 130px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- PAGE CONTENT (subpages) --- */
.page-content {
  padding: 56px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 14px;
  margin-top: 44px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 14px;
}

.page-content img {
  width: 100%;
  border-radius: 2px;
  margin: 20px 0;
}

/* --- ABOUT PAGE --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 44px;
}

.about-grid img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-section {
  margin-bottom: 44px;
}

/* --- CONTACT PAGE --- */
.contact-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-info-card {
  background: #fbf8f2;
  border: 1px solid rgba(42,42,42,0.09);
  box-shadow: 0 10px 28px rgba(16,45,59,0.08);
}

.contact-card {
  padding: 28px;
}

.contact-info-card {
  padding: 28px;
}

.contact-info-card h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.contact-info-card p,
.contact-info-card a {
  color: #4a4a4a;
  line-height: 1.65;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #1d1d1b;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(42,42,42,0.16);
  background: var(--white);
  color: var(--text-dark);
  min-height: 48px;
  padding: 12px;
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-wide,
.contact-submit,
.contact-form .booking-message {
  grid-column: 1 / -1;
}

/* --- MENU PAGE --- */
.menu-tabs {
  position: sticky;
  top: 76px;
  z-index: 8;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: -18px 0 34px;
  padding: 12px 0;
  background: rgba(250,248,244,0.94);
  border-bottom: 1px solid rgba(16,45,59,0.08);
  backdrop-filter: blur(10px);
}

.menu-tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(16,45,59,0.14);
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.menu-category {
  margin-bottom: 54px;
}

.menu-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--cream-dark);
}

.menu-category-heading h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0;
}

.menu-category-heading p {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.menu-featured {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  margin-bottom: 54px;
}

.menu-featured-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.menu-featured-card img {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  opacity: 0.82;
}

.menu-featured-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 26px;
  background: linear-gradient(to top, rgba(0,0,0,0.76), rgba(0,0,0,0));
}

.menu-featured-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 700;
}

.menu-featured-card h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.7rem;
}

.menu-featured-card p {
  color: rgba(255,255,255,0.9);
  margin: 0;
}

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

.menu-item {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(16,45,59,0.09);
  box-shadow: 0 10px 30px rgba(16,45,59,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(16,45,59,0.1);
}

.menu-item.has-photo {
  grid-template-columns: 150px 1fr;
  min-height: 150px;
}

.menu-item img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}

.menu-item-body {
  padding: 20px;
}

.menu-item-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 7px;
}

.menu-item-topline h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0;
}

.menu-item-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--brown);
  white-space: nowrap;
  font-weight: 600;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.menu-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border: 1px solid rgba(139,115,85,0.22);
  color: var(--brown);
  font-size: 0.72rem;
  background: rgba(243,238,230,0.8);
}

/* --- EXPERIENCES PAGE --- */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.experience-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}

.experience-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

.experience-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.experience-card-body {
  padding: 22px;
}

.experience-card-body h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.experience-card-body p {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.btn-experience {
  display: inline-block;
  background: var(--olive);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: background 0.2s;
  font-weight: 500;
}

.btn-experience:hover {
  background: #4d5c40;
}

/* --- TAKEAWAY PAGE --- */
.takeaway-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.takeaway-content p {
  margin-bottom: 18px;
}

.btn-order {
  display: inline-block;
  background: var(--olive);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 14px 34px;
  transition: background 0.2s;
  margin-top: 14px;
  font-weight: 500;
}

.btn-order:hover {
  background: #4d5c40;
}

/* --- CATERING PAGE --- */
.catering-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 28px 0;
}

.catering-service {
  background: var(--white);
  padding: 26px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.catering-service h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.catering-service p {
  font-size: 0.86rem;
  color: #555;
}

/* --- BLOG PAGE --- */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.blog-post {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.blog-post img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.blog-post-body {
  padding: 26px;
}

.blog-post-body .blog-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.blog-post-body h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 12px 0;
}

.blog-post-body p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}

/* --- BOOKING MODULE --- */
.booking-page {
  background: var(--cream);
  min-height: 100vh;
}

.booking-hero {
  min-height: 430px;
  padding: 168px 24px 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.08)),
    url("../images/hero_front.png") center top / cover;
}

.booking-hero > div,
.booking-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.booking-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.84);
  margin-bottom: 8px;
}

.booking-hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 14px;
}

.booking-hero p:last-child {
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  padding: 28px 24px 54px;
  align-items: start;
}

.booking-panel,
.booking-aside,
.admin-card,
.admin-manual {
  background: #fbf8f2;
  border: 1px solid rgba(42,42,42,0.09);
  box-shadow: 0 10px 28px rgba(16,45,59,0.08);
}

.booking-panel {
  padding: 28px;
}

.booking-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.booking-steps span,
.experience-meta span,
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(16,45,59,0.08);
  color: #263326;
}

.booking-steps .active {
  background: var(--olive);
  color: var(--white);
}

.booking-steps .done {
  background: rgba(92, 107, 78, 0.18);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.booking-section-title.first {
  margin-top: 6px;
}

.calendar-picker {
  background: var(--white);
  border: 1px solid rgba(42,42,42,0.11);
  padding: 16px;
}

.calendar-header {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.calendar-header strong {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--navy);
}

.calendar-nav,
.guest-button,
.large-group button,
.wizard-back {
  border: 1px solid rgba(42,42,42,0.14);
  background: var(--white);
  color: #1d1d1b;
  min-height: 74px;
  padding: 14px;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.calendar-nav {
  min-height: 48px;
  padding: 0;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
}

.calendar-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekday {
  min-height: 30px;
  display: grid;
  place-items: center;
  color: #62625a;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.calendar-empty {
  min-height: 58px;
}

.calendar-day {
  border: 1px solid rgba(42,42,42,0.12);
  background: #fbf8f2;
  color: #1d1d1b;
  min-height: 58px;
  padding: 8px;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.calendar-day strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.calendar-day span {
  display: block;
  color: #666;
  font-size: 0.68rem;
  min-height: 12px;
}

.calendar-day:disabled {
  color: rgba(29,29,27,0.28);
  background: rgba(251,248,242,0.55);
  cursor: not-allowed;
}

.calendar-day:hover,
.calendar-nav:hover:not(:disabled),
.guest-button:hover,
.large-group button:hover,
.wizard-back:hover,
.calendar-day.selected,
.guest-button.selected {
  border-color: var(--olive);
  background: rgba(92, 107, 78, 0.1);
}

.guest-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.guest-button {
  min-height: 86px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
}

.large-group {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  margin-top: 4px;
  padding: 16px;
  background: rgba(16,45,59,0.05);
  border: 1px solid rgba(42,42,42,0.08);
}

.large-group label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
}

.large-group input {
  min-height: 48px;
  border: 1px solid rgba(42,42,42,0.16);
  padding: 12px;
  font: inherit;
  font-size: 1rem;
}

.large-group button {
  min-height: 48px;
  background: var(--olive);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
}

.wizard-back {
  min-height: 44px;
  margin-top: 18px;
  text-align: center;
}

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

.booking-grid label,
.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #1d1d1b;
  font-weight: 600;
}

.booking-grid input,
.booking-grid select,
.booking-grid textarea,
.admin-form input {
  width: 100%;
  border: 1px solid rgba(42,42,42,0.16);
  background: var(--white);
  color: var(--text-dark);
  min-height: 48px;
  padding: 12px;
  font: inherit;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

.booking-grid textarea {
  resize: vertical;
  min-height: 110px;
}

.booking-section-title {
  margin: 26px 0 12px;
}

.booking-section-title h2,
.booking-aside h2 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-weight: 600;
  color: #1d1d1b;
}

.booking-section-title p {
  color: #62625a;
  font-size: 0.9rem;
  margin-top: 3px;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
}

.slot-button,
.admin-tabs button,
.admin-card-actions button {
  border: 1px solid rgba(42,42,42,0.14);
  background: var(--white);
  color: #1d1d1b;
  min-height: 46px;
  padding: 10px 12px;
  font-size: 0.88rem;
  letter-spacing: 0.6px;
  cursor: pointer;
}

.slot-button.selected,
.admin-tabs button.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.booking-submit {
  margin-top: 18px;
  min-height: 50px;
}

.booking-message {
  margin-top: 14px;
  color: var(--olive);
  font-weight: 600;
}

.booking-message.error,
.empty-state {
  color: #8b3a2e;
}

.confirmation-state {
  text-align: center;
  padding: 54px 20px;
}

.confirmation-state .lucide {
  width: 52px;
  height: 52px;
  color: var(--olive);
  margin-bottom: 16px;
}

.confirmation-state h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.confirmation-state p {
  margin-bottom: 22px;
}

.booking-aside {
  overflow: hidden;
}

.booking-aside img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.booking-aside div {
  padding: 22px;
}

.booking-aside p {
  color: #555;
  margin-top: 8px;
  line-height: 1.7;
}

.experience-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

/* --- ADMIN BOOKING --- */
.admin-page {
  min-height: 100vh;
  background: var(--cream);
  padding: 22px;
}

.admin-top {
  max-width: 1180px;
  margin: 0 auto 18px;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(16,45,59,0.96), rgba(16,45,59,0.72)),
    url("../images/hero_front.png") center / cover;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.admin-top .booking-kicker {
  margin-bottom: 2px;
}

.admin-top h1 {
  color: var(--white);
  font-size: 2.6rem;
}

.admin-tabs,
.admin-list,
.admin-manual {
  max-width: 1180px;
  margin: 0 auto;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.admin-tabs button {
  min-width: max-content;
  font-weight: 700;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-card {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.admin-card-main {
  display: flex;
  gap: 16px;
}

.admin-time {
  min-width: 86px;
  color: var(--navy);
}

.admin-time strong {
  display: block;
  font-size: 1.45rem;
}

.admin-time span,
.admin-card p {
  color: #555;
  font-size: 0.9rem;
}

.admin-card h2 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1d1d1b;
}

.admin-notes {
  margin-top: 6px;
  color: #6b563e !important;
}

.admin-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 520px;
}

.admin-card-actions button {
  min-height: 42px;
  font-weight: 700;
}

.status-badge {
  font-weight: 800;
  border: 1px solid transparent;
}

.status-badge.pending {
  background: #efe3c5;
}

.status-badge.confirmed,
.status-badge.arrived {
  background: #dfe8d4;
}

.status-badge.cancelled {
  background: #ead3cf;
}

.status-badge.completed {
  background: #dce1e2;
}

.admin-manual {
  padding: 16px;
  margin-bottom: 14px;
}

.admin-empty {
  padding: 30px;
  background: #fbf8f2;
  border: 1px solid rgba(42,42,42,0.09);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .main-nav {
    position: static;
    transform: none;
  }
  .header-inner {
    height: 92px;
  }
  .logo-img {
    height: 68px;
  }
  .main-nav a {
    font-size: 0.68rem;
    padding: 8px 8px;
  }
  .nav-right {
    gap: 10px;
  }
  .hero {
    height: 520px;
  }
  .hero-content {
    padding-top: 165px;
  }
  .hero-text h1 {
    font-size: 4rem;
  }
  .features-inner {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .feature-item {
    height: 130px;
  }
  .feature-item:nth-child(2) {
    border-right: none;
  }
  .feature-item.has-image {
    height: 130px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .experiences-grid {
    grid-template-columns: 1fr;
  }
  .catering-services {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .booking-shell {
    grid-template-columns: 1fr;
  }
  .booking-aside {
    display: grid;
    grid-template-columns: 220px 1fr;
  }
  .booking-aside img {
    height: 100%;
  }
  .admin-card {
    grid-template-columns: 1fr;
  }
  .admin-card-actions {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    background: rgba(26, 35, 50, 0.85);
  }
  .header-inner {
    height: 74px;
  }
  .logo-img {
    height: 52px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transform: none;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 12px 28px;
    font-size: 0.82rem;
  }
  .hamburger {
    display: flex;
  }
  .nav-right .btn-book {
    display: none;
  }
  .hero {
    height: 560px;
  }
  .hero-content {
    padding: 0 24px;
    padding-top: 132px;
  }
  .hero-text h1 {
    font-size: 3rem;
    line-height: 1;
  }
  .hero-text .subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
  }
  .hero-text .hero-desc {
    font-size: 0.95rem;
  }
  .features-inner {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .feature-item {
    height: 120px;
  }
  .feature-item.has-image {
    height: 120px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .menu-featured,
  .menu-dish-grid {
    grid-template-columns: 1fr;
  }
  .menu-tabs {
    top: 64px;
    margin-top: -8px;
  }
  .menu-category-heading {
    display: block;
  }
  .menu-featured-card {
    min-height: 290px;
  }
  .menu-item.has-photo {
    grid-template-columns: 1fr;
  }
  .menu-item img {
    height: 210px;
  }
  .card {
    height: 200px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-inner {
    padding: 28px 24px 16px;
  }
  .page-header {
    padding: 36px 24px;
    padding-top: 110px;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .page-content {
    padding: 36px 20px;
  }
  .lang-toggle {
    display: none;
  }
  .header-inner {
    padding: 0 16px;
  }
  .booking-hero {
    min-height: 390px;
    padding-top: 126px;
  }
  .booking-hero h1 {
    font-size: 3rem;
  }
  .booking-shell {
    padding: 18px 14px 36px;
  }
  .booking-panel {
    padding: 18px;
  }
  .booking-grid,
  .admin-form {
    grid-template-columns: 1fr;
  }
  .booking-aside {
    grid-template-columns: 1fr;
  }
  .booking-aside img {
    height: 180px;
  }
  .admin-page {
    padding: 12px;
  }
  .admin-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-card-main {
    flex-direction: column;
    gap: 8px;
  }
  .admin-card-actions button {
    flex: 1 1 44%;
  }
}

@media (max-width: 480px) {
  .features-inner {
    grid-template-columns: 1fr;
    height: auto;
  }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
    height: 100px;
  }
  .feature-item.has-image {
    height: 120px;
  }
  .hero {
    height: 520px;
  }
  .hero-text h1 {
    font-size: 2.35rem;
  }
  .booking-hero h1 {
    font-size: 2.45rem;
  }
  .slot-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .guest-picker {
    grid-template-columns: repeat(2, 1fr);
  }
  .large-group {
    grid-template-columns: 1fr;
  }
  .calendar-picker {
    padding: 10px;
  }
  .calendar-header {
    grid-template-columns: 42px 1fr 42px;
  }
  .calendar-header strong {
    font-size: 1.15rem;
  }
  .calendar-month-grid {
    gap: 4px;
  }
  .calendar-day,
  .calendar-empty {
    min-height: 48px;
  }
  .calendar-day {
    padding: 6px;
  }
}

/* --- MOBILE HOME MATCH: WEBSITE_MOBILE REFERENCE --- */
.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-actions .btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-actions .lucide {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.mobile-home-panel,
.footer-mobile-icon {
  display: none;
}

.hero-actions .btn-menu,
.hero-actions .btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.48);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  font-size: 0.82rem;
  letter-spacing: 1.35px;
  text-transform: uppercase;
  padding: 12px 20px;
  font-weight: 500;
  font-family: var(--font-sans);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.hero-actions .btn-menu:hover,
.hero-actions .btn-order:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.72);
}

.hero-actions .btn-order {
  background: rgba(196, 160, 87, 0.92);
  border-color: rgba(196, 160, 87, 0.92);
}

.hero-actions .btn-order:hover {
  background: #d0aa60;
  border-color: #d0aa60;
}

@media (max-width: 768px) {
  body {
    background: #0d2a38;
  }

  .site-header {
    background: transparent;
  }

  .header-inner {
    height: 98px;
    padding: 0 22px;
    align-items: flex-start;
    padding-top: 19px;
  }

  .logo-img {
    height: 74px;
  }

  .nav-right {
    gap: 0;
  }

  .hamburger {
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50%;
    background: rgba(9, 30, 40, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #f7efe4;
  }

  .main-nav {
    top: 92px;
    left: 18px;
    right: 18px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(13, 42, 56, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .main-nav a {
    padding: 14px 22px;
  }

  .hero {
    height: 716px;
    max-height: 92vh;
    min-height: 650px;
    background: #0d2a38;
  }

  .hero-img {
    object-position: center center;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(8, 25, 34, 0.16) 0%, rgba(8, 25, 34, 0.04) 23%, rgba(8, 25, 34, 0.72) 72%, rgba(8, 25, 34, 0.94) 100%),
      linear-gradient(to right, rgba(8, 25, 34, 0.62) 0%, rgba(8, 25, 34, 0.14) 56%, rgba(8, 25, 34, 0.28) 100%);
  }

  .hero-content {
    display: flex;
    align-items: flex-end;
    padding: 0 24px 112px;
  }

  .hero-text {
    width: 100%;
    max-width: 390px;
  }

  .hero-text .subtitle {
    color: #d3ae64;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3.8px;
    margin-bottom: 10px;
  }

  .hero-text h1 {
    font-size: clamp(3rem, 12.45vw, 3.7rem);
    line-height: 0.9;
    margin-bottom: 18px;
    letter-spacing: 0;
  }

  .hero-rule {
    width: 54px;
    height: 2px;
    background: #d0aa60;
    margin-bottom: 18px;
  }

  .hero-text .hero-desc {
    max-width: 346px;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 250, 242, 0.92);
    margin-bottom: 0;
  }

  .hero-actions {
    width: min(100%, 350px);
    display: grid;
    grid-template-columns: 1.08fr 0.82fr 0.95fr;
    gap: 9px;
    align-items: stretch;
    margin-top: 25px;
  }

  .hero-actions .btn-book,
  .hero-actions .btn-menu,
  .hero-actions .btn-order {
    min-width: 0;
    height: 56px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    margin: 0;
    align-self: stretch;
    border-radius: 0;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .hero-actions .btn-book {
    background: #bf9a52;
    color: #102d3b;
  }

  .hero-actions .btn-menu {
    border: 1px solid rgba(196, 160, 87, 0.78);
    color: #f7efe4;
    background: rgba(8, 25, 34, 0.48);
  }

  .hero-actions .btn-order {
    background: #f0e8db;
    color: #102d3b;
  }

  .hero-actions .lucide {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
  }

  .features {
    display: none;
  }

  .cards-section {
    position: relative;
    z-index: 5;
    margin-top: -54px;
    padding: 0;
    background: transparent;
  }

  .cards-grid {
    display: none;
  }

  .mobile-home-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    padding: 21px 14px 18px;
    background: #f3eee6;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -18px 38px rgba(0, 0, 0, 0.24);
  }

  .mobile-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    color: #152f3c;
    background: rgba(255, 250, 242, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: none;
  }

  .mobile-card h3 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .mobile-card p {
    color: rgba(21, 47, 60, 0.72);
    font-size: 0.72rem;
    line-height: 1.32;
  }

  .mobile-card .lucide {
    width: 30px;
    height: 30px;
    color: #b7904d;
    stroke-width: 1.6;
    margin-bottom: 0;
  }

  .mobile-card-large {
    grid-column: 1 / -1;
    min-height: 116px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 41%;
    align-items: stretch;
  }

  .mobile-card-large .mobile-card-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 17px;
    min-width: 0;
  }

  .mobile-card-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-card-large.menu {
    min-height: 116px;
  }

  .mobile-card-large.menu h3 {
    font-size: 0.82rem;
  }

  .mobile-card-small {
    min-height: 91px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    grid-template-rows: auto auto;
    column-gap: 8px;
    align-content: center;
    align-items: center;
    padding: 13px 12px;
  }

  .mobile-card-small::after {
    content: "\2192";
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    color: #152f3c;
    font-size: 1rem;
    opacity: 0.9;
  }

  .mobile-card-small > .lucide {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .mobile-card-small > h3 {
    grid-column: 2;
    grid-row: 1;
  }

  .mobile-card-small > p {
    grid-column: 2;
    grid-row: 2;
  }

  .mobile-card-photo {
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    column-gap: 8px;
    padding-right: 12px;
    align-items: stretch;
  }

  .mobile-card-photo::after {
    display: block;
  }

  .mobile-card-photo > div {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    grid-template-rows: auto auto;
    column-gap: 8px;
    align-content: center;
    align-items: center;
  }

  .mobile-card-photo .lucide {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .mobile-card-photo h3 {
    grid-column: 2;
    grid-row: 1;
  }

  .mobile-card-photo p {
    grid-column: 2;
    grid-row: 2;
  }

  .mobile-card-large.find {
    min-height: 124px;
    grid-template-columns: minmax(0, 1fr) 45%;
    background: #102d3b;
    color: #fffaf2;
  }

  .mobile-card-large.find::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(16, 45, 59, 0.98) 0%, rgba(16, 45, 59, 0.78) 55%, rgba(16, 45, 59, 0.1) 100%);
    pointer-events: none;
  }

  .mobile-card-large.find .mobile-card-copy {
    position: relative;
    z-index: 1;
  }

  .mobile-card-large.find h3,
  .mobile-card-large.find p,
  .mobile-card-large.find .lucide {
    color: #fffaf2;
  }

  .mobile-card-large.find .lucide {
    margin-bottom: 10px;
  }

  .mobile-card-large.find p {
    color: rgba(255, 250, 242, 0.84);
  }

  .site-footer {
    background: radial-gradient(circle at 50% 0%, #16394c 0%, #102d3b 58%, #0b2430 100%);
  }

  .footer-inner {
    padding: 24px 17px 13px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 0.8fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .footer-col {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
  }

  .footer-col:last-child {
    grid-template-columns: 1fr;
  }

  .footer-mobile-icon {
    display: block;
    width: 24px;
    height: 24px;
    color: #d0aa60;
    stroke-width: 1.6;
  }

  .footer-col h4 {
    font-size: 0.62rem;
    letter-spacing: 1.4px;
    color: #d0aa60;
    margin-bottom: 7px;
  }

  .footer-col p,
  .footer-col li {
    font-size: 0.66rem;
    line-height: 1.55;
  }

  .social-links {
    gap: 12px;
    margin-top: 6px;
  }

  .social-links a {
    width: 25px;
    height: 25px;
    color: #d0aa60;
  }

  .social-links svg {
    width: 23px;
    height: 23px;
  }

  .footer-bottom {
    justify-content: space-between;
    gap: 10px;
    padding-top: 11px;
    font-size: 0.58rem;
    text-align: left;
  }

  .page-header {
    background: linear-gradient(180deg, #102d3b 0%, #123647 100%);
    padding-top: 118px;
  }

  .page-header h1 {
    color: #fffaf2;
  }

  .page-header p {
    color: rgba(255, 250, 242, 0.86);
  }

  .page-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 28px 18px 42px;
    background: #f3eee6;
  }

  .page-content h2,
  .menu-category-heading h2 {
    color: #102d3b;
  }

  .page-content p,
  .menu-category-heading p {
    color: #4d5a5f;
  }

  .contact-page {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 16px 44px;
    background: #f3eee6;
  }

  .contact-card,
  .contact-info-card {
    width: 100%;
    min-width: 0;
    padding: 20px;
    box-shadow: none;
  }

  .contact-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form label,
  .contact-wide,
  .contact-submit,
  .contact-form .booking-message {
    grid-column: 1;
  }

  .contact-form input,
  .contact-form textarea {
    min-width: 0;
    width: 100%;
    font-size: 16px;
  }

  .contact-submit {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .about-grid,
  .about-section {
    padding: 0;
  }

  .menu-tabs {
    top: 0;
    z-index: 20;
    margin: -2px -18px 24px;
    padding: 12px 18px;
    gap: 9px;
    background: rgba(243, 238, 230, 0.96);
    border-bottom: 1px solid rgba(16, 45, 59, 0.12);
    box-shadow: 0 8px 22px rgba(16, 45, 59, 0.08);
    backdrop-filter: blur(12px);
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    min-height: 42px;
    padding: 0 15px;
    border-radius: 999px;
    border-color: rgba(16, 45, 59, 0.14);
    background: rgba(255, 250, 242, 0.84);
    color: #102d3b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    box-shadow: none;
    scroll-snap-align: start;
  }

  .menu-tab.active {
    background: #102d3b;
    color: #fffaf2;
    border-color: #102d3b;
  }

  .menu-category-heading {
    margin-bottom: 16px;
  }

  .menu-category-heading h2 {
    font-size: 1.55rem;
  }

  .menu-dish-grid {
    gap: 12px;
  }

  .menu-item {
    background: rgba(255, 250, 242, 0.86);
    border-color: rgba(16, 45, 59, 0.12);
    box-shadow: none;
  }

  .menu-featured-card div {
    padding: 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.06));
  }

  .menu-featured-card h2 {
    color: #fffaf2;
  }

  .menu-featured-card p {
    color: rgba(255, 250, 242, 0.9);
  }

  .menu-featured-card span {
    color: #d0aa60;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 630px;
  }

  .hero-content {
    padding: 0 18px 104px;
  }

  .hero-actions {
    width: 100%;
    gap: 7px;
  }

  .hero-actions .btn-book,
  .hero-actions .btn-menu,
  .hero-actions .btn-order {
    height: 52px;
    min-height: 52px;
    font-size: 0.66rem;
    padding: 0 7px;
  }

  .mobile-card-small {
    min-height: 88px;
    grid-template-columns: 38px minmax(0, 1fr) 16px;
    padding: 11px 10px;
  }

  .mobile-card-photo > div {
    grid-template-columns: 38px minmax(0, 1fr) 16px;
  }

  .mobile-card .lucide {
    width: 27px;
    height: 27px;
  }

  .footer-grid {
    gap: 7px;
    grid-template-columns: 1.18fr 0.92fr 0.72fr;
  }

  .footer-col {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 6px;
  }

  .footer-mobile-icon {
    width: 21px;
    height: 21px;
  }
}
