/* ============== TOKENS ============== */
:root {
  --cream:        #F8F5E6;
  --cream-2:      #FFFCF1;
  --mustard:      #E5A82B;
  --mustard-dk:   #C68E1A;
  --mustard-lt:   #F0C260;
  --charcoal:     #2B2B2B;
  --gray:         #5C5C5C;
  --gray-lt:      #9A9A9A;
  --line:         #E8DDB8;
  --shadow:       0 10px 30px rgba(43, 43, 43, 0.08);
  --shadow-lg:    0 20px 60px rgba(43, 43, 43, 0.12);
  --serif:        'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script:       'Dancing Script', cursive;
  --maxw:         1200px;
}

/* ============== RESET ============== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--mustard-dk); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

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

.eyebrow {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mustard-dk);
  margin-bottom: .8rem;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-block;
  padding: .95rem 1.8rem;
  background: var(--mustard);
  color: #fff;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--mustard);
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
  text-transform: uppercase;
}
.btn:hover {
  background: var(--mustard-dk);
  border-color: var(--mustard-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 168, 43, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
  box-shadow: 0 8px 20px rgba(43, 43, 43, 0.25);
}
.btn-small { padding: .55rem 1.2rem; font-size: .8rem; }
.btn-block { width: 100%; }

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(248, 245, 230, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: .5rem 0;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 130px; transition: height .3s ease; }
.nav.scrolled .nav-logo img { height: 95px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--mustard);
  transition: width .25s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  transition: all .25s;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(229, 168, 43, 0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(229, 168, 43, 0.10), transparent 50%),
    var(--cream);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(229,168,43,0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
}
.hero-content {
  position: relative;
  max-width: 820px;
  animation: fadeUp 1s ease;
}
.hero-logo {
  display: block;
  height: 560px;
  width: auto;
  max-width: 90vw;
  margin: -5rem auto -7rem;
  filter: drop-shadow(0 14px 40px rgba(229, 168, 43, 0.3));
}
.hero h1 {
  margin: .8rem 0 1.2rem;
  font-weight: 700;
}
.hero-tagline {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2.2rem;
  font-style: italic;
  font-family: var(--serif);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--mustard-dk);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* ============== ABOUT ============== */
.about { background: var(--cream-2); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about .lead {
  font-size: 1.1rem;
  color: var(--gray);
  margin: 1.2rem 0;
}
.about p { color: var(--gray); }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--mustard-dk);
  line-height: 1;
}
.stat .label {
  font-size: .82rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: .4rem;
}
.about-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border: 2px solid var(--mustard);
  border-radius: 18px;
  z-index: -1;
  opacity: 0.4;
}
.about-card h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--mustard);
  display: inline-block;
}
.about-card ul li {
  padding: .6rem 0 .6rem 1.8rem;
  position: relative;
  color: var(--gray);
  border-bottom: 1px dashed var(--line);
}
.about-card ul li:last-child { border-bottom: none; }
.about-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--mustard);
  font-size: 1rem;
}

/* ============== MENU ============== */
.menu { background: var(--cream); }
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head h2 { margin-bottom: .8rem; }
.section-head .sub {
  color: var(--gray);
  font-size: 1.05rem;
  font-style: italic;
  font-family: var(--serif);
}
.section-head.light h2 { color: var(--cream); }
.section-head.light .eyebrow { color: var(--mustard-lt); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}
.menu-card {
  background: var(--cream-2);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  transition: all .35s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}
.menu-card.in { opacity: 1; transform: translateY(0); }
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mustard);
}
.menu-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--mustard);
  color: var(--charcoal);
}
.menu-card ul li {
  padding: .5rem 0 .5rem 1.4rem;
  font-size: .95rem;
  color: var(--gray);
  position: relative;
  border-bottom: 1px dashed var(--line);
}
.menu-card ul li:last-child { border-bottom: none; }
.menu-card ul li::before {
  content: '•';
  color: var(--mustard);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
  top: .55rem;
}

.menu-cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.menu-cta p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

/* ============== STATIONS ============== */
.stations {
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
}
.stations::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(229,168,43,0.12), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(229,168,43,0.08), transparent 60%);
}
.stations .container { position: relative; }
.feature-card {
  background: rgba(248, 245, 230, 0.05);
  border: 1px solid rgba(229, 168, 43, 0.3);
  border-radius: 16px;
  padding: 2.8rem 2.4rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: all .5s ease;
}
.feature-card.in { opacity: 1; transform: translateY(0); }
.feature-card h3 {
  color: var(--mustard-lt);
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.card-sub {
  color: rgba(248, 245, 230, 0.6);
  font-style: italic;
  font-family: var(--serif);
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(229, 168, 43, 0.2);
}
.check-list li {
  padding: .65rem 0 .65rem 2rem;
  position: relative;
  color: var(--cream);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--mustard);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  top: .55rem;
}

/* ============== GALLERY ============== */
.pictures { background: var(--cream); }
.pictures-page { padding-top: 10rem; min-height: calc(100vh - 200px); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--cream-2);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
  border: 1px solid var(--line);
}
.gallery-item.in { opacity: 1; transform: translateY(0); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(43, 43, 43, 0.5));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--mustard);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.video-item {
  aspect-ratio: 16 / 9;
  cursor: default;
}
.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.video-item:hover { box-shadow: var(--shadow-lg); border-color: var(--mustard); }
.video-item::after { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(248, 245, 230, 0.1);
  border: 1px solid rgba(248, 245, 230, 0.3);
  color: var(--cream);
  cursor: pointer;
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  backdrop-filter: blur(8px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--mustard);
  border-color: var(--mustard);
  color: #fff;
}
.lb-close { top: 1.5rem; right: 1.5rem; font-size: 1.8rem; }
.lb-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .lb-close { top: .8rem; right: .8rem; width: 44px; height: 44px; }
  .lb-prev  { left: .5rem; width: 44px; height: 44px; }
  .lb-next  { right: .5rem; width: 44px; height: 44px; }
}

/* ============== CONTACT ============== */
.contact { background: var(--cream-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-block {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: all .3s ease;
  opacity: 0;
  transform: translateX(-20px);
}
.info-block.in { opacity: 1; transform: translateX(0); }
.info-block:hover {
  border-color: var(--mustard);
  box-shadow: var(--shadow);
  transform: translateX(0) translateY(-2px);
}
.info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--mustard);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; }
.info-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-lt);
  margin-bottom: .25rem;
  font-weight: 600;
}
.info-block a, .info-block span {
  color: var(--charcoal);
  font-weight: 500;
}

.contact-form {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label {
  display: block;
  margin-bottom: 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: .5rem;
  padding: .85rem 1rem;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--charcoal);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--mustard);
  box-shadow: 0 0 0 3px rgba(229, 168, 43, 0.15);
}
.contact-form textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: .85rem;
  color: var(--gray);
  margin-top: 1rem;
  font-style: italic;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.terms {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--cream);
  border-left: 4px solid var(--mustard);
  border-radius: 8px;
}
.terms h4 {
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.terms ul li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  color: var(--gray);
  font-size: .92rem;
}
.terms ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--mustard);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
}
.footer-brand img {
  height: 100px;
  filter: brightness(1.05);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--mustard-lt);
  font-size: 1.1rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-cols h5 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mustard-lt);
  margin-bottom: 1.2rem;
}
.footer-cols a {
  display: block;
  padding: .35rem 0;
  color: rgba(248, 245, 230, 0.75);
  font-size: .92rem;
}
.footer-cols a:hover { color: var(--mustard-lt); }
.footer-bottom {
  border-top: 1px solid rgba(248, 245, 230, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(248, 245, 230, 0.5);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 880px) {
  .section { padding: 4rem 0; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-brand img { margin: 0 auto 1rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease, box-shadow .3s ease;
  }
  .nav-links.open {
    max-height: 500px;
    padding: 1rem 0;
    box-shadow: var(--shadow);
  }
  .nav-links a { padding: 1rem 1.5rem; width: 100%; }
  .hero-logo { height: 250px; margin-bottom: -0.5rem; }
  .hero-meta { gap: 1rem; font-size: .75rem; }
  .stats { grid-template-columns: 1fr; gap: 1rem; }
  .contact-form .row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; padding: 0 2rem; }
  .footer-cols { grid-template-columns: 1fr; }
}
