:root {
  --bg: #07110b;
  --bg-2: #0d1b13;
  --panel: rgba(255, 250, 242, 0.075);
  --panel-strong: rgba(255, 251, 246, 0.12);
  --text: #fffaf2;
  --text-soft: rgba(255, 250, 242, 0.76);
  --gold: #d9b56b;
  --gold-soft: #f0dfb7;
  --green: #2a6b4a;
  --green-deep: #153122;
  --line: rgba(217, 181, 107, 0.22);
  --line-strong: rgba(217, 181, 107, 0.42);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 8%, rgba(217, 181, 107, 0.16), transparent 24%),
    radial-gradient(circle at 100% 18%, rgba(42, 107, 74, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(180deg, #050c08 0%, #0a1510 32%, #08110b 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-lightbox-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: rgba(217, 181, 107, 0.36);
  color: #ffffff;
}

section[id] {
  scroll-margin-top: 120px;
}

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

.section {
  padding: 5.75rem 0;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.55rem, 4.2vw, 4.65rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p {
  color: var(--text-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--gold-soft);
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.glass-panel,
.glass-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
}

.glass-panel {
  border-radius: var(--radius-xl);
}

.glass-soft {
  border-radius: var(--radius-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.92rem 1.45rem;
  border-radius: 999px;
  transition: transform 0.26s ease, background 0.26s ease, border-color 0.26s ease, color 0.26s ease;
  font-weight: 700;
}

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

.btn-primary {
  color: #152317;
  background: linear-gradient(135deg, #cfa758, #f5e6c1);
  box-shadow: 0 14px 34px rgba(217, 181, 107, 0.26);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-strong);
}

.zoomable-trigger,
.zoomable-image {
  cursor: zoom-in;
}

.zoomable-trigger {
  touch-action: manipulation;
}

.zoomable-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #07100b;
  display: grid;
  place-items: center;
  z-index: 3000;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.page-loader span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.14);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.site-ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.45;
}

.orb-gold {
  width: 420px;
  height: 420px;
  background: rgba(217, 181, 107, 0.18);
  top: -120px;
  left: -80px;
}

.orb-green {
  width: 360px;
  height: 360px;
  background: rgba(42, 107, 74, 0.18);
  right: -80px;
  top: 180px;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

.brand-watermark {
  position: absolute;
  inset: 0;
  background: url('../img/logo.png') center 12% / min(720px, 72vw) no-repeat;
  opacity: 0.05;
  transform: rotate(-8deg);
  filter: saturate(0) brightness(1.6);
}

.header {
  position: sticky;
  top: 0;
  z-index: 2000;
  padding: 1rem 0;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 1.1rem 0.85rem 1.25rem;
  background: linear-gradient(135deg, rgba(10, 22, 16, 0.78), rgba(14, 29, 21, 0.76));
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-lockup img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-lockup strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.2;
}

.brand-lockup span {
  display: block;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
}

.nav a {
  color: var(--text-soft);
  position: relative;
  transition: color 0.24s ease;
}

.nav ul a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.24s ease;
}

.nav ul a:hover,
.nav ul a.active {
  color: var(--text);
}

.nav ul a:hover::after,
.nav ul a.active::after {
  transform: scaleX(1);
}

.nav-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.nav-toggler span {
  width: 28px;
  height: 2px;
  background: var(--text);
  border-radius: 20px;
}

.hero {
  padding-top: 2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 1.4rem;
  align-items: stretch;
}

.hero-copy,
.hero-main-card,
.story-card,
.value-card,
.menu-shell,
.testimonials-shell,
.team-card,
.contact-shell,
.feature-platter,
.special-card,
.gallery-card,
.footer-shell {
  overflow: hidden;
}

.hero-copy {
  padding: 1.7rem 1.8rem;
}

.hero-copy h1 {
  max-width: 10ch;
  text-wrap: balance;
}

.eyebrow-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--gold-soft);
  background: rgba(255,255,255,0.045);
}

.hero-intro {
  max-width: 52ch;
  font-size: 1rem;
  margin-top: 0.9rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 42px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.045);
  color: var(--text-soft);
}

.info-chip i,
.contact-card i,
.feature-pill i {
  color: var(--gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.stat-card {
  padding: 1rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: var(--text);
}

.hero-stage {
  position: relative;
  min-height: 650px;
}

.hero-main-card {
  position: absolute;
  inset: 0;
  padding: 1rem;
}

.tilt-card {
  transform: perspective(1200px) rotateY(-4deg) rotateX(1.2deg);
  transform-style: preserve-3d;
}

.hero-main-media {
  height: 72%;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 10px);
}

.media-arch {
  clip-path: ellipse(88% 100% at 50% 0%);
}

.hero-main-media img,
.story-media img,
.feature-platter img,
.special-card img,
.menu-item img,
.team-card img,
.contact-visual img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-copy {
  padding: 1.35rem 0.6rem 0.5rem;
}

.hero-main-copy span,
.gallery-copy span,
.special-card span,
.contact-visual-copy span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--gold-soft);
  margin-bottom: 0.45rem;
}

.hero-main-copy p {
  max-width: 44ch;
  margin-top: 0.55rem;
}

.floating-feature {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem;
  width: min(300px, 72%);
}

.floating-feature img {
  width: 86px;
  height: 86px;
  border-radius: 16px;
  object-fit: cover;
  flex: 0 0 auto;
}

.floating-feature strong {
  display: block;
}

.feature-top {
  right: -0.8rem;
  top: 3rem;
}

.feature-bottom {
  left: -0.6rem;
  bottom: 3.2rem;
}

.brand-ticker {
  margin-top: 1.25rem;
  padding: 0.95rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2.4rem;
  padding-left: 1.2rem;
  animation: marquee 24s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  color: var(--gold-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.ticker-track span::after {
  content: '•';
  color: rgba(255,255,255,0.35);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.about-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 1.2rem;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.story-media {
  min-height: 100%;
}

.story-copy {
  padding: 2rem;
}

.story-copy h3 {
  margin: 0.8rem 0;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.brand-values {
  display: grid;
  gap: 1rem;
}

.value-card {
  padding: 1.6rem;
}

.value-number {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--gold-soft);
  letter-spacing: 0.18em;
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 1.2rem;
}

.gallery-control-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.gallery-filters,
.gallery-nav-buttons,
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.gallery-filter,
.menu-tab-item,
.gallery-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.045);
  color: var(--text-soft);
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.gallery-filter:hover,
.gallery-filter.active,
.menu-tab-item:hover,
.menu-tab-item.active,
.gallery-arrow:hover {
  background: linear-gradient(135deg, rgba(217, 181, 107, 0.96), rgba(240, 223, 183, 0.8));
  color: #162317;
  border-color: transparent;
}

.gallery-viewport {
  position: relative;
}

.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 31vw);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(217, 181, 107, 0.45) transparent;
}

.gallery-rail::-webkit-scrollbar {
  height: 10px;
}

.gallery-rail::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-rail::-webkit-scrollbar-thumb {
  background: rgba(217, 181, 107, 0.32);
  border-radius: 999px;
}

.gallery-card {
  position: relative;
  height: 520px;
  scroll-snap-align: start;
  transition: transform 0.26s ease, opacity 0.26s ease, width 0.26s ease;
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card:hover,
.menu-item:hover,
.special-card:hover,
.team-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.value-card:hover,
.feature-platter:hover {
  transform: translateY(-6px);
}

.gallery-card[data-hidden="true"] {
  display: none;
}

.gallery-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(3, 10, 7, 0.92));
}

.special-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 1rem;
}

.feature-platter {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 560px;
}

.feature-platter-copy {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-platter-copy p {
  margin: 0.8rem 0 1.2rem;
}

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

.special-card {
  min-height: 250px;
  position: relative;
}

.special-card > div {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.95rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(4, 12, 8, 0.9));
}

.menu-shell {
  padding: 1.5rem;
}

.menu-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.1rem;
}

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

.menu-tab-content {
  display: none;
}

.menu-tab-content.active {
  display: block;
}

.menu-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}

.menu-item img {
  height: 228px;
}

.menu-info {
  padding: 1.05rem 1.05rem 0.2rem;
}

.menu-info h3 {
  margin-bottom: 0.35rem;
}

.price {
  display: inline-flex;
  align-self: flex-start;
  margin: 0.9rem 1.05rem 1.1rem;
  padding: 0.52rem 0.84rem;
  border-radius: 999px;
  background: rgba(217, 181, 107, 0.17);
  color: var(--gold-soft);
  font-weight: 700;
}

.people-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 1rem;
  align-items: stretch;
}

.testimonials-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}

.section-mini-head {
  margin-bottom: 1rem;
}

.testimonial-stack {
  display: grid;
  gap: 0.9rem;
}

.testimonial-card {
  padding: 1.15rem;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}

.testimonial-head img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-head span,
.team-info span {
  color: var(--text-soft);
}

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

.team-shell {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 1rem;
  height: 100%;
  min-height: 100%;
}

.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card img {
  height: 320px;
}

.team-info {
  padding: 1rem 1rem 1.15rem;
}

.team-feature {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.team-feature-media {
  position: absolute;
  inset: 0;
}

.team-feature-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 11, 7, 0.02) 0%, rgba(3, 11, 7, 0.18) 46%, rgba(3, 11, 7, 0.92) 100%);
}

.team-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-feature-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.team-feature-copy h3 {
  margin: 0.45rem 0 0.35rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  padding: 1.2rem;
}

.contact-copy {
  padding: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.contact-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
}

.contact-card h3 {
  margin-bottom: 0.35rem;
}

.contact-visual {
  min-height: 100%;
  overflow: hidden;
}

.contact-visual img {
  height: 100%;
  min-height: 520px;
}

.contact-visual-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(3,11,7,0.35), rgba(3,11,7,0.88));
}

.contact-visual-copy strong {
  display: block;
  font-size: 1.4rem;
}

.footer {
  padding: 0 0 2rem;
}

.footer-shell {
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
}

.footer-brand span {
  display: block;
  color: var(--text-soft);
  font-size: 0.85rem;
}

main img {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(3, 8, 6, 0.92);
  z-index: 3500;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  width: min(1200px, calc(100vw - 8rem));
  max-height: calc(100vh - 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.lightbox-figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 10rem);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.38);
}

.lightbox-figure figcaption {
  color: var(--text-soft);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}

.lightbox-close {
  top: 1.4rem;
  right: 1.4rem;
}

.lightbox-prev {
  left: 1.4rem;
}

.lightbox-next {
  right: 1.4rem;
}

@media (max-width: 1180px) {
  .hero-layout,
  .split-heading,
  .gallery-head,
  .menu-intro,
  .people-layout,
  .contact-shell,
  .special-layout,
  .about-composition {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 580px;
  }

  .feature-platter {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-platter img {
    min-height: 360px;
  }

  .gallery-rail {
    grid-auto-columns: minmax(300px, 46vw);
  }

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

  .team-feature img {
    height: 300px;
  }
}

@media (max-width: 920px) {
  .header {
    padding: 0.8rem 0;
  }

  .gallery-card-wide {
    grid-column: span 1;
  }

  .nav-toggler {
    display: flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border-radius: 26px;
    background: rgba(8, 15, 11, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-copy,
  .hero-main-card,
  .story-copy,
  .feature-platter-copy,
  .testimonials-shell,
  .menu-shell,
  .contact-copy {
    padding: 1.3rem;
  }

  .hero-stats,
  .special-grid,
  .menu-grid,
  .team-grid,
  .contact-grid,
  .story-card {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 0.9rem;
  }

  .hero-main-card {
    position: relative;
    inset: auto;
  }

  .hero-main-media {
    height: clamp(280px, 58vw, 420px);
  }

  .tilt-card {
    transform: none;
  }

  .floating-feature {
    position: relative;
    width: 100%;
    max-width: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .feature-top,
  .feature-bottom {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .team-shell {
    grid-template-rows: auto auto auto;
    height: auto;
    min-height: 0;
  }

  .team-feature {
    min-height: clamp(300px, 56vw, 420px);
  }

  .team-feature img {
    height: 100%;
  }

  .gallery-control-bar,
  .footer-shell {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-nav-buttons {
    justify-content: flex-end;
  }

  .gallery-rail {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .contact-visual img {
    min-height: 360px;
  }

  .lightbox-figure {
    width: min(100vw - 2rem, 980px);
  }

  .lightbox-prev,
  .lightbox-next {
    bottom: 1.4rem;
    top: auto;
  }

  .lightbox-prev {
    left: calc(50% - 64px);
  }

  .lightbox-next {
    right: calc(50% - 64px);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.4rem 0;
  }

  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .header-shell {
    padding-inline: 0.9rem;
  }

  .brand-lockup span {
    display: none;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-main-card {
    padding: 0.8rem;
  }

  .hero-main-media {
    height: clamp(240px, 64vw, 320px);
  }

  .hero-main-copy {
    padding: 1rem 0.25rem 0.1rem;
  }

  .floating-feature {
    gap: 0.7rem;
    padding: 0.65rem;
    border-radius: 24px;
  }

  .floating-feature img {
    width: 64px;
    height: 64px;
  }

  .team-feature {
    min-height: 300px;
  }

  .team-feature-copy p {
    max-width: 26ch;
  }

  .menu-grid,
  .contact-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-filter,
  .menu-tab-item {
    width: 100%;
  }

  .gallery-nav-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .footer-brand {
    align-items: flex-start;
  }
}
