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

:root {
  --navy:      #1a2738;
  --cream:     #f7f3ec;
  --teal:      #4a8b7f;
  --teal-dark: #3a7066;
  --gold:      #c9a84c;
  --text:      #2c2c2c;
  --muted:     #8a8a8a;
  --white:     #ffffff;
  --nav-h:     70px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--split {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section { padding: 6rem 0; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--navy); color: var(--white); }
.section--teal  { background: var(--teal); color: var(--white); }

.section h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 2.5rem;
}

.section-sub {
  margin-top: -1.5rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.section-sub a { text-decoration: underline; }

/* ---- NAV ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s, box-shadow 0.35s;
}

#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.nav-links a {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-hav {
  opacity: 0.55 !important;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 2.5rem !important;
  font-style: italic;
}
.nav-hav:hover { opacity: 0.85 !important; }

.nav-cta {
  background: var(--teal) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 2px;
  opacity: 1 !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ---- HERO ---- */
#hero {
  height: 100vh;
  min-height: 620px;
  background-color: #1a2738;
  background-size: cover;
  background-position: center 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 30, 48, 0.65) 0%,
    rgba(18, 30, 48, 0.55) 50%,
    rgba(18, 30, 48, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.hero-content h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.62);
  margin-bottom: 2.75rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.25);
  font-size: 1.3rem;
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); }

/* ---- HOURS ---- */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hours-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 3px;
  border-top: 3px solid var(--teal);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.hours-card--gold { border-top-color: var(--gold); }

.hours-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hours-days {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.hours-time {
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.hours-note {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--teal);
}
.hours-card--gold .hours-note { color: var(--gold); }

/* ---- MENU / TABS ---- */
.tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 2.5rem;
  gap: 0;
}

.tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.tab:hover { color: rgba(255,255,255,0.8); }

.tab.active {
  color: var(--white);
  border-bottom-color: var(--teal);
}

.tab-panels { min-height: 140px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-panel h3 {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.tab-time {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 1.2rem;
}

.tab-panel p {
  opacity: 0.82;
  margin-bottom: 0.75rem;
  max-width: 560px;
}

.menu-contact {
  font-size: 0.875rem;
  opacity: 0.55 !important;
}
.menu-contact a {
  text-decoration: underline;
  opacity: 1;
}

.seasonal-note {
  margin-top: 3rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  font-size: 0.875rem;
  opacity: 0.65;
  max-width: 540px;
}
.seasonal-note strong {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  opacity: 1;
}

/* ---- ABOUT ---- */
#om-oss .lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  color: var(--navy);
}

#om-oss p {
  color: #555;
  margin-bottom: 1rem;
}

/* ---- IMAGE BAND ---- */
.img-band {
  display: flex;
  height: 400px;
  gap: 3px;
  clip-path: polygon(0 7%, 100% 0%, 100% 93%, 0% 100%);
  margin: -50px 0;
  position: relative;
  z-index: 2;
}

.img-band-item {
  flex: 1;
  overflow: hidden;
}

.img-band-item--wide {
  flex: 1.5;
}

.img-band-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.img-band-item:hover img {
  transform: scale(1.06);
}

/* ---- ABOUT COLLAGE ---- */
.about-images {
  position: relative;
  height: 460px;
  min-width: 0;
}

.about-img {
  position: absolute;
  border-radius: 3px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img--main {
  width: 76%;
  height: 70%;
  top: 0;
  right: 0;
  z-index: 1;
}

.about-img--front {
  width: 60%;
  height: 56%;
  bottom: 0;
  left: 0;
  z-index: 2;
  box-shadow: -4px 8px 36px rgba(0,0,0,0.18);
  transform: rotate(-1.8deg);
}

.about-img--accent {
  width: 36%;
  height: 38%;
  bottom: 22%;
  right: 3%;
  z-index: 3;
  box-shadow: -3px 6px 22px rgba(0,0,0,0.2);
  transform: rotate(1.6deg);
}

/* ---- CINEMA STRIP ---- */
.cinema-strip {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: var(--navy);
}

.cinema-strip img {
  position: absolute;
  width: 100%;
  height: 130%;
  top: -15%;
  left: 0;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.cinema-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 30, 48, 0.3) 0%,
    rgba(18, 30, 48, 0.55) 100%
  );
}

.cinema-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  text-align: center;
  padding: 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* ---- FILM STRIP ---- */
.filmstrip-wrap {
  background: #0e0e0e;
  padding: 0;
  overflow: hidden;
}

.filmstrip {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 3px;
  cursor: grab;
}

.filmstrip:active {
  cursor: grabbing;
}

.filmstrip::-webkit-scrollbar {
  height: 3px;
}

.filmstrip::-webkit-scrollbar-track {
  background: #0e0e0e;
}

.filmstrip::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 2px;
}

.filmstrip img {
  height: 300px;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  scroll-snap-align: start;
  filter: brightness(0.82) saturate(0.85);
  transition: filter 0.35s ease;
}

.filmstrip img:hover {
  filter: brightness(1) saturate(1);
}

/* ---- LOCATION ---- */
.location-text address { margin-bottom: 1.5rem; }
.location-text address p { margin-bottom: 0.75rem; }
.location-text a { text-decoration: underline; }
.location-text a:hover { opacity: 0.8; }

.directions {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.92rem;
  line-height: 1.85;
}

.location-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 3px;
  display: block;
}

/* ---- BOOKING ---- */
.booking-form { margin-top: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-row .form-group,
.form-row--three .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a8a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}

.form-group textarea { resize: vertical; }

.booking-form .btn { margin-top: 0.5rem; }

.booking-confirm {
  margin-top: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: #e4f2ef;
  border-radius: 3px;
  color: var(--teal-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.62);
  padding-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-col address { font-size: 0.875rem; line-height: 2; }
.footer-col p { margin-bottom: 0.5rem; font-size: 0.875rem; }
.footer-col a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.25rem;
}

.footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  padding: 1.1rem 2rem;
  font-size: 0.75rem;
  opacity: 0.35;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .container--split { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .img-band { height: 280px; clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0% 100%); margin: -30px 0; }
  .about-images { height: 380px; }
  .cinema-strip { height: 340px; }
  .filmstrip img { height: 220px; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .section h2 { margin-bottom: 1.75rem; }
  .hours-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hours-card { padding: 1.4rem 1.1rem; }
  .hours-time { font-size: 1.2rem; }
  .tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tab { padding: 0.65rem 1rem; font-size: 0.72rem; white-space: nowrap; }
  .form-row,
  .form-row--three { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .img-band { height: 200px; clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0% 100%); margin: -20px 0; }
  .img-band-item--wide { flex: 1; }
  .about-images { height: 300px; }
  .about-img--accent { display: none; }
  .cinema-strip { height: 260px; }
  .cinema-text { font-size: 1.4rem; }
  .filmstrip img { height: 170px; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 2rem 2rem;
    gap: 1.4rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; position: absolute; right: 2rem; }
  .nav-cta { padding: 0 !important; background: transparent !important; }
}
