/* ============ Tokens ============ */
:root {
  --green-deep: #0c4a2c;
  --green: #1d8f4f;
  --green-bright: #34b56a;
  --cream: #fbf2d9;
  --cream-soft: #fdf8ea;
  --orange: #f2891d;
  --orange-deep: #d9700a;
  --yellow: #ffc83d;
  --ink: #13251a;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --max-width: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background: var(--cream-soft);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  margin: 0 0 0.5em;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p { max-width: 65ch; }

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

.icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  fill: currentColor;
  flex-shrink: 0;
  vertical-align: -0.2em;
}

a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-deep);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}
.section-title--light { color: var(--white); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
  border: 2px solid transparent;
}
.btn:active { transform: scale(0.97); }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(217, 112, 10, 0.35);
}
.btn-primary:hover { background: var(--orange-deep); }

.btn-ghost {
  background: transparent;
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.btn-ghost:hover { background: rgba(12, 74, 44, 0.08); }

.btn-ghost--light {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn-ghost--light:hover { background: rgba(255, 255, 255, 0.12); }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 74, 44, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 68px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
}
.logo-paradise {
  color: var(--yellow);
  font-weight: 500;
  text-transform: lowercase;
}
.logo-subs {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.primary-nav {
  display: flex;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}
.primary-nav a {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 200ms var(--ease);
}
.primary-nav a:hover { color: var(--yellow); }

.nav-cta { padding: 0.7rem 1.3rem; font-size: 0.9rem; flex-shrink: 0; min-height: 44px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.18); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1.5rem 1.25rem;
  background: rgba(12, 74, 44, 0.97);
}
.mobile-nav a {
  color: var(--cream);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-nav .btn {
  margin-top: 0.85rem;
  justify-content: center;
  border-bottom: none;
}
.mobile-nav.is-open { display: flex; }

@media (max-width: 860px) {
  .primary-nav,
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-still,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-still { z-index: 0; }

.hero-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms var(--ease);
}
.hero-video.is-playing { opacity: 1; }

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 40, 24, 0.55) 0%, rgba(8, 40, 24, 0.72) 55%, rgba(8, 40, 24, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  text-align: center;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4rem);
  text-wrap: balance;
}

.hero-sub {
  color: var(--cream);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 50ch;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.hero-actions .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.hero-leaf {
  position: absolute;
  z-index: 1;
  width: 320px;
  height: 320px;
  opacity: 0.18;
  background: radial-gradient(circle, var(--green-bright) 0%, transparent 70%);
  pointer-events: none;
}
.hero-leaf-left { top: -80px; left: -100px; }
.hero-leaf-right { bottom: -100px; right: -80px; }

/* ============ Story ============ */
.story { padding: 6rem 0; background: var(--cream-soft); }

.story-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.story-media img {
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(12, 74, 44, 0.18);
}

.story-copy h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  color: var(--green-deep);
}

.story-copy p { color: #344739; }

.story-stat {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.story-stat-number {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
}
.story-stat-label {
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.9rem;
}
.story-stat-label i { color: var(--yellow); }

@media (max-width: 760px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-media img { aspect-ratio: 16 / 10; }
}

/* ============ Menu ============ */
.menu { padding: 6rem 0; background: var(--green-deep); }
.menu .section-title { color: var(--white); }

.menu-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.menu-feature-card {
  background: var(--cream-soft);
  border: 2px solid rgba(12, 74, 44, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.menu-feature-card h3 {
  color: var(--green-deep);
  font-size: 1.5rem;
}

.menu-feature-note {
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.menu-table { width: 100%; border-collapse: collapse; }
.menu-table th, .menu-table td {
  text-align: left;
  padding: 0.6rem 0.4rem;
  font-size: 0.95rem;
}
.menu-table thead th {
  color: var(--green);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--cream);
}
.menu-table tbody th { font-weight: 700; color: var(--ink); }
.menu-table tbody td { font-variant-numeric: tabular-nums; color: var(--ink); }
.menu-table tbody tr:not(:last-child) { border-bottom: 1px solid rgba(12, 74, 44, 0.08); }

.menu-feature-card--specialty {
  background: var(--orange);
  border-color: rgba(255, 255, 255, 0.5);
}
.menu-feature-card--specialty h3,
.menu-feature-card--specialty .menu-feature-note { color: var(--white); }
.menu-feature-card--specialty .menu-feature-note { color: rgba(255,255,255,0.85); }
.menu-feature-card--specialty .menu-table thead th { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.25); }
.menu-feature-card--specialty .menu-table tbody th,
.menu-feature-card--specialty .menu-table tbody td { color: var(--white); }
.menu-feature-card--specialty .menu-table tbody tr:not(:last-child) { border-bottom-color: rgba(255,255,255,0.15); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.menu-block {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.menu-block h4 {
  color: var(--yellow);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.menu-block h4 small {
  font-family: 'Nunito', sans-serif;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
}
.menu-block ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.menu-block ul li {
  display: flex;
  justify-content: space-between;
  color: var(--cream);
  font-size: 0.95rem;
}
.menu-block ul li span:last-child { font-variant-numeric: tabular-nums; color: var(--white); font-weight: 700; }

.menu-block-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.menu-block-tags li {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--cream);
}

.menu-block-footnote {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(251, 242, 217, 0.75);
}

@media (max-width: 900px) {
  .menu-featured { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ============ Gallery ============ */
.gallery { padding: 6rem 0; background: var(--cream-soft); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  grid-column: span 2;
}
.gallery-item--tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 4/3; }
}

/* ============ Reviews ============ */
.reviews { padding: 6rem 0; background: var(--green-deep); }
.reviews .section-title { color: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  margin: 0;
  padding: 2rem;
  border-top: 3px solid var(--yellow);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
}
.review-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.review-stars .icon { width: 1.3em; height: 1.3em; }
.review-card p {
  color: var(--cream);
  font-size: 1.05rem;
  font-style: italic;
}
.review-card footer {
  margin-top: 1rem;
  color: var(--yellow);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============ Visit ============ */
.visit { background: var(--ink); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.visit-info {
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-info address {
  font-style: normal;
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.visit-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--yellow);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hours-table {
  width: 100%;
  max-width: 320px;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.hours-table tr { border-bottom: 1px solid rgba(251, 242, 217, 0.12); }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--cream);
}
.hours-table th { font-weight: 600; color: var(--white); }
.hours-table td { text-align: right; font-variant-numeric: tabular-nums; }

.visit-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 420px;
}

@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-info { padding: 3.5rem 1.5rem; }
  .visit-map iframe { min-height: 320px; }
}

/* ============ Footer ============ */
.site-footer { background: var(--green-deep); padding: 3rem 0; }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.logo--footer { font-size: 1.6rem; }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.3rem;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.footer-social a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-fine { color: rgba(251, 242, 217, 0.65); font-size: 0.85rem; margin: 0; }

/* ============ Scroll reveal ============ */
/* Visible by default: JS arms the hidden starting state only once it can
   guarantee the IntersectionObserver will fire. No JS / no support = no hidden content. */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.reveal-armed {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.reveal-armed.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal.reveal-armed {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .gallery-item img { transition: none; }
  .btn { transition: none; }
}
