:root {
  --orange: #EC5823;
  --orange-bright: #ff6a00;
  --green: #66b95f;
  --dark: #353638;
  --text: #4A4A4A;
  --muted: #888888;
  --light-bg: #f2f2f2;
  --cream: #fbf7f0;
  --white: #ffffff;
  --ocean: #1380ad;
  --ocean-dark: #0f6b91;
  --charcoal: #2f3032;
  --serif: 'Playfair Display', Georgia, serif;
  --body: 'Open Sans', 'Candara', Arial, sans-serif;
  --typewriter: 'Special Elite', cursive;
  --script: 'Just Another Hand', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}

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

a { color: var(--orange); text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 2px;
  font-family: var(--typewriter);
  letter-spacing: 1px;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-bright); border-color: var(--orange-bright); color:#fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-ghost:hover { background: #fff; color: var(--dark); }

/* ---------- Announcement bar ---------- */
.announce-bar {
  background: var(--charcoal);
  color: #fff;
  font-family: var(--typewriter);
  letter-spacing: .5px;
  padding: 7px 0;
  font-size: 13.5px;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
}
.announce-text { text-align: center; }
.announce-btn {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  padding: 5px 16px;
  border-radius: 3px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: .2s;
}
.announce-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ocean);
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 92px;
  transition: min-height .3s ease;
}

/* Centered logo */
.nav-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.nav-logo img {
  height: 84px;
  width: auto;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: height .3s ease;
}

/* Link groups around logo */
.nav-collapse {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
}
.nav-group {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.nav-group > li > a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-family: var(--typewriter);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  transition: color .2s, opacity .2s;
}
.nav-group > li > a:hover { color: #ffe7c2; }

/* Scroll-shrink */
.navbar.scrolled { background: var(--ocean-dark); }
.navbar.scrolled .nav-inner { min-height: 70px; }
.navbar.scrolled .nav-logo img { height: 58px; }

/* Dropdown */
.dropdown { position: relative; }
.submenu {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  border-top: 3px solid var(--orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  text-align: left;
  z-index: 5;
}
.dropdown:hover .submenu,
.dropdown.open .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a {
  display: block;
  padding: 9px 20px;
  color: var(--text);
  font-family: var(--body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}
.submenu li a:hover { background: var(--light-bg); color: var(--orange); }

/* Social */
.nav-social {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.nav-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  transition: all .2s;
}
.nav-social a:hover { background: #fff; color: var(--ocean); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 4;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #14191e url('images/video_poster.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(15,25,35,.30), rgba(15,25,35,.55));
}
.hero-content { position: relative; z-index: 2; }
.hero-content {
  position: relative;
  padding: 40px 20px;
}
.hero-logo { max-width: 230px; margin: 0 auto 18px; filter: drop-shadow(0 4px 14px rgba(0,0,0,.4)); }
.script-title {
  font-family: var(--script);
  font-weight: 400;
  font-size: 76px;
  line-height: .95;
  margin: 0 0 16px;
}
.hero-text {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 18px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }



/* ---------- Intro ---------- */
.intro { text-align: center; padding: 80px 0 40px; }
.title-deco { max-width: 120px; margin: 0 auto 14px; opacity: .9; }
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 44px;
  color: var(--dark);
  margin: 0 0 18px;
}
.section-title.light { color: #fff; }
.intro-text { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: 17px; }

/* ---------- Menu grid ---------- */
.menu { padding: 30px 0 90px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.dish {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.dish:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,.13); }
.dish-img { height: 230px; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dish:hover .dish-img img { transform: scale(1.07); }
.dish-body { padding: 22px 24px 28px; }
.dish-tag {
  display: inline-block;
  font-family: var(--typewriter);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.dish-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--dark);
}
.dish-body p { margin: 0; color: var(--muted); font-size: 14.5px; }
.menu-cta { text-align: center; margin-top: 50px; }

/* ---------- Reviews ---------- */
.reviews {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0 90px;
  text-align: center;
  color: #fff;
}
.reviews-overlay { position: absolute; inset: 0; background: rgba(20,25,30,.78); }
.reviews .container { position: relative; }
.reviews-carousel { max-width: 760px; margin: 30px auto 0; min-height: 220px; position: relative; }
.review-slide {
  display: none;
  animation: fade .6s ease;
}
.review-slide.active { display: block; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.stars { color: #f5b50a; font-size: 20px; margin-bottom: 18px; letter-spacing: 3px; }
.review-slide p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.review-author {
  font-family: var(--typewriter);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
}
.review-author small { text-transform: none; opacity: .7; }
.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 28px; }
.reviews-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: .2s;
}
.reviews-nav button:hover { background: var(--orange); border-color: var(--orange); }
.review-dots { display: flex; gap: 9px; }
.review-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: .2s;
}
.review-dots span.active { background: var(--orange); }

/* ---------- Newsletter ---------- */
.newsletter {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.newsletter-overlay { position: absolute; inset: 0; background: rgba(236,88,35,.82); }
.newsletter-content { position: relative; }
.newsletter-content .script-title { font-size: 60px; margin-bottom: 4px; }
.newsletter-content p { margin: 0 0 24px; font-size: 17px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  border: none;
  border-radius: 2px;
  font-size: 15px;
}
.newsletter-form .btn-primary { background: var(--dark); border-color: var(--dark); }
.newsletter-form .btn-primary:hover { background: #1f2022; border-color:#1f2022; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #ddd; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.footer-col h3 {
  font-family: var(--script);
  font-weight: 400;
  font-size: 38px;
  color: #fff;
  margin: 0 0 14px;
}
.footer-col p { margin: 0 0 12px; color: #bbb; }
.footer-link { color: var(--orange); font-weight: 600; }
.footer-link:hover { color: var(--orange-bright); }
.footer-social { list-style: none; display: flex; gap: 10px; padding: 0; margin: 16px 0 0; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: .2s;
}
.footer-social a:hover { background: var(--orange); }
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* ---------- Hiring page ---------- */
.page-header {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
}
.page-header .hero-overlay { background: linear-gradient(rgba(20,25,30,.55), rgba(20,25,30,.72)); }
.page-header-content { position: relative; padding: 90px 20px; }
.page-header .script-title { font-size: 64px; margin-bottom: 8px; }
.page-header p { max-width: 620px; margin: 0 auto; font-size: 17px; font-weight: 300; }
.page-header .phone-note { font-family: var(--typewriter); letter-spacing: .5px; margin-top: 14px; }
.page-header .phone-note a { color: #fff; text-decoration: underline; }

.apply-section { padding: 70px 0 90px; background: var(--light-bg); }
.apply-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-family: var(--typewriter);
  letter-spacing: .5px;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-row .req { color: var(--orange); }
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-color: var(--orange); }
.form-row textarea { resize: vertical; min-height: 110px; }

.applying-options { display: flex; flex-wrap: wrap; gap: 12px; }
.applying-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--body);
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
  transition: .2s;
}
.applying-options label:hover { border-color: var(--orange); }
.applying-options input:checked + span { color: var(--orange); font-weight: 600; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 16px;
}
.consent input { margin-top: 4px; }
.consent .consent-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
.consent .consent-text a { font-weight: 600; }
.consent ul { margin: 8px 0 0; padding-left: 18px; }

.file-field {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.file-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--dark);
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--typewriter);
  letter-spacing: .5px;
  font-size: 14px;
  transition: .2s;
}
.file-btn:hover { background: var(--orange); }
.file-name { font-size: 14px; color: var(--muted); }

.form-submit { text-align: center; margin-top: 30px; }
.form-submit .btn { padding: 15px 60px; font-size: 16px; }

.form-success {
  display: none;
  background: #eaf7e9;
  border: 1px solid var(--green);
  color: #2f7a29;
  padding: 18px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 600;
}

/* ---------- Menu pages ---------- */
.menu-tabs {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 78px;
  z-index: 500;
}
.menu-tabs .container { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.menu-tabs a {
  display: inline-block;
  padding: 16px 26px;
  font-family: var(--typewriter);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: var(--dark);
  border-bottom: 3px solid transparent;
  transition: .2s;
}
.menu-tabs a:hover { color: var(--orange); }
.menu-tabs a.active { color: var(--orange); border-bottom-color: var(--orange); }

.menu-page { padding: 60px 0 90px; background: var(--cream); }
.menu-cat { margin-bottom: 56px; }
.menu-cat-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 32px;
  color: var(--dark);
  text-align: center;
  margin: 0 0 6px;
  position: relative;
}
.menu-cat-title::after {
  content: "";
  display: block;
  width: 60px; height: 3px;
  background: var(--orange);
  margin: 12px auto 0;
}
.menu-cat-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 720px;
  margin: 0 auto 26px;
  font-style: italic;
}
.menu-list {
  max-width: 820px;
  margin: 30px auto 0;
  display: grid;
  gap: 22px;
}
.menu-item {
  background: #fff;
  border-radius: 5px;
  padding: 18px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.mi-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.mi-head h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 0;
  color: var(--dark);
  flex: 1;
}
.mi-head::after {
  content: "";
  flex: 0 0 auto;
}
.mi-price {
  font-family: var(--typewriter);
  color: var(--orange);
  font-size: 17px;
  white-space: nowrap;
}
.menu-item p { margin: 8px 0 0; color: var(--muted); font-size: 14.5px; }

/* Empty state (specials) */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  max-width: 560px;
  margin: 0 auto;
}
.empty-state i { font-size: 52px; color: var(--orange); margin-bottom: 18px; }
.empty-state h2 { font-family: var(--serif); font-size: 32px; color: var(--dark); margin: 0 0 10px; }
.empty-state p { color: var(--muted); font-size: 18px; margin: 0 0 28px; }

/* Events */
.events-list { max-width: 760px; margin: 0 auto; display: grid; gap: 26px; }
.event-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border-left: 4px solid var(--orange);
}
.event-icon {
  flex: 0 0 auto;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.event-body h2 { font-family: var(--serif); font-size: 26px; color: var(--dark); margin: 0 0 6px; }
.event-date {
  display: block;
  font-family: var(--typewriter);
  letter-spacing: .5px;
  color: var(--green);
  font-size: 14px;
  margin-bottom: 10px;
}
.event-body p { margin: 0; color: var(--muted); }

/* ---------- Promotion pop-up ---------- */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.promo-popup[hidden] { display: none; }
.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,20,25,.72);
  animation: fade .3s ease;
}
.promo-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  animation: popIn .35s cubic-bezier(.2,.8,.3,1.1);
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.promo-close {
  position: absolute;
  top: 10px; right: 14px;
  z-index: 2;
  width: 38px; height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: var(--dark);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: .2s;
}
.promo-close:hover { background: var(--orange); color: #fff; }
.promo-img { background-size: cover; background-position: center; min-height: 280px; }
.promo-body { padding: 38px 34px; text-align: center; }
.promo-kicker {
  display: inline-block;
  font-family: var(--typewriter);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--green);
  margin-bottom: 6px;
}
.promo-body .script-title { font-size: 52px; color: var(--dark); margin: 0 0 12px; }
.promo-body p { color: var(--muted); margin: 0 0 22px; font-size: 15px; }
.promo-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-ghost-dark { color: var(--dark); border-color: var(--dark); }
.btn-ghost-dark:hover { background: var(--dark); color: #fff; }

@media (max-width: 640px) {
  .promo-dialog { grid-template-columns: 1fr; max-width: 420px; }
  .promo-img { min-height: 170px; }
  .promo-body { padding: 28px 22px; }
  .promo-body .script-title { font-size: 42px; }
}

/* ---------- Animations ---------- */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
.hero-content > * { animation: heroUp .9s cubic-bezier(.2,.7,.3,1) both; }
.hero-content > *:nth-child(1) { animation-delay: .05s; }
.hero-content > *:nth-child(2) { animation-delay: .2s; }
.hero-content > *:nth-child(3) { animation-delay: .35s; }
.hero-content > *:nth-child(4) { animation-delay: .5s; }

/* Scroll reveal (only active once JS marks body) */
.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-ready .reveal-item.in { opacity: 1; transform: none; }

/* Google map */
.map-section { line-height: 0; }
.map-section iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: grayscale(.15);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  z-index: 1500;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--orange-bright); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .script-title { font-size: 60px; }
}

@media (max-width: 880px) {
  .nav-inner { justify-content: flex-start; min-height: 72px; }
  .navbar.scrolled .nav-inner { min-height: 64px; }
  .nav-logo { position: static; transform: none; }
  .nav-logo img, .navbar.scrolled .nav-logo img { height: 54px; }
  .nav-toggle { display: block; }
  .nav-social { display: none; }
  .nav-collapse {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--ocean);
    padding: 78px 0 0;
    box-shadow: -4px 0 24px rgba(0,0,0,.3);
    transition: right .3s ease;
    overflow-y: auto;
  }
  .nav-collapse.open { right: 0; }
  .nav-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-group > li > a { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: rgba(0,0,0,.15);
    display: none;
  }
  .submenu li a { color: #fff; }
  .submenu li a:hover { background: rgba(0,0,0,.25); color: #ffe7c2; }
  .dropdown.open .submenu { display: block; }
  .nav-hiring { border-radius: 0; }
}

@media (max-width: 620px) {
  .features-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .script-title { font-size: 48px; }
  .section-title { font-size: 34px; }
  .hero-content { padding: 40px 20px; }
  .apply-form { padding: 26px 20px; }
  .review-slide p { font-size: 18px; }
  .menu-tabs { top: 0; }
  .menu-tabs a { padding: 13px 16px; }
  .event-card { flex-direction: column; gap: 14px; }
}

/* Media queries for gallery and split sections added inline */
@media (max-width: 768px) {
  .gallery-img { flex: 1 1 100% !important; min-height: 250px !important; }
  .newsletter, .map-section { flex: 1 1 100% !important; }
}
