:root {
  --bg: #f2ece6;
  --surface: #fcf8f2;
  --surface-soft: #eee3d7;
  --ink: #2a2320;
  --muted: #6f5f57;
  --border: #dbc9bd;
  --primary: #8a2e2a;
  --primary-dark: #6b221f;
  --secondary: #3a2c29;
  --secondary-soft: #efe2dc;
  --accent: #d6cab8;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 20px 42px rgba(48, 32, 28, 0.14);
  --container: 1280px;
  --container-wide: 1720px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: clip; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -20%, rgba(138, 46, 42, 0.18), transparent 46%),
    radial-gradient(circle at 96% 4%, rgba(219, 201, 189, 0.32), transparent 38%),
    var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

.announcement-bar {
  background: linear-gradient(90deg, #742622, #8a2e2a 45%, #5b1c19);
  color: #f5eee4;
  font-size: 13px;
}
.announcement-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.announcement-inner span i { color: #efe3d1; margin-right: 6px; }
.announcement-inner a {
  color: #fff4e5;
  border-bottom: 1px solid rgba(255, 244, 229, .45);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 238, 229, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 10px 28px rgba(63, 41, 37, 0.12);
}
.header-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand.has-image {
  min-width: auto;
  gap: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  clip-path: polygon(21% 0, 79% 0, 100% 22%, 100% 78%, 79% 100%, 21% 100%, 0 78%, 0 22%);
  display: grid;
  place-items: center;
  background: var(--primary);
  border: 2px solid #ded5c5;
  color: #f5ecdc;
  font-weight: 800;
  font-size: 18px;
}
.brand-logo-img {
  width: auto;
  height: 68px;
  max-width: min(420px, 44vw);
  object-fit: contain;
  display: block;
}
.brand-text strong {
  font-family: 'Sora', sans-serif;
  display: block;
  font-size: 18px;
  line-height: 1.05;
}
.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-item-wrap {
  position: relative;
}
.desktop-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #3f312c;
}
.desktop-nav .nav-link i {
  font-size: 10px;
}
.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.is-active,
.nav-item-wrap:hover .nav-link {
  background: #eadbcf;
  color: var(--primary-dark);
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(107, 34, 31, .12);
  border-radius: 8px;
  background: rgba(255, 252, 248, .98);
  box-shadow: 0 18px 48px rgba(58, 37, 27, .14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: .18s ease;
  z-index: 80;
}
.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav-item-wrap:hover .nav-submenu,
.nav-item-wrap:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-submenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 11px;
  border-radius: 6px;
  color: #332722;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}
.nav-submenu a:hover {
  background: #f2e5da;
  color: var(--primary-dark);
}
.nav-submenu a.is-featured::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  flex: 0 0 auto;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-select {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 9px 30px 9px 12px;
  font-size: 12px;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 16px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  color: #f7efe2;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(107, 34, 31, .3); }
.btn-soft {
  background: var(--surface);
  border: 1px solid var(--border);
  color: #403732;
}
.btn-soft:hover { border-color: #c0a99a; background: #f1e6dc; }
.btn-search {
  gap: 7px;
  min-width: 82px;
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(251, 240, 225, .6);
  color: #fff4e5;
}
.btn-outline:hover { background: rgba(253, 241, 225, .17); }

.mobile-toggle {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
  z-index: 45;
}
.mobile-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(86vw, 320px);
  height: 100vh;
  background: #f7efe7;
  z-index: 46;
  transition: .25s ease;
  padding: 18px;
  overflow-y: auto;
  box-shadow: -18px 0 32px rgba(0, 0, 0, .2);
}
.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mobile-panel-head button {
  border: 1px solid var(--border);
  background: var(--surface-soft);
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.mobile-nav { display: grid; gap: 8px; }
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 10px;
  border-radius: 10px;
  font-weight: 600;
  background: #f3e7dc;
}
.mobile-nav a.is-active { background: #ead9cc; color: var(--primary-dark); }
.mobile-nav a.mobile-sub-link {
  min-height: 36px;
  margin-left: 14px;
  padding: 8px 10px;
  background: transparent;
  color: #594842;
  font-size: 14px;
  font-weight: 650;
}
.mobile-nav a.mobile-sub-link.is-featured {
  color: var(--primary-dark);
}
.mobile-nav a.mobile-sub-link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: #d8c3b4;
  flex: 0 0 auto;
}
.mobile-nav a.mobile-sub-link.is-featured::before {
  background: var(--primary);
}
body.menu-open { overflow: hidden; }
body.menu-open .mobile-overlay { opacity: 1; visibility: visible; }
body.menu-open .mobile-panel { right: 0; }

main { padding-bottom: 70px; }
.section {
  padding: 68px 0;
}
.section-head {
  margin-bottom: 22px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary-dark);
  background: var(--secondary-soft);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #dcc6bb;
}
.section h2,
.title {
  margin-top: 10px;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.15;
}
.section h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: .2px;
}
.title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}
.section p.lead {
  margin-top: 8px;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.hero {
  padding: 0 0 30px;
}
.hero .container {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hero-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  width: 100vw;
  min-height: 700px;
  background: #2f2320;
  box-shadow: none;
  border: 1px solid rgba(236, 222, 201, .26);
  border-left: 0;
  border-right: 0;
}
.hero-slider {
  isolation: isolate;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .65s ease;
  z-index: 1;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: var(--hero-image, url('/images/luamia/hero.jpg')) center/cover no-repeat;
  transform: scale(1.05);
}
.hero-slide.is-active .hero-media {
  animation: heroSlideMotion 5.2s ease both;
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 700px;
  width: min(var(--container-wide), calc(100% - 80px));
  margin: 0 auto;
  padding: 72px 0 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
}
.hero-slide .hero-grid {
  opacity: 0;
  transform: translateY(22px);
  transition: transform .7s ease, opacity .7s ease;
}
.hero-slide.is-active .hero-grid {
  opacity: 1;
  transform: translateY(0);
}
.hero-content {
  color: #fff;
  max-width: 760px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .72), 0 1px 3px rgba(0, 0, 0, .9);
  background: rgba(0, 0, 0, .42);
  border-radius: 14px;
  padding: 22px 24px;
  backdrop-filter: blur(1.5px);
}
.hero-content .eyebrow {
  background: rgba(247, 236, 221, .2);
  color: #f7ebdc;
  border: 1px solid rgba(247, 236, 221, .34);
  text-shadow: none;
}
.hero-content h1 {
  margin-top: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.06;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .82), 0 1px 4px rgba(0, 0, 0, .95);
}
.hero-content p {
  margin-top: 0;
  font-size: 17px;
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .72), 0 1px 3px rgba(0, 0, 0, .9);
}
.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero-metrics {
  margin-top: 16px;
  display: grid;
  gap: 7px;
}
.hero-metrics p {
  margin: 0;
  font-size: 14px;
  color: rgba(249, 239, 227, .92);
}
.hero-metrics strong {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  margin-right: 8px;
  color: #fff;
}
.hero-slider-controls {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(247, 235, 220, .52);
  background: rgba(247, 235, 220, .2);
  transition: .2s ease;
}
.hero-dot.is-active {
  width: 34px;
  background: #f7ead8;
  border-color: #f7ead8;
}
.hero-nav {
  position: absolute;
  top: 50%;
  width: 66px;
  height: 66px;
  border-radius: 16px;
  border: 1px solid rgba(247, 235, 220, .48);
  background: rgba(90, 52, 48, .34);
  color: #f8ebd8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: .2s ease;
}
.hero-nav-prev {
  left: 24px;
}
.hero-nav-next {
  right: 24px;
}
.hero-nav:hover {
  background: rgba(122, 66, 60, .56);
  border-color: rgba(247, 235, 220, .8);
  transform: translateY(-50%) scale(1.03);
}
@keyframes heroSlideMotion {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.world-card {
  position: relative;
  background: linear-gradient(165deg, #fffdfa, #f8edec 72%);
  border: 1px solid rgba(138, 46, 42, .24);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(99, 37, 34, .14);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.world-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 245, 232, .32);
  pointer-events: none;
  z-index: 3;
}
.world-card:hover {
  transform: translateY(-6px);
  border-color: rgba(138, 46, 42, .46);
  box-shadow: 0 24px 46px rgba(99, 37, 34, .22);
}
.world-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: #d7c6b8 center/cover no-repeat;
  overflow: hidden;
  transition: transform .35s ease;
}
.world-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 20, 18, .08) 28%, rgba(78, 45, 40, .55) 100%);
}
.world-card:hover .world-thumb {
  transform: scale(1.02);
}
.world-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(41, 26, 23, .72);
  border: 1px solid rgba(245, 228, 205, .34);
  color: #f7ebdc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 6px 10px;
  border-radius: 999px;
}
.world-body { padding: 16px; }
.world-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 8px;
  color: #352622;
}
.world-body p {
  color: #705e54;
  font-size: 14px;
  line-height: 1.65;
}
.world-meta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(138, 46, 42, .12);
  border: 1px solid rgba(138, 46, 42, .28);
  border-radius: 999px;
  padding: 6px 10px;
}

.season-section {
  padding-top: 52px;
}
.season-shell {
  position: relative;
  border-radius: 18px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(222, 190, 135, .34);
  box-shadow: 0 18px 34px rgba(28, 19, 14, .18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #2a211d 0%, #3a2923 48%, #1f1916 100%);
}
.season-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(212, 174, 106, .16), transparent 32%, rgba(255, 244, 224, .08));
  pointer-events: none;
}
.season-shell::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 218, 174, .65), transparent);
  pointer-events: none;
}
.season-shell > * {
  position: relative;
  z-index: 1;
}
.season-shell-head {
  margin-bottom: 12px;
  padding: 2px 2px 10px;
  border-bottom: 1px solid rgba(222, 190, 135, .26);
}
.season-shell-head h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #f7e7c8;
}
.season-carousel {
  --season-gap: 14px;
  --season-visible: 4;
  position: relative;
}
.season-viewport {
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.season-viewport::-webkit-scrollbar {
  display: none;
}
.season-track {
  display: flex;
  gap: var(--season-gap);
  align-items: stretch;
}
.season-card {
  flex: 0 0 calc((100% - ((var(--season-visible) - 1) * var(--season-gap))) / var(--season-visible));
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  contain: layout paint;
  border: 1px solid rgba(224, 194, 145, .42);
  box-shadow: 0 12px 26px rgba(16, 11, 9, .18);
  background: #fbf4e8;
  text-decoration: none;
}
.season-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 248, 232, .18);
  background: none;
  pointer-events: none;
}
.season-card-image {
  flex: 1 1 auto;
  min-height: 255px;
  background: #3a2a27 center/cover no-repeat;
}
.season-copy {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 1;
  color: #261f1b;
  background:
    linear-gradient(180deg, #fffaf1 0%, #f6ead9 100%);
  border: 0;
  border-top: 1px solid rgba(214, 177, 116, .48);
  border-radius: 0;
  padding: 15px 16px 16px;
  box-shadow: none;
}
.season-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.12;
  margin-bottom: 7px;
  color: #241b17;
  font-weight: 700;
}
.season-card p {
  font-size: 13.5px;
  color: #6a5849;
  line-height: 1.55;
  margin: 0;
}
.season-controls {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.season-nav {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(226, 195, 143, .40);
  background: rgba(247, 231, 200, .96);
  color: #2a211d;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.season-nav:hover {
  transform: translateY(-1px);
  background: #fff3d7;
}

.mekan-section {
  padding-top: 18px;
}
.mekan-shell {
  position: relative;
  border-radius: 26px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(138, 46, 42, .44);
  box-shadow: 0 22px 36px rgba(107, 34, 31, .28);
  background:
    radial-gradient(440px 220px at 6% -8%, rgba(138, 46, 42, .26), transparent 70%),
    radial-gradient(360px 200px at 100% 118%, rgba(107, 34, 31, .16), transparent 70%),
    linear-gradient(180deg, #973833 0%, var(--primary) 50%, var(--primary-dark) 100%);
}
.mekan-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 237, 217, .07) 0%, rgba(79, 24, 22, .40) 100%);
  pointer-events: none;
}
.mekan-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(138, 46, 42, .10) 0 1px, rgba(138, 46, 42, 0) 1px 22px);
  pointer-events: none;
}
.mekan-shell > * {
  position: relative;
  z-index: 1;
}
.mekan-shell-head {
  margin-bottom: 14px;
  padding: 2px 2px 8px;
  border-bottom: 1px solid rgba(255, 230, 224, .26);
}
.mekan-shell-head h2 {
  color: #f7e9d6;
  margin-top: 8px;
}
.mekan-shell-head p.lead {
  margin-top: 6px;
  max-width: 560px;
  color: rgba(250, 236, 218, .84);
  font-size: 14px;
}
.mekan-shell .eyebrow {
  background: rgba(247, 231, 213, .14);
  border-color: rgba(255, 232, 206, .28);
  color: #ffe9cc;
}
.mekan-carousel {
  --mekan-gap: 14px;
  --mekan-visible: 4;
  position: relative;
}
.mekan-viewport {
  overflow: hidden;
}
.mekan-track {
  display: flex;
  gap: var(--mekan-gap);
  align-items: stretch;
  will-change: transform;
}
.mekan-shot {
  flex: 0 0 calc((100% - ((var(--mekan-visible) - 1) * var(--mekan-gap))) / var(--mekan-visible));
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(255, 234, 230, .34);
  background: #3a2a27 center/cover no-repeat;
  box-shadow: 0 14px 30px rgba(92, 33, 31, .24);
}
.mekan-shot::before {
  content: none;
}
.mekan-shot span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  color: #f5ebdc;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  display: inline-flex;
  max-width: calc(100% - 24px);
  background: rgba(24, 16, 14, .56);
  border: 1px solid rgba(255, 233, 208, .26);
  border-radius: 10px;
  padding: 7px 10px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .32);
  backdrop-filter: blur(1.5px);
}
.mekan-controls {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.mekan-nav {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(138, 46, 42, .32);
  background: rgba(255, 244, 242, .94);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.mekan-nav:hover {
  transform: translateY(-1px);
  background: #fff1ef;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.branch-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}
.branch-card .thumb {
  aspect-ratio: 16/10;
  background: #d2cabf center/cover no-repeat;
}
.branch-card .body {
  padding: 14px;
}
.branch-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  margin-bottom: 3px;
}
.branch-card p { color: var(--muted); font-size: 13px; }
.branch-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.branch-tags span {
  font-size: 11px;
  background: rgba(138, 46, 42, .12);
  border: 1px solid rgba(138, 46, 42, .28);
  border-radius: 999px;
  padding: 5px 9px;
}

.cta-band {
  margin-top: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(128deg, #5f1e1b, #8a2e2a 52%, #4a1715);
  border: 1px solid rgba(255, 225, 220, .18);
  box-shadow: 0 22px 46px rgba(90, 28, 26, .42);
  color: #f7ecdc;
  padding: clamp(26px, 5vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(247, 236, 220, .08) 0 2px,
      transparent 2px 20px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(247, 236, 220, .06) 0 1px,
      transparent 1px 18px
    );
  opacity: .42;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(360px 180px at 8% 12%, rgba(255, 255, 255, .12), transparent 72%),
    radial-gradient(420px 220px at 88% 90%, rgba(138, 46, 42, .33), transparent 76%);
  pointer-events: none;
}
.cta-band > * {
  position: relative;
  z-index: 1;
}
.cta-band h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.18;
  margin-bottom: 8px;
}
.cta-band p { max-width: 650px; color: rgba(247, 236, 220, .9); }

.page-hero {
  padding: 40px 0 24px;
}
.page-hero .container {
  width: min(var(--container), calc(100% - 32px));
}
.page-hero-box {
  border-radius: 26px;
  min-height: 330px;
  padding: clamp(24px, 5vw, 44px);
  background: var(--hero-bg, url('/images/luamia/hero.jpg')) center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: end;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .72), 0 1px 3px rgba(0, 0, 0, .9);
}
.page-hero-box > div {
  max-width: 780px;
  background: rgba(0, 0, 0, .42);
  border-radius: 14px;
  padding: 20px 22px;
  backdrop-filter: blur(1.5px);
}
.page-hero-box .eyebrow,
.page-hero-box .eyebrow i {
  text-shadow: none;
}
.page-hero-box .title {
  text-shadow: 0 4px 18px rgba(0, 0, 0, .82), 0 1px 4px rgba(0, 0, 0, .95);
}
.page-hero-box p { max-width: 700px; color: #fff; margin-top: 10px; text-shadow: 0 3px 14px rgba(0, 0, 0, .72), 0 1px 3px rgba(0, 0, 0, .9); }
.page-hero-box-compact {
  min-height: 224px;
  padding: clamp(18px, 3.2vw, 30px);
  border-radius: 20px;
}

.simple-grid { display: grid; gap: 16px; }
.simple-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.simple-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.simple-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.panel h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  margin-bottom: 7px;
}
.panel p, .panel li { color: var(--muted); font-size: 14px; }
.panel ul { padding-left: 18px; }

.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.menu-category-card {
  position: relative;
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(138, 46, 42, .28);
  background: #6b221f center/cover no-repeat;
  box-shadow: 0 16px 28px rgba(90, 28, 26, .2);
  transition: transform .24s ease, box-shadow .24s ease;
}
.menu-category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 22, 20, .04) 30%, rgba(30, 22, 20, .62) 100%);
}
.menu-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 34px rgba(90, 28, 26, .26);
}
.menu-category-body {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  border-radius: 12px;
  background: rgba(30, 22, 20, .34);
  border: 1px solid rgba(255, 235, 215, .28);
  backdrop-filter: blur(2px);
  padding: 10px 12px;
  color: #fff;
}
.menu-category-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  margin-bottom: 5px;
}
.menu-category-body p {
  color: rgba(255, 245, 232, .92);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.menu-taxonomy {
  display: grid;
  gap: 22px;
}
.menu-group-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(138, 46, 42, .16);
  border-radius: 8px;
  background: #fffaf5;
}
.menu-group-tab {
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #49342e;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 18px;
  text-transform: uppercase;
}
.menu-group-tab.is-active {
  background: #3d211b;
  color: #fff7ec;
}
.menu-taxonomy-group {
  border: 1px solid rgba(138, 46, 42, .18);
  border-radius: 8px;
  background: #fffaf5;
  padding: 20px;
}
.menu-taxonomy-group h2 {
  margin: 0 0 14px;
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  color: var(--primary-dark);
  text-transform: uppercase;
}
.menu-taxonomy-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
.menu-filter-card {
  border: 1px solid rgba(138, 46, 42, .24);
  background: #fff;
  color: #302420;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 12px 28px rgba(59, 36, 28, .08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.menu-filter-card:hover,
.menu-filter-card.is-active {
  border-color: var(--primary-dark);
  box-shadow: 0 18px 38px rgba(59, 36, 28, .14);
  transform: translateY(-2px);
}
.menu-filter-card.is-active .menu-filter-card-copy {
  background: #3d211b;
  color: #fff7ec;
}
.menu-filter-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  transition: transform .28s ease, filter .28s ease;
}
.menu-filter-card:hover .menu-filter-card-image {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}
.menu-filter-card-copy {
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 14px;
  transition: background .18s ease, color .18s ease;
}
.menu-filter-card-copy small {
  color: var(--secondary);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.menu-filter-card.is-active .menu-filter-card-copy small {
  color: #f6c9a5;
}
.menu-filter-card-copy strong {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  line-height: 1.15;
}

.menu-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 15px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.menu-item .world-thumb {
  aspect-ratio: 4 / 3;
  transition: transform .28s ease, filter .28s ease;
}
.menu-item .world-thumb::before {
  display: none;
}
.menu-item:hover .world-thumb {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.025);
}
.menu-item h3 { font-size: 18px; font-family: 'Sora', sans-serif; margin-bottom: 4px; }
.menu-item .meta { font-size: 13px; color: var(--secondary); font-weight: 700; margin-bottom: 8px; }
.menu-item p { color: var(--muted); font-size: 13px; line-height: 1.55; }
.menu-products-stack {
  display: grid;
  gap: 24px;
}
.menu-product-category {
  display: grid;
  gap: 24px;
}
.menu-product-category:not(.is-active) {
  display: none;
}
.menu-product-subgroup {
  display: grid;
  gap: 16px;
}
.menu-subgroup-title {
  display: block;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(61, 33, 27, .28);
  border-left: 5px solid #b8844f;
  border-radius: 8px;
  padding: 15px 18px;
  background:
    linear-gradient(135deg, rgba(255, 246, 229, .10), rgba(255, 255, 255, 0) 42%),
    linear-gradient(100deg, #2f201c 0%, #4d2a22 58%, #7a4a30 100%);
  box-shadow: 0 14px 30px rgba(59, 36, 28, .16);
}
.menu-subgroup-title strong {
  color: #fff8ed;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}
.menu-search-empty {
  margin-top: 12px;
  border: 1px dashed rgba(138, 46, 42, .3);
  border-radius: 12px;
  padding: 12px;
  color: #6c4b42;
  background: #f8eee9;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #fcf8f3;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.notice {
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 13px;
}
.notice.success { background: #e6f6e8; color: #225f2a; border: 1px solid #c8e7cd; }
.notice.error { background: #ffeceb; color: #8a2222; border: 1px solid #f6cccc; }

.branch-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.branch-map-list {
  display: grid;
  gap: 10px;
}
.branch-map-item {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 16px;
  padding: 14px;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background-color .24s ease;
}
.branch-map-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(48, 32, 28, .12);
}
.branch-map-item.is-active {
  border-color: rgba(138, 46, 42, .6);
  background: #f8eceb;
  box-shadow: 0 16px 26px rgba(64, 36, 32, .16);
}
.branch-map-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 6px;
}
.branch-map-top strong {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  line-height: 1.2;
}
.branch-map-top span {
  font-size: 12px;
  font-weight: 700;
  color: #7d5a4f;
}
.branch-map-item p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 7px;
}
.branch-map-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #62443c;
  font-weight: 700;
}
.branch-map-meta i {
  margin-right: 5px;
}
.branch-map-stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(138, 46, 42, .28);
  background: #f0dfde;
  box-shadow: 0 22px 34px rgba(44, 28, 25, .17);
}
.branch-map-glow {
  position: absolute;
  top: -72px;
  right: -62px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 46, 42, .24) 0%, rgba(138, 46, 42, 0) 68%);
  animation: mapPulse 4.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.branch-map-frame {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
  transition: opacity .28s ease, filter .28s ease;
}
.branch-map-stage.is-loading .branch-map-frame {
  opacity: .58;
  filter: saturate(.72);
}
.btn-map-route {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  box-shadow: 0 12px 20px rgba(64, 36, 32, .3);
}
@keyframes mapPulse {
  0% { transform: scale(.92); opacity: .65; }
  50% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(.92); opacity: .65; }
}

.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.account-box {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 18px;
}
.account-box h3 {
  font-family: 'Sora', sans-serif;
  margin-bottom: 12px;
}

.site-footer {
  margin-top: 30px;
  background: #3d2c29;
  color: #f4ebde;
}
.footer-grid {
  padding: 46px 0 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 22px;
}
.site-footer h3,
.site-footer h4 {
  font-family: 'Sora', sans-serif;
  margin-bottom: 10px;
}
.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(246,239,230,.78);
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
}
.site-footer a:hover { color: #fff; }
.social-links { display: flex; gap: 8px; margin-top: 12px; }
.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  display: grid;
  place-items: center;
}
.newsletter-inline {
  display: flex;
  gap: 8px;
}
.newsletter-inline input {
  flex: 1;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 10px;
}
.newsletter-inline button {
  border: none;
  border-radius: 10px;
  background: var(--primary);
  color: #fff6e8;
  font-weight: 700;
  padding: 0 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.13);
}
.footer-bottom-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: rgba(246,239,230,.62);
}
.footer-mini-links { display: inline-flex; gap: 14px; }

.back-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(107, 34, 31, .34);
  display: none;
  place-items: center;
  z-index: 60;
}
.back-top.show { display: grid; }

@media (max-width: 1080px) {
  .header-inner { min-height: 86px; }
  .desktop-nav { display: none; }
  .brand-logo-img { height: 60px; }
  .mobile-toggle { display: inline-flex; }
  .header-right .btn-soft,
  .header-right .btn-primary { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: end;
    width: calc(100% - 40px);
    min-height: 560px;
    padding: 42px 0;
  }
  .hero-wrap { min-height: 560px; }
  .hero-slider-controls {
    inset: 0;
  }
  .hero-nav {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
  .hero-nav-prev { left: 14px; }
  .hero-nav-next { right: 14px; }
  .hero-dots {
    bottom: 16px;
  }
  .cards-3,
  .branch-grid { grid-template-columns: 1fr 1fr; }
  .mekan-shell {
    padding: 16px;
    border-radius: 22px;
  }
  .season-shell {
    padding: 16px;
    border-radius: 22px;
  }
  .menu-category-grid { grid-template-columns: 1fr 1fr; }
  .branch-map-layout { grid-template-columns: 1fr; }
  .branch-map-stage,
  .branch-map-frame { min-height: 380px; }
  .season-carousel { --season-visible: 2; }
  .mekan-carousel { --mekan-visible: 2; }
  .mekan-shot {
    min-height: 220px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .announcement-inner { min-height: 48px; font-size: 12px; }
  .header-inner { min-height: 76px; gap: 10px; }
  .brand-logo-img {
    height: 50px;
    max-width: 68vw;
  }
  .mobile-toggle { width: 42px; height: 42px; }
  .lang-select { display: none; }
  .hero-wrap,
  .hero-grid { min-height: 480px; }
  .hero-media {
    background-image: var(--hero-image-mobile, var(--hero-image, url('/images/luamia/hero.jpg')));
  }
  .page-hero-box {
    background-image: var(--hero-bg-mobile, var(--hero-bg, url('/images/luamia/hero.jpg')));
  }
  .hero-grid {
    width: calc(100% - 26px);
    padding: 28px 0;
  }
  .hero-content p { font-size: 15px; }
  .hero-content,
  .page-hero-box > div {
    padding: 16px;
    border-radius: 12px;
  }
  .hero-slider-controls {
    inset: 0;
  }
  .hero-nav { display: none; }
  .hero-dots { bottom: 10px; }
  .hero-dot {
    width: 10px;
    height: 10px;
  }
  .hero-dot.is-active { width: 26px; }
  .season-shell {
    padding: 12px;
    border-radius: 18px;
  }
  .mekan-shell {
    padding: 12px;
    border-radius: 18px;
  }
  .mekan-shell-head h2 { font-size: 24px; }
  .mekan-shell-head p.lead { font-size: 13px; }
  .season-shell-head h2 {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .season-carousel { --season-visible: 1; }
  .season-card { min-height: 340px; }
  .season-card-image { min-height: 230px; }
  .season-copy {
    padding: 14px;
  }
  .season-card h3 { font-size: 18px; }
  .season-card p { font-size: 13px; }
  .section { padding: 52px 0; }
  .branch-map-item { padding: 12px; }
  .branch-map-stage,
  .branch-map-frame { min-height: 310px; }
  .btn-map-route {
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
  }
  .page-hero-box-compact { min-height: 188px; }
  .cards-3,
  .menu-category-grid,
  .branch-grid,
  .simple-grid.cols-2,
  .simple-grid.cols-3,
  .simple-grid.cols-4,
  .login-grid,
  .form-row,
  .footer-grid { grid-template-columns: 1fr; }
  .mekan-carousel { --mekan-visible: 1; }
  .mekan-shot {
    min-height: 200px;
  }
  .footer-bottom-inner { flex-direction: column; justify-content: center; text-align: center; padding: 12px 0; }
}
