/* ═══════════════════════════════════════════
   AMOGHA INDIAN KITCHEN & BAR
   Brand Palette v2 — Orange / Dark Turquoise
   amoghakitchens.com · 4265 Main St, Vancouver BC
   ═══════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@200;300;400;500&display=swap");

/* ── BRAND TOKENS ── */
:root {
  /* Primary palette */
  --orange: #ed7014;
  --orange-dark: #c55c0a;
  --orange-light: #f5893a;
  --orange-pale: #fdebd8;

  --teal-dark: #02231e;
  --teal-mid: #0a3530;
  --teal-lift: #0d4038;
  --teal-border: #133d35;

  --grey-teal: #4a5d58;
  --grey-teal-lt: #6a7d78;
  --grey-teal-pl: #c8d4d0;

  --white: #ffffff;
  --off-white: #f4f7f6;
  --light-bg: #ebf0ee;

  /* Semantic */
  --ink: var(--teal-dark);
  --ink-mid: var(--teal-mid);
  --ink-lift: var(--teal-lift);
  --accent: var(--orange);
  --accent-dark: var(--orange-dark);
  --accent-light: var(--orange-light);
  --text-on-dark: rgba(255, 255, 255, 0.88);
  --text-muted: rgba(255, 255, 255, 0.45);
  --text-subtle: rgba(255, 255, 255, 0.25);
  --border: rgba(255, 255, 255, 0.08);
  --border-mid: rgba(255, 255, 255, 0.14);
  --border-str: rgba(255, 255, 255, 0.22);
  --border-accent: rgba(237, 112, 20, 0.3);

  /* Layout */
  --nav-h: 68px;
  --radius: 4px;
  --radius-lg: 8px;
  --arch-r: 50% 50% 0 0 / 60% 60% 0 0; /* arch border-radius */
  --section-space: 6.5rem;
  --section-space-tight: 5rem;
  --content-gap: 4rem;
  --grid-gap: 2rem;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  background: var(--teal-dark);
  color: var(--text-on-dark);
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
}
.display em {
  font-style: italic;
  color: var(--orange);
}
.display-xl {
  font-size: clamp(56px, 8vw, 108px);
}
.display-lg {
  font-size: clamp(42px, 6vw, 78px);
}
.display-md {
  font-size: clamp(32px, 4vw, 54px);
}
.display-sm {
  font-size: clamp(24px, 3vw, 36px);
}

/* On white/light backgrounds */
.display.dark {
  color: var(--teal-dark);
}
.display.dark em {
  color: var(--orange);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.eyebrow-line {
  display: block;
  height: 0.5px;
  background: var(--orange);
  opacity: 0.6;
  flex-shrink: 0;
}
.eyebrow.on-light {
  color: var(--orange-dark);
}
.eyebrow.on-light .eyebrow-line {
  background: var(--orange-dark);
}

.body-lg {
  font-size: 19px;
  line-height: 1.85;
}
.body-md {
  font-size: 17px;
  line-height: 1.82;
}
.body-sm {
  font-size: 15px;
  line-height: 1.75;
}
.body-lg.muted,
.body-md.muted,
.body-sm.muted {
  color: var(--text-muted);
}
.body-lg.on-light,
.body-md.on-light {
  color: var(--grey-teal);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 3.5rem;
  background: rgba(2, 35, 30, 0.94);
  border-bottom: 0.5px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: rgba(237, 112, 20, 0.22);
  background: rgba(2, 35, 30, 0.97);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0.75;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0 auto;
}
.nav-links a {
  display: block;
  padding: 0 1.3rem;
  height: var(--nav-h);
  line-height: var(--nav-h);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--orange);
}

.nav-ctas {
  display: flex;
  gap: 10px;
  margin-left: 1.5rem;
  flex-shrink: 0;
}

.btn-ghost {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  border: 0.5px solid var(--border-str);
  border-radius: var(--radius);
  padding: 9px 18px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-solid {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  background: var(--orange);
  border: none;
  border-radius: var(--radius);
  padding: 10px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.btn-solid:hover {
  background: var(--orange-light);
}

/* ── PAGE-LEVEL BUTTONS ── */
.btn-primary {
  font-family: "Jost", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: var(--orange);
  border: none;
  border-radius: var(--radius);
  padding: 15px 34px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--orange-light);
}

.btn-secondary {
  font-family: "Jost", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 0.5px solid var(--border-str);
  border-radius: var(--radius);
  padding: 15px 34px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-primary-dark {
  font-family: "Jost", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: var(--teal-dark);
  border: none;
  border-radius: var(--radius);
  padding: 15px 34px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary-dark:hover {
  background: var(--teal-lift);
}

/* ── LAYOUT ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3.5rem;
}
.section {
  padding: var(--section-space) 0;
  border-top: 0.5px solid var(--border);
}
.section-light {
  padding: var(--section-space) 0;
  background: var(--off-white);
  border-top: none;
}
.section-light-tight {
  padding: var(--section-space-tight) 0;
  background: var(--off-white);
}
.section-orange {
  padding: var(--section-space-tight) 0;
  background: var(--orange);
  border-top: none;
}

/* ── ARCH MOTIF ── */
/* The signature arch shape from brand palette card */
.arch-shape {
  width: 100%;
  padding-top: 130%;
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
}
.arch-shape-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative arch accent (small) */
.arch-accent {
  display: inline-block;
  width: 48px;
  height: 62px;
  border: 1.5px solid var(--orange);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
  opacity: 0.4;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: calc(var(--nav-h) + 5rem) 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      ellipse at 0% 100%,
      rgba(237, 112, 20, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 100% 0%,
      rgba(10, 53, 48, 0.8) 0%,
      transparent 50%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 56px,
      rgba(255, 255, 255, 0.018) 56px,
      rgba(255, 255, 255, 0.018) 57px
    );
}

/* ── ORNAMENT ── */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ornament-line {
  flex: 1;
  height: 0.5px;
  background: var(--border);
}
.ornament-arch {
  width: 18px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid rgba(237, 112, 20, 0.35);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
}
.ornament-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.5;
  flex-shrink: 0;
}

/* On light BG */
.ornament.on-light .ornament-line {
  background: rgba(2, 35, 30, 0.12);
}
.ornament.on-light .ornament-arch {
  border-color: rgba(237, 112, 20, 0.4);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.22s;
}
.reveal-d3 {
  transition-delay: 0.36s;
}
.reveal-d4 {
  transition-delay: 0.5s;
}

/* ── PHOTO PLACEHOLDERS ── */
.photo-block {
  background: var(--teal-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 32px,
      rgba(255, 255, 255, 0.03) 32px,
      rgba(255, 255, 255, 0.03) 33px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 32px,
      rgba(255, 255, 255, 0.03) 32px,
      rgba(255, 255, 255, 0.03) 33px
    );
}
.photo-label {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem;
  line-height: 1.7;
}

/* ── CARD ── */
.card {
  background: var(--teal-lift);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover {
  border-color: rgba(237, 112, 20, 0.4);
}

/* ── TAG / BADGE ── */
.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  border: 0.5px solid var(--border);
  color: var(--text-muted);
}
.tag.orange {
  border-color: rgba(237, 112, 20, 0.4);
  color: var(--orange);
}
.tag.green {
  border-color: rgba(97, 168, 90, 0.35);
  color: rgba(120, 200, 110, 0.8);
}
.tag.spicy {
  border-color: rgba(220, 80, 40, 0.35);
  color: rgba(240, 120, 80, 0.8);
}
.tag.white {
  border-color: var(--border-str);
  color: rgba(255, 255, 255, 0.6);
}

/* ── FORM ELEMENTS ── */
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-subtle);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: rgba(237, 112, 20, 0.07);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23ED7014'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255, 255, 255, 0.06);
  padding-right: 36px;
  cursor: pointer;
}
.field select option {
  background: var(--teal-dark);
  color: var(--white);
}
.field textarea {
  resize: none;
  height: 110px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: var(--orange);
  border: none;
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover {
  background: var(--orange-light);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--teal-dark);
  border-top: 0.5px solid var(--border);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding: 5rem 3.5rem 4rem;
}
.footer-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 320px;
}
.footer-address {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 1.2rem;
  line-height: 1.85;
}
.footer-address strong {
  color: var(--orange);
  font-weight: 400;
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: block;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul a {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.footer-col ul a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 0.5px solid var(--border);
  padding: 1.35rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-subtle);
  letter-spacing: 0.03em;
}
.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--orange);
}

/* ── MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
}

.nav-brand--logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand-logo {
  height: 64px;
  object-fit: contain;
  filter: brightness(1.08) contrast(1.03)
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 199;
  padding: 1.5rem 1.5rem 2rem;
  background: rgba(2, 35, 30, 0.98);
  border-bottom: 0.5px solid rgba(237, 112, 20, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-menu.is-open {
  display: block;
}
.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-link {
  display: block;
  padding: 13px 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-link--last {
  border-bottom: none;
}
.mobile-menu-link.active,
.mobile-menu-link:hover {
  color: var(--white);
}

.mobile-menu-actions {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}

.mobile-menu-btn {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
}

.mobile-menu-btn--ghost {
  color: var(--white);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn--solid {
  color: var(--white);
  font-weight: 500;
  background: var(--orange);
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand-name--tight {
  margin-bottom: 0;
}
.footer-inline-link {
  color: var(--orange);
  font-size: 14px;
  text-decoration: none;
}

.footer-hours-list {
  gap: 7px;
}
.footer-hours-item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-hours-highlight {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.footer-follow {
  margin-top: 1.8rem;
}
.footer-social--tight {
  margin-top: 0.8rem;
}

.form-submit.is-pending {
  opacity: 0.7;
  pointer-events: none;
}

.form-submit.is-success {
  color: #c6f0c6;
  background: #295b2f;
}

.eyebrow-line--28 {
  width: 28px;
}
.eyebrow-line--32 {
  width: 32px;
}
.eyebrow-line--36 {
  width: 36px;
}
.eyebrow-line--dark {
  background: var(--orange-dark);
  opacity: 1;
}
.eyebrow-line--light {
  background: var(--orange-light);
  opacity: 1;
}

.section-rule-top {
  border-top: 0.5px solid var(--border);
}
.section-cta-simple {
  padding: 5rem 0;
  text-align: center;
}

.u-relative {
  position: relative;
}
.u-z1 {
  position: relative;
  z-index: 1;
}
.u-text-center {
  text-align: center;
}
.u-max-860 {
  max-width: 860px;
}
.u-max-700 {
  max-width: 700px;
  margin: 0 auto;
}
.u-max-600 {
  max-width: 600px;
}
.u-max-540 {
  max-width: 540px;
}
.u-max-520 {
  max-width: 520px;
}
.u-max-500 {
  max-width: 500px;
}
.u-max-480 {
  max-width: 480px;
}
.u-max-420 {
  max-width: 420px;
}
.u-max-420-center {
  max-width: 420px;
  margin: 0 auto 2.5rem;
}
.u-mb-35 {
  margin-bottom: 3.5rem;
}
.u-mb-25 {
  margin-bottom: 2.5rem;
}
.u-mb-20 {
  margin-bottom: 2rem;
}
.u-mb-18 {
  margin-bottom: 1.8rem;
}
.u-mb-16 {
  margin-bottom: 1.6rem;
}
.u-mb-15 {
  margin-bottom: 1.5rem;
}
.u-mb-14 {
  margin-bottom: 1.4rem;
}
.u-mb-12 {
  margin-bottom: 1.2rem;
}
.u-mb-10 {
  margin-bottom: 1rem;
}
.u-mb-08 {
  margin-bottom: 0.8rem;
}
.u-mb-05 {
  margin-bottom: 0.5rem;
}
.u-mb-0 {
  margin-bottom: 0;
}
.u-mt-30 {
  margin-top: 3rem;
}
.u-mt-25 {
  margin-top: 2.5rem;
}
.u-mt-20 {
  margin-top: 2rem;
}
.u-mt-18 {
  margin-top: 1.8rem;
}
.u-mt-16 {
  margin-top: 1.6rem;
}
.u-mt-14 {
  margin-top: 1.4rem;
}
.u-mt-12 {
  margin-top: 1.2rem;
}
.u-mt-10 {
  margin-top: 1rem;
}
.u-mt-08 {
  margin-top: 0.8rem;
}
.u-mt-06 {
  margin-top: 6px;
}
.u-center-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.u-space-between-end {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.u-divider-vert {
  width: 0.5px;
  background: var(--border);
  align-self: stretch;
}

.u-divider-fade {
  background: var(--border);
  height: 0.5px;
  flex: 1;
}

.u-placeholder-copy {
  position: relative;
  z-index: 1;
  padding: 2rem;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
}

.u-placeholder-copy--light {
  font-size: 13px;
  color: var(--grey-teal);
  font-style: italic;
  letter-spacing: 0.04em;
}

.u-meta-small {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.u-meta-orange {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-light);
  opacity: 0.65;
}

.u-link-accent {
  color: var(--orange);
}
.u-link-block {
  display: block;
  margin-top: 6px;
}
.u-note-optional {
  opacity: 0.55;
  font-size: 11px;
}
.u-textarea-short {
  height: 90px;
}
.u-no-border {
  border-bottom: none;
}
.u-inline-color-accent {
  color: var(--orange);
}
.u-color-orange-light {
  color: var(--orange-light);
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--light {
  color: var(--orange-light);
}
.ornament--center {
  justify-content: center;
}
.intro-menu-link {
  align-self: flex-end;
}
.bar-copy-intro {
  padding-top: 0.5rem;
}
.contact-map-note {
  font-size: 12px;
  opacity: 0.7;
}
.careers-apply-section {
  background: var(--teal-mid);
}
.story-logo-copy {
  flex: 1;
  min-width: 280px;
}
.story-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.file-name.has-file {
  color: var(--orange-light);
}

.hero-arch-bg--1 {
  width: 280px;
  height: 360px;
  right: -60px;
  bottom: 0;
}
.hero-arch-bg--2 {
  width: 200px;
  height: 260px;
  right: 120px;
  bottom: 0;
  opacity: 0.6;
}
.hero-arch-bg--3 {
  width: 140px;
  height: 180px;
  right: 260px;
  bottom: 0;
  opacity: 0.3;
}
.hero-arch-bg--4 {
  width: 400px;
  height: 520px;
  right: -160px;
  bottom: 0;
  opacity: 0.07;
}

.cta-arch-dec--1 {
  width: 160px;
  height: 210px;
}
.cta-arch-dec--2 {
  width: 240px;
  height: 315px;
  margin-left: -30px;
}
.cta-arch-dec--3 {
  width: 340px;
  height: 445px;
  margin-left: -40px;
}
.cta-arch-dec--4 {
  width: 460px;
  height: 600px;
  margin-left: -50px;
  opacity: 0.5;
}

.story-cta-arch--1 {
  width: 200px;
  height: 260px;
  right: 20px;
}
.story-cta-arch--2 {
  width: 310px;
  height: 400px;
  right: -50px;
}
.story-cta-arch--3 {
  width: 440px;
  height: 570px;
  right: -130px;
  opacity: 0.5;
}

@media (max-width: 640px) {
  .mobile-menu-actions {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .nav {
    padding: 0 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-ctas .btn-ghost {
    display: none;
  }
  .container {
    padding: 0 1.5rem;
  }
  .body-lg {
    font-size: 18px;
  }
  .body-md {
    font-size: 16px;
  }
  .display-lg {
    font-size: clamp(38px, 6vw, 64px);
  }
  .display-md {
    font-size: clamp(30px, 4.5vw, 46px);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem;
  }
  .footer-bottom {
    padding: 1.5rem;
  }
  .section {
    padding: 5rem 0;
  }
  .section-light {
    padding: 5rem 0;
  }
}
@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  .nav-ctas {
    display: none;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .body-lg {
    font-size: 17px;
    line-height: 1.8;
  }
  .body-md {
    font-size: 15px;
    line-height: 1.75;
  }
  .body-sm {
    font-size: 14px;
  }
  .display-xl {
    font-size: clamp(44px, 11vw, 64px);
  }
  .display-lg {
    font-size: clamp(34px, 9vw, 48px);
  }
  .display-md {
    font-size: clamp(28px, 7vw, 38px);
  }
  .display-sm {
    font-size: clamp(22px, 5vw, 30px);
  }
  .section {
    padding: 4rem 0;
  }
}

/* ===== index ===== */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 0% 100%,
      rgba(237, 112, 20, 0.18) 0%,
      transparent 45%
    ),
    radial-gradient(
      ellipse at 100% 0%,
      rgba(13, 64, 56, 0.9) 0%,
      transparent 60%
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.015) 60px,
      rgba(255, 255, 255, 0.015) 61px
    );
}

/* Arch decorations — large background arches */
.hero-arches {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  pointer-events: none;
  overflow: hidden;
}
.hero-arch-bg {
  position: absolute;
  border: 1px solid rgba(237, 112, 20, 0.12);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 6.5rem) 3.5rem 2.5rem;
  max-width: 800px;
}
.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: heroIn 0.7s 0.1s ease both;
}
.hero-kicker span {
  width: 32px;
  height: 0.5px;
  background: var(--orange);
  display: block;
}

.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 9vw, 116px);
  font-weight: 500;
  line-height: 0.96;
  color: var(--white);
  animation: heroIn 0.85s 0.22s ease both;
}
.hero-h1 em {
  font-style: italic;
  color: var(--orange);
}
.hero-h1 .indent {
  padding-left: 5rem;
  display: block;
}

.hero-sub {
  margin-top: 2rem;
  max-width: 560px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  animation: heroIn 0.85s 0.38s ease both;
}
.hero-ctas {
  margin-top: 2.6rem;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroIn 0.85s 0.52s ease both;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 2.5rem 3.5rem 3.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: heroIn 1s 0.75s ease both;
}
.hero-address-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.hero-address-val {
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  align-items: flex-end;
}
.hero-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 3px;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── MARQUEE ── */
.marquee-strip {
  border-top: 0.5px solid rgba(237, 112, 20, 0.2);
  border-bottom: 0.5px solid rgba(237, 112, 20, 0.2);
  background: rgba(237, 112, 20, 0.08);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0 1.8rem;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 112, 20, 0.7);
  white-space: nowrap;
}
.marquee-arch {
  width: 12px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(237, 112, 20, 0.4);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── INTRO TWO-COL ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.intro-left {
  padding: var(--section-space) 4.5rem var(--section-space) 3.5rem;
  border-right: 0.5px solid var(--border);
}
.intro-right {
  padding: var(--section-space) 3.5rem var(--section-space) 4.5rem;
  display: flex;
  flex-direction: column;
}
.intro-photo {
  flex: 1;
  min-height: 400px;
  margin-bottom: 2.25rem;
  border-radius: var(--radius);
}
.intro-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--border);
}
.intro-quote span {
  display: block;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

/* ── THREE PILLARS ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 0.5px solid var(--border);
}
.pillar-item {
  padding: 3.75rem 3rem;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.25s;
}
.pillar-item:hover {
  background: rgba(237, 112, 20, 0.04);
}
.pillar-arch {
  width: 38px;
  height: 50px;
  margin-bottom: 1.8rem;
  border: 1.5px solid rgba(237, 112, 20, 0.4);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pillar-arch svg {
  width: 16px;
  height: 16px;
}
.pillar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.15;
}
.pillar-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 1.5rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.2s;
}
.pillar-link:hover {
  gap: 12px;
}
.pillar-link::after {
  content: "→";
}

/* ── FEATURED DISHES ── */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3.25rem;
}
.dish-card {
  background: var(--teal-lift);
  border: 0.5px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s;
}
.dish-card:hover {
  border-color: rgba(237, 112, 20, 0.4);
}
.dish-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--teal-mid);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dish-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.025) 30px,
      rgba(255, 255, 255, 0.025) 31px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.025) 30px,
      rgba(255, 255, 255, 0.025) 31px
    );
}
.dish-photo-lbl {
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.18);
  text-align: center;
  padding: 1rem;
}
/* Orange accent stripe on hover */
.dish-card:hover .dish-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}
.dish-info {
  padding: 1.55rem 1.45rem 1.6rem;
}
.dish-region {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}
.dish-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.dish-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.75;
}
.dish-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--orange);
  margin-top: 10px;
}

/* ── BAR FEATURE — light BG ── */
.bar-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.bar-photo {
  background: var(--teal-mid);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
}
.bar-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 36px,
      rgba(255, 255, 255, 0.03) 36px,
      rgba(255, 255, 255, 0.03) 37px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 36px,
      rgba(255, 255, 255, 0.03) 36px,
      rgba(255, 255, 255, 0.03) 37px
    );
}
.bar-photo-lbl {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.24);
  letter-spacing: 0.06em;
  padding: 2rem;
}
.bar-text {
  background: var(--off-white);
  padding: var(--section-space) 4rem var(--section-space) 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bar-cocktail-list {
  margin: 2.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bar-cocktail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 0.5px solid rgba(2, 35, 30, 0.1);
}
.bar-cocktail-row:first-child {
  border-top: 0.5px solid rgba(2, 35, 30, 0.1);
}
.bc-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--teal-dark);
}
.bc-note {
  font-size: 14px;
  color: var(--grey-teal);
}
.bc-price {
  font-size: 16px;
  color: var(--orange);
  letter-spacing: 0.03em;
}

/* ── HAPPY HOURS BAND (orange BG) ── */
.hh-band {
  background: var(--orange);
  padding: 4.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hh-time {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 300;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.hh-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}
.hh-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 360px;
  line-height: 1.75;
}
.btn-hh {
  font-family: "Jost", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--orange);
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 15px 36px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
  white-space: nowrap;
}
.btn-hh:hover {
  background: var(--off-white);
}

/* ── TESTIMONIALS — light BG ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testi-card {
  background: var(--white);
  padding: 2.65rem;
  border: 0.5px solid rgba(2, 35, 30, 0.08);
  transition: border-color 0.25s;
}
.testi-card:hover {
  border-color: rgba(237, 112, 20, 0.3);
}
.testi-arch {
  width: 28px;
  height: 36px;
  border: 1.5px solid rgba(237, 112, 20, 0.4);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
  margin-bottom: 1.5rem;
}
.testi-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--teal-dark);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}
.testi-stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 0.8rem;
}
.testi-author {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-teal);
}

/* ── CTA BAND ── */
.cta-band {
  padding: 6.5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-arches {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -20px;
}
.cta-arch-dec {
  flex-shrink: 0;
  border: 0.5px solid rgba(237, 112, 20, 0.08);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content {
    padding: calc(var(--nav-h) + 5rem) 1.5rem 3rem;
  }
  .hero-bottom {
    padding: 2rem 1.5rem 3rem;
  }
  .hero-arches {
    display: none;
  }
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-left {
    padding: 5rem 1.5rem 3rem;
    border-right: none;
    border-bottom: 0.5px solid var(--border);
  }
  .intro-right {
    padding: 3rem 1.5rem 5rem;
  }
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dishes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bar-feature {
    grid-template-columns: 1fr;
  }
  .bar-text {
    padding: 4rem 1.5rem;
  }
  .hh-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 1.5rem;
  }
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .cta-band {
    padding: 5rem 1.5rem;
  }
}
@media (max-width: 640px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 2rem;
  }
}

/* ===== menu ===== */

/* ── MENU FILTER TABS ── */
.menu-tabs {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(2, 35, 30, 0.96);
  border-bottom: 0.5px solid var(--border);
  backdrop-filter: blur(14px);
  padding: 0 3.5rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar {
  display: none;
}
.menu-tab {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding: 0 1.6rem;
  height: 52px;
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 1.5px solid transparent;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: "Jost", sans-serif;
}
.menu-tab:hover {
  color: var(--orange-light);
}
.menu-tab.active {
  color: var(--white);
  border-bottom-color: var(--orange);
}

/* ── MENU SECTIONS ── */
.menu-section {
  scroll-margin-top: calc(var(--nav-h) + 52px);
}

.menu-section-header {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  padding: 4.5rem 0 2.5rem;
  flex-wrap: wrap;
}
.menu-section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ── DISH LIST ── */
.dish-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dish-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--border);
  gap: 2rem;
  align-items: start;
  transition: background 0.2s;
}
.dish-row:first-child {
  border-top: 0.5px solid var(--border);
}
.dish-row:hover {
  background: rgba(237, 112, 20, 0.03);
  margin: 0 -0.85rem;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}
.dish-row-left {
}
.dish-row-origin {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.dish-row-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 5px;
}
.dish-row-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
}
.dish-row-tags {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.dish-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  border: 0.5px solid var(--border);
  color: var(--text-muted);
}
.dish-tag.veg {
  border-color: rgba(97, 168, 90, 0.3);
  color: rgba(97, 168, 90, 0.7);
}
.dish-tag.spicy {
  border-color: rgba(200, 80, 40, 0.3);
  color: rgba(200, 80, 40, 0.7);
}
.dish-tag.sig {
  border-color: var(--border-str);
  color: var(--orange);
}
.dish-row-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--orange-light);
  white-space: nowrap;
  text-align: right;
  padding-top: 4px;
}

/* ── TWO COLUMN MENU ── */
.dish-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

/* ── MENU NOTE ── */
.menu-note {
  background: rgba(237, 112, 20, 0.05);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 2.25rem;
}
.menu-note strong {
  color: var(--orange);
  font-weight: 400;
}

/* ── SECTION DIVIDER ── */
.menu-section-divider {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 768px) {
  .menu-tabs {
    padding: 0 1.5rem;
  }
  .menu-section-header {
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 0 2rem;
  }
  .dish-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===== bar ===== */

/* ── BAR HERO ── */
.bar-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 5rem) 3.5rem 5rem;
}
.bar-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 5% 95%,
      rgba(197, 92, 10, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 95% 5%,
      rgba(237, 112, 20, 0.12) 0%,
      transparent 50%
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 54px,
      rgba(237, 112, 20, 0.022) 54px,
      rgba(237, 112, 20, 0.022) 55px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 54px,
      rgba(237, 112, 20, 0.018) 54px,
      rgba(237, 112, 20, 0.018) 55px
    );
}
.bar-hero-right {
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  text-align: right;
}
.bar-hero-spec {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 2.2;
}

/* ── COCKTAIL SECTIONS ── */
.cocktail-section {
  padding: var(--section-space-tight) 0;
  border-top: 0.5px solid var(--border);
}

.cocktail-category-header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.cocktail-full-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cocktail-full-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 1.65rem 0;
  border-bottom: 0.5px solid var(--border);
  gap: 3rem;
  align-items: start;
}
.cocktail-full-row:first-child {
  border-top: 0.5px solid var(--border);
}
.cocktail-full-row:hover {
  background: rgba(237, 112, 20, 0.025);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cf-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.1;
}
.cf-base {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.cf-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
}
.cf-pairing {
  font-size: 12px;
  color: rgba(237, 112, 20, 0.7);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cf-pairing::before {
  content: "✦";
  font-size: 10px;
}
.cf-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--orange-light);
  text-align: right;
  padding-top: 4px;
  white-space: nowrap;
}

/* ── HAPPY HOURS ── */
.hh-section {
  background: rgba(197, 92, 10, 0.08);
  border-top: 0.5px solid rgba(197, 92, 10, 0.2);
  border-bottom: 0.5px solid rgba(197, 92, 10, 0.2);
}
.hh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.hh-left {
  padding: var(--section-space-tight) 4.5rem var(--section-space-tight) 3.5rem;
  border-right: 0.5px solid rgba(197, 92, 10, 0.2);
}
.hh-right {
  padding: var(--section-space-tight) 3.5rem var(--section-space-tight) 4.5rem;
}
.hh-big-time {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 200;
  color: var(--orange-light);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 1rem 0;
}
.hh-item {
  padding: 1.1rem 0;
  border-bottom: 0.5px solid rgba(197, 92, 10, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hh-item:first-child {
  border-top: 0.5px solid rgba(197, 92, 10, 0.15);
}
.hh-item-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  color: var(--white);
}
.hh-item-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}
.hh-item-price {
  font-size: 15px;
  color: var(--orange-light);
}

/* ── BAR PHILOSOPHY ── */
.bar-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 0.5px solid var(--border);
}
.bp-photo {
  min-height: 480px;
  background: var(--teal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bp-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 36px,
      rgba(237, 112, 20, 0.04) 36px,
      rgba(237, 112, 20, 0.04) 37px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 36px,
      rgba(237, 112, 20, 0.04) 36px,
      rgba(237, 112, 20, 0.04) 37px
    );
}
.bp-text {
  padding: var(--section-space-tight) 3.5rem var(--section-space-tight) 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 0.5px solid var(--border);
}

/* ── SPIRITS ── */
.spirits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
}
.spirit-cat {
  background: var(--teal-lift);
  padding: 2rem;
  border: 0.5px solid var(--border);
}
.spirit-cat-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.spirit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.spirit-list li {
  font-size: 15px;
  color: var(--text-muted);
}
.spirit-list li strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 15px;
}

@media (max-width: 900px) {
  .bar-hero {
    padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem;
  }
  .bar-hero-right {
    display: none;
  }
  .cocktail-category-header {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .hh-grid {
    grid-template-columns: 1fr;
  }
  .hh-left {
    padding: 4rem 1.5rem 3rem;
    border-right: none;
    border-bottom: 0.5px solid rgba(197, 92, 10, 0.2);
  }
  .hh-right {
    padding: 3rem 1.5rem 4rem;
  }
  .bar-philosophy {
    grid-template-columns: 1fr;
  }
  .bp-text {
    padding: 4rem 1.5rem;
    border-left: none;
    border-top: 0.5px solid var(--border);
  }
  .spirits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cocktail-full-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .cf-price {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .spirits-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== story ===== */

/* ── STORY HERO ── */
.story-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 0 3.5rem 6rem;
}
.story-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 5% 85%,
      rgba(237, 112, 20, 0.16) 0%,
      transparent 48%
    ),
    radial-gradient(
      ellipse at 95% 15%,
      rgba(13, 64, 56, 0.95) 0%,
      transparent 55%
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 55px,
      rgba(255, 255, 255, 0.014) 55px,
      rgba(255, 255, 255, 0.014) 56px
    );
}
.hero-logo-bg {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(38vw, 520px);
  opacity: 0.07;
  pointer-events: none;
}
.hero-logo-bg img {
  width: 100%;
  height: auto;
  filter: brightness(2);
}
.hero-chapter-tag {
  position: absolute;
  top: calc(var(--nav-h) + 4rem);
  right: 3.5rem;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0.55;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: sIn 0.7s 0.1s ease both;
}
.hero-kicker span {
  display: block;
  width: 36px;
  height: 0.5px;
  background: var(--orange);
}
.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 8.5vw, 112px);
  font-weight: 500;
  line-height: 0.96;
  color: var(--white);
  animation: sIn 0.85s 0.24s ease both;
}
.hero-h1 em {
  font-style: italic;
  color: var(--orange);
}
.hero-h1 .ind {
  padding-left: 4.5rem;
  display: block;
}
.hero-standfirst {
  margin-top: 2.5rem;
  max-width: 540px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  animation: sIn 0.85s 0.4s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 3.5rem;
  left: 3.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-subtle);
  animation: sIn 1s 0.85s ease both;
}
.hero-scroll-bar {
  width: 1px;
  height: 44px;
  background: rgba(237, 112, 20, 0.4);
  animation: scrollPulse 2s 1.5s ease infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes sIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── OPENING STATEMENT ── */
.opening {
  padding: var(--section-space) 3.5rem;
  border-top: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.opening-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--white);
}
.opening-quote em {
  font-style: italic;
  color: var(--orange);
}
.opening-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.88;
}
.opening-body p + p {
  margin-top: 1.2rem;
}

/* ── CHAPTERS ── */
.chapter {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 4rem;
  padding: var(--section-space-tight) 3.5rem;
  border-top: 0.5px solid var(--border);
}
.chapter-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  color: rgba(237, 112, 20, 0.1);
  letter-spacing: -0.03em;
  padding-top: 2px;
  user-select: none;
}
.ch-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
}
.ch-eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 0.5px;
  background: var(--orange);
  opacity: 0.6;
}
.chapter-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.chapter-title em {
  font-style: italic;
  color: var(--orange);
}
.chapter-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.88;
  max-width: 680px;
}
.chapter-body p + p {
  margin-top: 1.2rem;
}
.chapter-body strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

/* ── CHAPTER WITH PHOTO ── */
.chapter-with-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 0.5px solid var(--border);
}
.chapter-photo {
  background: var(--teal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.chapter-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 34px,
      rgba(255, 255, 255, 0.03) 34px,
      rgba(255, 255, 255, 0.03) 35px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 34px,
      rgba(255, 255, 255, 0.03) 34px,
      rgba(255, 255, 255, 0.03) 35px
    );
}
.chapter-photo-lbl {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
  padding: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.chapter-text-panel {
  padding: var(--section-space-tight) 4.5rem var(--section-space-tight) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 0.5px solid var(--border);
}
.chapter-text-panel.left-side {
  padding: var(--section-space-tight) 4rem var(--section-space-tight) 3.5rem;
  border-left: none;
  border-right: 0.5px solid var(--border);
}

/* ── STAT BAND ── */
.stat-band {
  background: var(--orange);
  padding: 4.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-num-big {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  display: block;
}
.stat-vdivider {
  width: 0.5px;
  background: rgba(255, 255, 255, 0.25);
  align-self: stretch;
}
.stat-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 360px;
  line-height: 1.5;
}
.stat-quote::before {
  content: "\201C";
  font-size: 64px;
  line-height: 0.6;
  color: rgba(255, 255, 255, 0.2);
  display: block;
  margin-bottom: 0.5rem;
  font-style: normal;
}

/* ── THREE VALUES (light BG) ── */
.values-section {
  background: var(--off-white);
  padding: var(--section-space) 3.5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-left: 0.5px solid rgba(2, 35, 30, 0.1);
}
.value-card {
  padding: 3rem 2.8rem;
  border-right: 0.5px solid rgba(2, 35, 30, 0.1);
  border-bottom: 0.5px solid rgba(2, 35, 30, 0.1);
  transition: background 0.25s;
}
.value-card:hover {
  background: rgba(237, 112, 20, 0.04);
}
.value-arch-icon {
  width: 40px;
  height: 52px;
  border: 1.5px solid rgba(237, 112, 20, 0.45);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.value-arch-icon svg {
  width: 16px;
  height: 16px;
}
.value-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}
.value-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--teal-dark);
  margin-bottom: 0.8rem;
  line-height: 1.15;
}
.value-body {
  font-size: 16px;
  color: var(--grey-teal);
  line-height: 1.8;
}

/* ── LOGO FEATURE ── */
.logo-feature {
  padding: var(--section-space) 3.5rem;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6rem;
  flex-wrap: wrap;
}
.logo-showcase {
  width: 240px;
  height: 240px;
  flex-shrink: 0;
  background: var(--teal-lift);
  border: 0.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
.logo-showcase img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── CLOSING CTA ── */
.story-cta {
  padding: var(--section-space) 3.5rem;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.story-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(237, 112, 20, 0.06) 0%,
    transparent 65%
  );
}
.cta-arch-deco {
  position: absolute;
  bottom: 0;
  border: 0.5px solid rgba(237, 112, 20, 0.07);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .story-hero {
    padding: 0 1.5rem 5rem;
  }
  .hero-chapter-tag,
  .hero-logo-bg {
    display: none;
  }
  .opening {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 5rem 1.5rem;
  }
  .chapter {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4rem 1.5rem;
  }
  .chapter-num {
    font-size: 52px;
    margin-bottom: 0.3rem;
  }
  .chapter-with-photo {
    grid-template-columns: 1fr;
  }
  .chapter-text-panel,
  .chapter-text-panel.left-side {
    padding: 4rem 1.5rem;
    border-left: none;
    border-right: none;
    border-top: 0.5px solid var(--border);
  }
  .stat-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 4rem 1.5rem;
  }
  .stat-vdivider {
    display: none;
  }
  .values-section {
    padding: 5rem 1.5rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .logo-feature {
    flex-direction: column;
    gap: 3rem;
    padding: 5rem 1.5rem;
    align-items: flex-start;
  }
  .story-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem;
  }
  .cta-arch-deco {
    display: none;
  }
}

/* ===== events ===== */

/* ── EVENT TYPES GRID ── */
.event-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  margin-top: 3.5rem;
}
.event-type-card {
  background: var(--teal-lift);
  border: 0.5px solid var(--border);
  padding: 2.75rem;
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.event-type-card:hover {
  background: rgba(237, 112, 20, 0.05);
  border-color: var(--border-mid);
}
.et-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0.5px solid var(--border-str);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
}
.et-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.et-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.et-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.et-detail {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.et-detail::before {
  content: "—";
  color: var(--orange);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── VENUE SPLIT ── */
.venue-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 0.5px solid var(--border);
}
.venue-photo {
  min-height: 520px;
  background: var(--teal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.venue-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 36px,
      rgba(237, 112, 20, 0.04) 36px,
      rgba(237, 112, 20, 0.04) 37px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 36px,
      rgba(237, 112, 20, 0.04) 36px,
      rgba(237, 112, 20, 0.04) 37px
    );
}
.venue-text {
  padding: var(--section-space) 3.5rem var(--section-space) 4.5rem;
  border-left: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.venue-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.5rem 0;
}
.venue-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 0.5px solid var(--border);
}
.venue-spec-row:first-child {
  border-top: 0.5px solid var(--border);
}
.vs-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.vs-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  color: var(--white);
}

/* ── ENQUIRY FORM ── */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  background: rgba(237, 112, 20, 0.05);
  border: 0.5px solid var(--border);
  border-radius: 3px;
  padding: 14px 16px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23b8811a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(237, 112, 20, 0.05);
  padding-right: 36px;
}
.field select option {
  background: #1a0f06;
}
.field textarea {
  resize: none;
  height: 100px;
  line-height: 1.6;
}
.form-submit {
  width: 100%;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: var(--orange);
  border: none;
  border-radius: 3px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover {
  background: var(--orange-light);
}
.form-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 900px) {
  .event-types-grid {
    grid-template-columns: 1fr;
  }
  .venue-split {
    grid-template-columns: 1fr;
  }
  .venue-text {
    padding: 4rem 1.5rem;
    border-left: none;
    border-top: 0.5px solid var(--border);
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ===== careers ===== */

/* ── WHY WORK HERE ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3.5rem;
}
.why-card {
  background: var(--teal-lift);
  border: 0.5px solid var(--border);
  padding: 2.75rem;
  transition: background 0.3s;
}
.why-card:hover {
  background: rgba(237, 112, 20, 0.05);
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0.5px solid var(--border-str);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.why-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.why-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── ROLES ── */
.roles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}
.role-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 1.75rem 0;
  border-bottom: 0.5px solid var(--border);
  gap: 2rem;
  align-items: start;
  cursor: pointer;
  transition: background 0.2s;
}
.role-row:first-child {
  border-top: 0.5px solid var(--border);
}
.role-row:hover {
  background: rgba(237, 112, 20, 0.03);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.role-dept {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}
.role-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 6px;
}
.role-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.role-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 3px 9px;
  border: 0.5px solid var(--border);
  border-radius: 2px;
}
.role-tag.open {
  border-color: rgba(97, 168, 90, 0.35);
  color: rgba(97, 168, 90, 0.75);
}
.role-tag.soon {
  border-color: var(--border-str);
  color: var(--orange);
}
.role-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 8px;
  max-width: 640px;
}
.role-apply {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  padding-top: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: gap 0.2s;
  align-self: center;
}
.role-apply:hover {
  gap: 12px;
}
.role-apply::after {
  content: "→";
}

/* ── CULTURE SPLIT ── */
.culture-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 0.5px solid var(--border);
}
.culture-photo {
  min-height: 500px;
  background: var(--teal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.culture-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 36px,
      rgba(237, 112, 20, 0.04) 36px,
      rgba(237, 112, 20, 0.04) 37px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 36px,
      rgba(237, 112, 20, 0.04) 36px,
      rgba(237, 112, 20, 0.04) 37px
    );
}
.culture-text {
  padding: var(--section-space) 3.5rem var(--section-space) 4.5rem;
  border-left: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.culture-values {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.5rem 0;
}
.value-row {
  display: flex;
  gap: 1.4rem;
  padding: 1.3rem 0;
  border-bottom: 0.5px solid var(--border);
  align-items: flex-start;
}
.value-row:first-child {
  border-top: 0.5px solid var(--border);
}
.value-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  color: rgba(237, 112, 20, 0.2);
  flex-shrink: 0;
  width: 40px;
}
.value-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--grey-teal);
  margin-bottom: 3px;
}
.value-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── PERKS ── */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  margin-top: 2.5rem;
}
.perk-card {
  background: var(--teal-lift);
  border: 0.5px solid var(--border);
  padding: 2.3rem 2rem;
  text-align: center;
}
.perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0.5px solid var(--border-str);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.perk-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.perk-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── APPLICATION FORM ── */
.application-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  background: rgba(237, 112, 20, 0.05);
  border: 0.5px solid var(--border);
  border-radius: 3px;
  padding: 14px 16px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: rgba(237, 112, 20, 0.09);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23b8811a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(237, 112, 20, 0.05);
  padding-right: 36px;
  cursor: pointer;
}
.field select option {
  background: #1a0f06;
  color: var(--white);
}
.field textarea {
  resize: none;
  height: 110px;
  line-height: 1.6;
}

/* File upload */
.file-upload-wrapper {
  background: rgba(237, 112, 20, 0.05);
  border: 0.5px dashed var(--border-str);
  border-radius: 3px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.file-upload-wrapper:hover {
  background: rgba(237, 112, 20, 0.09);
  border-color: var(--orange);
}
.file-upload-wrapper input[type="file"] {
  display: none;
}
.file-upload-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  display: block;
}
.file-upload-label strong {
  color: var(--orange);
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 5px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0;
}
.file-name {
  font-size: 14px;
  color: var(--orange-light);
  margin-top: 8px;
  min-height: 18px;
}

.form-submit {
  width: 100%;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: var(--orange);
  border: none;
  border-radius: 3px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover {
  background: var(--orange-light);
}
.form-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
  line-height: 1.65;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .perks-grid {
    grid-template-columns: 1fr 1fr;
  }
  .culture-split {
    grid-template-columns: 1fr;
  }
  .culture-text {
    padding: 4rem 1.5rem;
    border-left: none;
    border-top: 0.5px solid var(--border);
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .perks-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== contact ===== */

/* ── CONTACT HERO ── */
.contact-hero {
  padding: calc(var(--nav-h) + 4.5rem) 3.5rem 4.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 0.5px solid var(--border);
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      ellipse at 0% 100%,
      rgba(237, 112, 20, 0.14) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 100% 0%,
      rgba(13, 64, 56, 0.9) 0%,
      transparent 55%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 52px,
      rgba(255, 255, 255, 0.015) 52px,
      rgba(255, 255, 255, 0.015) 53px
    );
}
.contact-hero-inner {
  position: relative;
  max-width: 680px;
  animation: cIn 0.8s 0.1s ease both;
}
@keyframes cIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── MAIN CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 0;
}

/* ── LEFT PANEL ── */
.contact-left {
  padding: var(--section-space-tight) 4.5rem var(--section-space-tight) 3.5rem;
  border-right: 0.5px solid var(--border);
}

.info-block {
  margin-bottom: 3.5rem;
}
.info-block:last-child {
  margin-bottom: 0;
}
.info-block-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}
.info-block-label::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: var(--border);
}
.info-block-primary {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 6px;
}
.info-block-secondary {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.info-link {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  line-height: 1.5;
}
.info-link:hover {
  color: var(--orange);
}
.info-link-sm {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.info-link-sm:hover {
  color: var(--orange);
}

/* Hours cards */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hours-card {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color 0.2s;
}
.hours-card:hover {
  border-color: rgba(237, 112, 20, 0.3);
}
.hours-card-day {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 7px;
}
.hours-card-time {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
}
.hours-card-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.hours-card.hh {
  background: rgba(237, 112, 20, 0.08);
  border-color: rgba(237, 112, 20, 0.25);
}
.hours-card.hh .hours-card-day {
  color: var(--orange-light);
}

/* Google Map embed */
.map-wrap {
  margin-top: 2.8rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 0.5px solid var(--border);
  height: 230px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--teal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 26px,
      rgba(255, 255, 255, 0.03) 26px,
      rgba(255, 255, 255, 0.03) 27px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 26px,
      rgba(255, 255, 255, 0.03) 26px,
      rgba(255, 255, 255, 0.03) 27px
    );
}
.map-placeholder-inner {
  position: relative;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.map-placeholder-inner svg {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto 10px;
  opacity: 0.35;
}

/* Social */
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.social-btn {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 0.5px solid var(--border);
  border-radius: 2px;
  padding: 8px 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ── RIGHT PANEL — BOOKING + FORM ── */
.contact-right {
  padding: var(--section-space-tight) 3.5rem var(--section-space-tight) 4.5rem;
}

.right-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.right-section-title em {
  font-style: italic;
  color: var(--orange);
}
.right-section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

/* OpenTable widget box */
.opentable-box {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  transition: border-color 0.2s;
}
.opentable-box:hover {
  border-color: rgba(237, 112, 20, 0.3);
}
.ot-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}
.ot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.ot-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ot-note {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.ot-note code {
  font-family: monospace;
  font-size: 13px;
  background: rgba(237, 112, 20, 0.1);
  color: var(--orange);
  padding: 2px 6px;
  border-radius: 2px;
  font-style: normal;
}
.btn-ot-book {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius);
  padding: 13px 30px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ot-book:hover {
  background: var(--orange-light);
}

/* Form divider */
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.8rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: var(--border);
}

/* Form layout */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-privacy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  line-height: 1.65;
}

/* ── BOTTOM INFO STRIP (orange BG) ── */
.contact-strip {
  background: var(--orange);
  padding: 3.25rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.strip-item {
}
.strip-item-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}
.strip-item-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}
.strip-item-val a {
  color: var(--white);
  text-decoration: none;
}
.strip-divider {
  width: 0.5px;
  background: rgba(255, 255, 255, 0.25);
  align-self: stretch;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .contact-hero {
    padding: calc(var(--nav-h) + 3.5rem) 1.5rem 4rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-left {
    padding: 4rem 1.5rem 3rem;
    border-right: none;
    border-bottom: 0.5px solid var(--border);
  }
  .contact-right {
    padding: 3.5rem 1.5rem 5rem;
  }
  .hours-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .contact-strip {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
  .strip-divider {
    display: none;
  }
}
@media (max-width: 480px) {
  .hours-grid {
    grid-template-columns: 1fr;
  }
}
