:root {
  --forest: #022e21;
  --forest-deep: #011b15;
  --mint: #a8c8ba;
  --cream: #f9e7c9;
  --paper: #fffaf0;
  --gold: #c89c47;
  --red: #a9322a;
  --ink: #1d201b;
  --muted: #6f6a5e;
  --line: rgba(2, 46, 33, 0.18);
  --shadow: 0 24px 70px rgba(1, 27, 21, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Almarai", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
blockquote p,
.brand {
  font-family: "Ovo", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

p,
blockquote,
li {
  text-wrap: pretty;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 3vw, 46px);
  color: var(--cream);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(2, 46, 33, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

body.about-page .site-header {
  background: rgba(2, 46, 33, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--mint);
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  line-height: 1;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(44px, 6vw, 56px);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.footer-logo {
  display: block;
  width: auto;
  height: clamp(48px, 7vw, 64px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--mint);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 239, 225, 0.5);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 120px 22px 78px;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest);
  color: var(--cream);
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(2, 46, 33, 0.68), rgba(1, 27, 21, 0.9)),
    radial-gradient(circle at 20% 20%, rgba(168, 200, 186, 0.22), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(201, 61, 44, 0.18), transparent 30%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.hero-content {
  width: min(980px, 100%);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--mint);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.88;
}

.hero-copy {
  max-width: 690px;
  margin: 0 auto 32px;
  color: rgba(245, 239, 225, 0.9);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--cream);
}

.button-secondary {
  border-color: rgba(245, 239, 225, 0.7);
  background: transparent;
  color: var(--cream);
}

.menu-section .button-secondary,
.visit-section .button-secondary {
  border-color: var(--forest);
  color: var(--forest);
}

.button:hover {
  transform: translateY(-1px);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translateX(-50%);
  color: var(--mint);
  text-decoration: none;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  inset: 2px 6px 6px 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-section,
.menu-section,
.visit-section {
  padding: clamp(72px, 10vw, 130px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  justify-items: start;
}

.intro-grid h2,
.section-heading h2,
.visit-copy h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(2.35rem, 5vw, 5.7rem);
  line-height: 0.98;
}

.intro-copy {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
}

.intro-copy p:last-child,
.visit-copy p:last-child,
.hours-block p:last-child {
  margin-bottom: 0;
}

.showcase-section {
  padding: 54px 0 clamp(72px, 10vw, 120px);
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
}

.marquee {
  margin-bottom: 54px;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: drift 20s linear infinite;
  will-change: transform;
  align-items: center;
}

.marquee-track img {
  height: auto;
  width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 300ms ease;
  cursor: pointer;
}

.marquee-track img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(1, 27, 21, 0.35);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

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

.feature-grid {
  column-count: 3;
  column-gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.feature-grid article {
  break-inside: avoid;
  margin-bottom: 20px;
}

.feature-tile {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(245, 239, 225, 0.04);
}

.feature-tile span {
  margin-bottom: auto;
  color: var(--gold);
  font-weight: 700;
}

.feature-tile h3 {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  line-height: 1.02;
}

.feature-tile p {
  margin-bottom: 0;
  color: rgba(245, 239, 225, 0.78);
}

.tile-square {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

.tile-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tile-square img:hover {
  transform: scale(1.04);
}

.tile-tall {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  aspect-ratio: 1 / 1.35;
  border-radius: 12px;
}

.tile-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tile-tall img:hover {
  transform: scale(1.04);
}

.feature-tile.accent {
  background: var(--red);
}

.feature-tile.accent h3 {
  color: var(--cream);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.menu-tab {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--forest);
  font-family: inherit;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-tab.active {
  background: var(--forest);
  color: var(--cream);
}

.menu-panel {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 38px;
  border-top: 1px solid var(--line);
}

.menu-panel.active {
  display: grid;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item h3 {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.04;
}

.menu-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-item span {
  color: var(--red);
  font-weight: 700;
}

.menu-note {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
}

.about-page {
  background: var(--cream);
}

.about-hero {
  padding: 150px 0 clamp(72px, 10vw, 128px);
  background: radial-gradient(circle at top left, rgba(168, 200, 186, 0.34), transparent 34%);
}

/* Center single-column hero on about page and make it span full width */
.about-hero .section-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 3vw, 46px);
  padding-right: clamp(18px, 3vw, 46px);
  box-sizing: border-box;
}

/* Hero copy: centered, constrained for readability */
.about-hero .about-hero-copy {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.about-hero .about-hero-copy h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.7rem);
  line-height: 1.02;
  margin-bottom: 18px;
  color: var(--forest);
}

.about-hero .about-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 70ch;
  margin: 0 auto;
}

/* Center hero action buttons */
.about-hero .about-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.about-hero-copy h1 {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: 0.94;
}

.about-lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-card,
.about-story-panel,
.about-value-card {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: var(--shadow);
}

.about-card {
  padding: clamp(24px, 4vw, 42px);
}

.about-card-emphasis {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  background: var(--forest);
  color: var(--cream);
}

.about-card-emphasis .eyebrow {
  color: var(--mint);
}

.about-card-emphasis p:last-child {
  margin-bottom: 0;
  color: rgba(245, 239, 225, 0.84);
  font-size: 1.05rem;
}

.about-story {
  padding: 0 0 clamp(68px, 9vw, 120px);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-story-panel {
  padding: clamp(24px, 4vw, 44px);
}

.about-story-panel h2 {
  margin-bottom: 16px;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.about-story-panel p:last-child {
  margin-bottom: 0;
}

.about-story-list ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.about-story-list li+li {
  margin-top: 12px;
}

.about-values {
  padding: clamp(58px, 8vw, 100px) 0;
  background: var(--forest);
  color: var(--cream);
}

.about-values .section-heading h2 {
  color: var(--mint);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-value-card {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(245, 239, 225, 0.05);
  border-color: rgba(168, 200, 186, 0.24);
}

.about-value-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 700;
}

.about-value-card h3 {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.06;
}

.about-value-card p {
  margin-bottom: 0;
  color: rgba(245, 239, 225, 0.78);
}

.about-cta {
  padding: clamp(64px, 9vw, 110px) 0;
  background: var(--cream);
}

.about-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.about-cta h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(2.1rem, 4.5vw, 4.6rem);
  line-height: 1;
  max-width: 12ch;
}

.quote-section {
  padding: clamp(58px, 8vw, 98px) 0;
  background: var(--forest-deep);
  color: var(--cream);
}

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

blockquote {
  margin: 0;
  padding: clamp(26px, 4vw, 44px);
  border-left: 3px solid var(--gold);
  background: rgba(245, 239, 225, 0.04);
}

blockquote p {
  margin-bottom: 18px;
  color: var(--mint);
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1.08;
}

cite {
  color: rgba(245, 239, 225, 0.7);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.visit-section {
  background: var(--paper);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: stretch;
}

.visit-copy,
.hours-block {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}

address {
  margin: 28px 0;
  color: var(--muted);
  font-style: normal;
}

.visit-copy a {
  color: var(--forest);
  text-decoration-color: rgba(2, 46, 33, 0.28);
  text-underline-offset: 4px;
}

.hours-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--forest);
  color: var(--cream);
}

.hours-block h3 {
  margin-bottom: 18px;
  color: var(--mint);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
}

.hours-block p {
  color: rgba(245, 239, 225, 0.82);
}

.hours-block .visit-actions {
  justify-content: flex-start;
  margin-top: 22px;
}

.site-footer {
  padding: 36px 0;
  background: #000;
  color: rgba(245, 239, 225, 0.72);
}

.footer-visit {
  padding: clamp(36px, 6vw, 72px) 0;
  background: #000;
  /* match .site-footer */
  color: rgba(245, 239, 225, 0.9);
}

.footer-visit .visit-copy {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  color: rgba(245, 239, 225, 0.9);
}

.footer-visit .visit-copy a {
  color: var(--mint);
  text-decoration: none;
}

.footer-visit .visit-copy address {
  color: rgba(245, 239, 225, 0.84);
}

.footer-visit .hours-block {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(18px, 3vw, 28px);
}

.footer-visit .hours-block a {
  color: var(--cream);
}

/* Typography & colors for footer visit block */
.footer-visit .visit-copy .eyebrow {
  color: var(--red);
  font-weight: 700;
}

.footer-visit .visit-copy h2 {
  color: var(--mint);
  margin: 6px 0 12px;
}

.footer-visit .visit-copy p,
.footer-visit .visit-copy address {
  color: rgba(245, 239, 225, 0.9);
}

/* Highlight hours heading and times */
.footer-visit .hours-block h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-visit .hours-block p {
  color: var(--mint);
  margin: 6px 0;
}

.footer-visit .visit-actions .button-primary {
  background: var(--red);
  color: var(--cream);
}

.footer-visit .visit-actions .button-secondary {
  border-color: rgba(245, 239, 225, 0.6);
  color: rgba(245, 239, 225, 0.9);
}

/* Footer map styles */
.footer-map {
  margin-top: 22px;
}

#chor-map {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 620px) {
  #chor-map {
    height: 200px;
  }
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
}

.footer-inner p {
  margin-bottom: 0;
  color: var(--mint);
  font-family: "Ovo", Georgia, serif;
  font-size: 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.social-links a {
  color: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.social-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(245, 239, 225, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 239, 225, 0.5);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 100;
    /* Stay on top of the sliding menu drawer */
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60vw;
    max-width: 320px;
    min-width: 250px;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 110px 24px 40px;
    /* Space at top to clear the header/toggle button */
    background: rgba(2, 46, 33, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: -10px 0 40px rgba(1, 27, 21, 0.35);
    border-left: 1px solid rgba(168, 200, 186, 0.15);

    /* Animation Setup: Slide from the right */
    opacity: 1;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 400ms;
    z-index: 99;
  }

  .site-header.menu-active .site-nav {
    visibility: visible;
    transform: translateX(0);
  }

  .site-header.menu-active .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.menu-active .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav a {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(168, 200, 186, 0.12);
    font-size: 0.92rem;
    letter-spacing: 0.05em;

    /* Staggered entrance animation: slide from right */
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 350ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-header.menu-active .site-nav a {
    opacity: 1;
    transform: translateX(0);
  }

  /* Delays for each link to animate sequentially when drawer opens */
  .site-header.menu-active .site-nav a:nth-child(1) {
    transition-delay: 100ms;
  }

  .site-header.menu-active .site-nav a:nth-child(2) {
    transition-delay: 150ms;
  }

  .site-header.menu-active .site-nav a:nth-child(3) {
    transition-delay: 200ms;
  }

  .site-header.menu-active .site-nav a:nth-child(4) {
    transition-delay: 250ms;
  }

  .intro-grid,
  .about-hero-grid,
  .about-story-grid,
  .about-values-grid,
  .visit-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    column-gap: 12px;
  }

  .feature-grid article {
    margin-bottom: 12px;
  }

  .menu-panel.active {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 88vh;
    padding-top: 105px;
  }

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

  .hero-actions,
  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1160px);
  }

  .feature-grid {
    column-gap: 8px;
  }

  .feature-grid article {
    margin-bottom: 8px;
  }

  .about-hero {
    padding-top: 120px;
  }

  .about-hero-copy h1 {
    max-width: none;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  /* Keep original tall/square aspect ratios on mobile views */

  .section-heading,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .visit-copy,
  .hours-block {
    padding: 24px;
  }
}