:root {
  --bg: #fafaf9;
  --bg-soft: #fafaf9;
  --text: #1c1917;
  --muted: #57534e;
  --muted-soft: #a8a29e;
  --line: #e7e5e4;
  --line-dark: #44403c;
  --accent: #d97706;
  --accent-dark: #b45309;
  --accent-soft: #fffbeb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.08);
  --radius-2: 1rem;
  --radius-3: 1.5rem;
  --container: 80rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

button {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(217, 119, 6, 0.55);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 999;
  background: var(--white);
  color: #000;
  padding: 0.6rem 0.9rem;
  border-radius: 0.6rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
  background: transparent;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}

.header-row {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.22s ease;
}

.site-header:not(.is-scrolled):not(.is-menu-open) .brand,
.site-header:not(.is-scrolled):not(.is-menu-open) .menu-toggle {
  color: var(--white);
}

.site-header.is-scrolled .brand,
.site-header.is-menu-open .brand,
.site-header.is-scrolled .menu-toggle,
.site-header.is-menu-open .menu-toggle {
  color: #111827;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.main-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.main-links a {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
}

.site-header:not(.is-scrolled):not(.is-menu-open) .main-links a {
  color: #ffffff;
}

.site-header.is-scrolled .main-links a,
.site-header.is-menu-open .main-links a {
  color: #374151;
}

.site-header:not(.is-scrolled):not(.is-menu-open) .main-links a.is-active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.site-header.is-scrolled .main-links a.is-active,
.site-header.is-menu-open .main-links a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.main-links a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.62rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.btn-mini {
  padding: 0.58rem 1.05rem;
  font-size: 0.82rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid;
}

.site-header:not(.is-scrolled):not(.is-menu-open) .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.site-header:not(.is-scrolled):not(.is-menu-open) .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .btn-outline,
.site-header.is-menu-open .btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}

.site-header.is-scrolled .btn-outline:hover,
.site-header.is-menu-open .btn-outline:hover {
  background: #fffbeb;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle i {
  font-size: 1.65rem;
}

.mobile-nav {
  border-top: 1px solid #e5e7eb;
  padding: 1rem 0 1.25rem;
  background: var(--white);
}

.mobile-links {
  display: grid;
  gap: 0.25rem;
}

.mobile-links a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 0.5rem;
  color: #374151;
  font-size: 0.92rem;
  font-weight: 500;
}

.mobile-links a.is-active {
  color: var(--accent);
  background: #fffbeb;
}

.mobile-links a:hover {
  background: #f9fafb;
}

.mobile-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.mobile-actions .btn {
  width: 100%;
}

.mobile-actions .btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: clamp(7rem, 12vh, 9rem) 0 clamp(3rem, 7vh, 4rem);
  background: #111;
}

.hero.short {
  min-height: clamp(22rem, 52svh, 28rem);
  padding: clamp(6rem, 10vh, 8rem) 0 2.1rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 46%;
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1.08) contrast(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 50% 24%, rgba(217, 119, 6, 0.16), rgba(0, 0, 0, 0.45) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: min(62rem, calc(100% - 2rem));
  padding: 0 1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.6rem;
  z-index: 1;
  animation: hero-bounce 1.8s ease-in-out infinite;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.9rem);
  line-height: 1.04;
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.33);
}

.script-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(2.2rem, 6.2vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hero-sub {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.87);
  max-width: 40rem;
  margin: 0 auto;
}

.hero-sub-tight {
  margin-bottom: 0;
}

.hero-halal {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 auto 1.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(2px);
  color: #fff;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
}

.hero-actions .btn {
  min-width: 12rem;
  padding: 0.95rem 1.85rem;
  font-size: 0.98rem;
}

.row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 10px;
}

.btn-light {
  background: #fffbeb;
  color: #1c1917;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn-light:hover {
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.btn-hero-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

@keyframes hero-bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -8px);
  }
}

.section {
  padding: 6rem 0;
}

.section.soft {
  background: var(--bg-soft);
}

.section.dark {
  background: #1c1917;
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4.8vw, 3rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.ramadan-card {
  border: 1px solid #fcd34d;
  background: #fffbeb;
  border-radius: var(--radius-3);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.ramadan-price {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.ramadan-price strong {
  color: var(--accent-dark);
}

.ramadan-list {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.section-header-compact {
  margin-bottom: 2.5rem;
}

.section.dark .section-header h2 {
  color: var(--white);
}

.section.dark .section-header p {
  color: #d6d3d1;
}

.card-grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.food-card,
.stat-card,
.quote-card,
.tile,
.panel,
.team-card,
.contact-card {
  background: var(--white);
  border-radius: var(--radius-3);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.food-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.food-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.food-image {
  height: 20rem;
  width: 100%;
  object-fit: cover;
}

.food-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.food-title-row,
.menu-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.food-title {
  font-size: 1.5rem;
  color: var(--text);
}

.price {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  white-space: nowrap;
}

.food-desc {
  margin-top: 0.7rem;
  color: var(--muted);
}

.food-cta-wrap {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.u-mt-1 {
  margin-top: 1rem;
}

.u-mt-2 {
  margin-top: 2rem;
}

.simple-menu-grid {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 3rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.simple-item {
  background: var(--bg-soft);
  border-radius: var(--radius-2);
  padding: 1rem;
}

.simple-item h3 {
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.simple-item p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.88rem;
}

.simple-menu-rich .simple-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.simple-menu-rich .simple-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: #f0efed;
}

.simple-thumb {
  width: 5rem;
  height: 5rem;
  border-radius: 0.9rem;
  object-fit: cover;
  flex-shrink: 0;
}

.center {
  text-align: center;
}

.btn-dark {
  background: #1c1917;
  color: var(--white);
}

.btn-dark:hover {
  background: var(--accent-dark);
}

.visit-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: center;
}

.visit-grid-top {
  align-items: start;
}

.visit-title {
  font-size: clamp(2rem, 4.8vw, 3rem);
  margin-bottom: 1.5rem;
}

.visit-main-title {
  font-size: clamp(2rem, 4.8vw, 3rem);
  margin-bottom: 2.5rem;
}

.visit-info-block {
  margin-bottom: 2rem;
}

.visit-info-title {
  font-size: 1.25rem;
}

.visit-hours-wrap {
  width: 100%;
}

.visit-hours-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.info-stack {
  display: grid;
  gap: 1.5rem;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-row i {
  color: var(--accent);
  font-size: 1.7rem;
  margin-top: 0.2rem;
}

.info-row h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.info-row p,
.info-row a {
  margin: 0;
  color: var(--muted);
}

.hours-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 0.35rem;
}

.hours-table th,
.hours-table td {
  padding: 0.45rem 0.35rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  color: var(--muted);
}

.hours-table th {
  font-weight: 600;
  color: #44403c;
}

.map-box {
  min-height: 24rem;
  border-radius: var(--radius-3);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-box.compact {
  min-height: 18rem;
  margin-top: 1.5rem;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
}

.map-box.compact iframe {
  min-height: 18rem;
}

.quote-card {
  padding: 2rem;
  background: var(--bg-soft);
  box-shadow: none;
}

.quote-stars {
  color: #f59e0b;
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.quote-icon {
  color: var(--accent);
  font-size: 3rem;
  margin-bottom: 0.6rem;
}

.quote-card p {
  margin: 0 0 1.2rem;
  color: #44403c;
}

.quote-author {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.quote-role {
  font-size: 0.88rem;
  color: var(--muted-soft);
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  height: 20rem;
  border-radius: var(--radius-2);
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background-color 0.25s ease;
}

.gallery-zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #1c1917;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-zoom i {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

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

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.28);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.cta-sub {
  color: #d6d3d1;
  font-size: 1.25rem;
  margin: 0 0 3rem;
}

.menu-tabs-wrap {
  position: sticky;
  top: 5rem;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  overflow-x: auto;
  white-space: nowrap;
  padding: 1rem 0;
}

.menu-tabs::-webkit-scrollbar {
  height: 0;
}

.menu-tabs button {
  border: 0;
  background: transparent;
  color: #44403c;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.52rem 0.92rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.menu-tabs button:hover {
  color: var(--accent);
  background: #fffbeb;
}

.menu-tabs button.is-active {
  color: var(--white);
  background: var(--accent);
}

.menu-content {
  width: min(64rem, 100% - 3rem);
  margin-inline: auto;
  padding: 4rem 0;
}

.menu-top-notice {
  margin-top: 0;
}

.menu-section {
  scroll-margin-top: 10rem;
}

.menu-section + .menu-section {
  margin-top: 6rem;
}

.menu-section h2 {
  text-align: center;
  font-size: clamp(2rem, 4.6vw, 2.6rem);
  margin-bottom: 3rem;
}

.menu-list {
  display: grid;
  gap: 1rem;
}

.menu-entry {
  border: 1px solid #ece7df;
  border-radius: 1rem;
  padding: 1rem;
  background: #f8f7f5;
}

.menu-entry-media {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.menu-thumb {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 0.8rem;
  object-fit: cover;
  flex-shrink: 0;
}

.menu-entry h3 {
  font-size: 1.3rem;
}

.menu-entry p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.availability-note {
  margin-top: 0.28rem;
  font-size: 0.82rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.menu-allergen {
  margin-top: 0.42rem;
  font-size: 0.83rem;
  color: var(--muted-soft);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.notice {
  margin-top: 4rem;
  padding: 2rem;
  border: 1px solid #fde68a;
  background: #fffbeb;
  border-radius: var(--radius-2);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.notice i {
  color: #b45309;
  font-size: 1.6rem;
  margin-top: 0.1rem;
}

.notice h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.coming-soon-panel {
  margin-top: 4rem;
  border-radius: var(--radius-3);
  background: #1c1917;
  color: var(--white);
  text-align: center;
  padding: 3rem 1.5rem;
}

.coming-soon-panel h3 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.coming-soon-panel p {
  color: #d6d3d1;
  margin: 0 0 2rem;
}

.story-wrap {
  width: min(56rem, 100% - 3rem);
  margin-inline: auto;
}

.story-accent {
  width: 5rem;
  height: 0.25rem;
  margin: 0 auto 2rem;
  background: var(--accent);
}

.story-text {
  display: grid;
  gap: 1.5rem;
}

.story-text p,
.body-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-chef-title {
  font-size: clamp(2rem, 4.8vw, 3rem);
  margin-bottom: 1rem;
}

.about-chef-name {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1rem;
}

.split {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: center;
}

.photo-frame {
  height: 24rem;
  border-radius: var(--radius-3);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.kpi-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.kpi {
  background: var(--white);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-sm);
  padding: 1.4rem;
}

.kpi-num {
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
}

.kpi-label {
  font-size: 0.88rem;
  color: var(--muted);
}

.value-grid,
.getting-grid,
.team-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.value-card {
  text-align: center;
}

.getting-card {
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.getting-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.value-icon,
.getting-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: #ffedd5;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.value-card h3,
.getting-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.value-card p,
.getting-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.team-photo {
  height: 20rem;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.team-body {
  text-align: center;
  padding: 1.4rem;
}

.team-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.team-role {
  color: var(--accent);
  font-weight: 500;
}

.hours-list {
  display: grid;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}

.hours-row span:first-child {
  font-weight: 500;
  color: #44403c;
}

.hours-row span:last-child {
  color: var(--muted);
}

.info-banner {
  margin: 1.5rem 0;
  padding: 2rem;
  border: 1px solid #fde68a;
  background: #fffbeb;
  border-radius: var(--radius-2);
}

.info-banner .info-row i {
  color: #b45309;
}

.visit-access-note {
  margin-top: 0.8rem !important;
}

.row-start {
  justify-content: flex-start;
  align-items: flex-start;
}

.btn-outline-dark {
  border-color: #1c1917;
  color: #1c1917;
}

.map-tall {
  min-height: 37.5rem;
}

.shell-narrow {
  max-width: 64rem;
}

.getting-title {
  font-size: 2.5rem;
}

.getting-card-pad {
  padding: 2rem;
}

.contact-layout,
.contact-layout-rich {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.contact-panel {
  padding: 2rem;
}

.contact-title {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.contact-intro {
  margin-bottom: 2rem;
}

.contact-submit {
  width: 100%;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

.form-msg {
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid #86efac;
  background: #f0fdf4;
  border-radius: 0.8rem;
  color: #166534;
}

.form-msg h3 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.form-msg p {
  margin: 0;
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field-grid.two {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  color: #44403c;
  font-size: 0.88rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d6d3d1;
  background: #fafaf9;
  border-radius: 0.7rem;
  padding: 0.75rem 0.85rem;
  color: var(--text);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
  outline: none;
}

.counter {
  margin-top: 0.4rem;
  color: var(--muted-soft);
  font-size: 0.75rem;
  text-align: right;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card-list .contact-card {
  display: block;
  text-align: center;
  padding: 1.4rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card-list .contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.85rem;
  margin: 0 auto 0.8rem;
  background: #ffedd5;
  border: 1px solid #fde68a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 1.35rem;
}

.contact-card.whatsapp .contact-icon {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #059669;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.contact-main {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.contact-note {
  margin-top: 0.2rem;
  color: var(--muted-soft);
  font-size: 0.84rem;
}

.social-block {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  margin-top: 1.2rem;
}

.social-title {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-links a {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.75rem;
  background: #f5f5f4;
  color: #44403c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-links.colorful a:nth-child(1) {
  color: #fff;
  background: #1c1917;
}

.social-links.colorful a:nth-child(2) {
  color: #fff;
  background: #1c1917;
}

.social-links.colorful a:nth-child(3) {
  color: #fff;
  background: #1c1917;
}

.social-links.colorful a:nth-child(4) {
  color: #fff;
  background: #1c1917;
}

.site-footer {
  background: #1c1917;
  color: var(--white);
}

.footer-top {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.footer-title {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-list {
  display: grid;
  gap: 0.8rem;
}

.footer-list a,
.footer-list p {
  margin: 0;
  color: #a8a29e;
  font-size: 0.9rem;
}

.footer-list a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: #a8a29e;
  font-size: 1.5rem;
}

.footer-social a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #292524;
  padding: 2rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand h2 {
  font-size: 2rem;
  color: var(--white);
}

.est {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.est-line {
  width: 5rem;
  height: 0.12rem;
  background: #44403c;
}

.est span {
  color: #78716c;
  font-size: 0.72rem;
}

.footer-copy {
  text-align: center;
}

.footer-copy p,
.footer-copy a {
  margin: 0;
  color: #78716c;
  font-size: 0.75rem;
}

.footer-copy a:hover {
  color: var(--white);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(4px);
  padding: 1rem;
}

.modal[aria-hidden="true"] {
  display: none;
}

.modal-panel {
  width: min(28rem, 100%);
  background: var(--white);
  border-radius: var(--radius-3);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
}

.modal-close i {
  font-size: 1.6rem;
}

.modal-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.2rem;
  border-radius: 999px;
  background: #ffedd5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.8rem;
}

.modal-body {
  text-align: center;
}

.modal-body h2 {
  font-size: 1.9rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.8rem;
  color: #111827;
}

.modal-body p {
  margin: 0 0 1.5rem;
  color: #4b5563;
  line-height: 1.7;
}

.modal-cta {
  display: inline-flex;
  width: auto;
}

.modal-dismiss {
  margin-top: 0.9rem;
  width: 100%;
  border: 0;
  background: transparent;
  color: #4b5563;
  font-weight: 500;
  padding: 0.6rem;
  cursor: pointer;
}

.modal-dismiss:hover {
  color: #111827;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.95);
  padding: 1rem;
}

.lightbox[aria-hidden="true"] {
  display: none;
}

.lightbox-stage {
  width: min(74rem, 100%);
  max-height: calc(100vh - 2rem);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 0.9rem;
  justify-items: center;
}

.lightbox-title {
  margin: 0;
  color: #fff;
  opacity: 0.85;
  font-size: 0.9rem;
}

.lightbox-image {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 0.9rem;
}

:is(.lightbox-close, .lightbox-nav) {
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
}

.lightbox-nav {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

.lightbox-close i,
.lightbox-nav i {
  font-size: 1.6rem;
}

.lightbox-counter {
  color: #fff;
  opacity: 0.9;
  margin: 0;
}

.lightbox-thumbs {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 0.3rem;
}

.lightbox-thumbs button {
  width: 3.15rem;
  height: 3.15rem;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 0;
  background: transparent;
  opacity: 0.7;
  cursor: pointer;
}

.lightbox-thumbs button.is-active {
  border-color: #fff;
  opacity: 1;
}

.lightbox-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 0;
  background: #1c1917;
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top i {
  font-size: 1.35rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

body.modal-open {
  overflow: hidden;
}

@media (min-width: 48rem) {
  .hero {
    padding-top: 8.2rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 6.2vw, 5.15rem);
  }

  .hero-actions {
    flex-direction: row;
    max-width: 40rem;
  }

  .row {
    flex-direction: row;
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .team-grid,
  .value-grid,
  .getting-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .simple-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .simple-menu-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visit-grid,
  .split,
  .contact-layout,
  .contact-layout-rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-bottom-inner {
    flex-direction: row;
  }

  .footer-copy {
    text-align: right;
  }

  .menu-thumb {
    width: 7rem;
    height: 7rem;
  }

  .contact-layout-rich {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}

@media (max-width: 47.99rem) {
  .shell {
    width: calc(100% - 2rem);
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    min-height: 100svh;
    padding-top: 7rem;
    padding-bottom: 3.2rem;
  }

  .hero.short {
    min-height: 22rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .script-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-actions .btn {
    width: min(20rem, 100%);
  }

  .menu-entry-media {
    flex-direction: column;
  }

  .menu-thumb {
    width: 100%;
    height: 11rem;
  }

  .lightbox-nav {
    top: auto;
    bottom: 6.5rem;
  }

  .lightbox-prev {
    left: 0.2rem;
  }

  .lightbox-next {
    right: 0.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
