/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --cream-50: #faf9f6;
  --cream-100: #f5f3ee;
  --cream-200: #ebe7dd;
  --cream-300: #e0dbd0;
  --gold: #c8a84e;
  --gold-light: #d4b962;
  --text-dark: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-light: #6b6b6b;
  --text-on-dark: #f5f3ee;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream-50);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

/* ===== SECTION SHARED ===== */
.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--emerald-900);
  margin-bottom: 1.5rem;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-200);
  transition: box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(6, 78, 59, 0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--emerald-900);
  letter-spacing: 0.01em;
}

.nav-logo-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--emerald-700);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--emerald-800);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  color: var(--cream-50) !important;
  background: var(--emerald-800);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--emerald-700) !important;
  color: var(--cream-50) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--emerald-900);
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(6, 78, 59, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero-left {
  padding-right: 2rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--emerald-900);
  margin-bottom: 2rem;
}

.hero-headline .line {
  display: block;
}

.hero-headline .line:not(:last-child) {
  border-bottom: 1px solid var(--cream-300);
  padding-bottom: 0.3rem;
  margin-bottom: 0.3rem;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--emerald-800);
  color: var(--cream-50);
}

.btn-primary:hover {
  background: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--emerald-800);
  border: 1px solid var(--emerald-800);
}

.btn-ghost:hover {
  background: var(--emerald-800);
  color: var(--cream-50);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: 0.82rem;
}

/* Hero image stack */
.hero-right {
  position: relative;
  height: clamp(500px, 70vh, 720px);
}

.hero-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6, 78, 59, 0.12);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.hero-img:hover img {
  transform: scale(1.03);
}

.hero-img--primary {
  width: 72%;
  top: 0;
  right: 0;
  aspect-ratio: 3/4;
  z-index: 2;
}

.hero-img--secondary {
  width: 55%;
  bottom: 18%;
  left: 0;
  aspect-ratio: 4/3;
  z-index: 3;
  border: 4px solid var(--cream-50);
}

.hero-img--tertiary {
  width: 42%;
  bottom: 0;
  right: 8%;
  aspect-ratio: 3/2;
  z-index: 1;
}

/* Hero divider + meta */
.hero-divider {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.hero-divider::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--cream-200);
}

.hero-meta {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.hero-meta a {
  color: var(--emerald-700);
  transition: color 0.3s ease;
}

.hero-meta a:hover {
  color: var(--emerald-600);
}

.hero-meta-dot {
  color: var(--cream-300);
}

/* ===== ABOUT ===== */
.about {
  background: var(--cream-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-text {
  max-width: 520px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

.about-image {
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(6, 78, 59, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/5;
  transition: transform 0.6s var(--ease-out);
}

.about-image:hover img {
  transform: scale(1.02);
}

/* ===== MENU ===== */
.menu {
  background: var(--emerald-900);
  color: var(--cream-50);
}

.menu .section-eyebrow {
  color: var(--gold);
}

.menu .section-title {
  color: var(--cream-50);
}

.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.menu-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 243, 238, 0.6);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1080px;
  margin: 0 auto;
}

.menu-column {
  border-left: 1px solid rgba(245, 243, 238, 0.1);
  padding-left: 2rem;
}

.menu-column:first-child {
  border-left: none;
  padding-left: 0;
}

.menu-column-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream-50);
  margin-bottom: 0.3rem;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: rgba(245, 243, 238, 0.5);
  line-height: 1.5;
}

.menu-footer {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.menu-footer p {
  font-size: 0.85rem;
  color: rgba(245, 243, 238, 0.4);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1rem;
}

.menu-footer .btn-primary {
  background: var(--gold);
  color: var(--emerald-900);
}

.menu-footer .btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(200, 168, 78, 0.3);
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--cream-100);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(6, 78, 59, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item--tall {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
  aspect-ratio: 2/3;
}

.gallery-item--wide {
  grid-column: 5 / 13;
  aspect-ratio: 16/9;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
  aspect-ratio: 3/2;
}

/* ===== VISIT ===== */
.visit {
  background: var(--cream-50);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.visit-info {
  max-width: 520px;
}

.visit-info .section-title {
  margin-bottom: 2.5rem;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.visit-details dt {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 0.5rem;
}

.visit-details dd {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.visit-details a {
  color: var(--emerald-800);
  border-bottom: 1px solid var(--cream-300);
  transition: border-color 0.3s ease;
}

.visit-details a:hover {
  border-color: var(--emerald-600);
}

.hours-note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.visit-map {
  position: relative;
}

.map-placeholder {
  background: var(--cream-200);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.map-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--emerald-700);
  opacity: 0.5;
}

.map-placeholder p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-light);
}

.map-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-800);
  border: 1px solid var(--emerald-800);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.map-link:hover {
  background: var(--emerald-800);
  color: var(--cream-50);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--emerald-900);
  color: var(--cream-50);
  padding: 3.5rem 0 2.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 243, 238, 0.1);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream-50);
}

.footer-logo-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 243, 238, 0.6);
  flex-wrap: wrap;
}

.footer-contact a {
  color: rgba(245, 243, 238, 0.6);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--cream-50);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(245, 243, 238, 0.35);
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .hero-left {
    padding-right: 0;
    order: 1;
  }

  .hero-right {
    order: 2;
    height: 420px;
    max-width: 560px;
  }

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

  .about-image {
    max-width: 560px;
  }

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

  .menu-column:first-child {
    border-left: none;
    padding-left: 0;
  }

  .menu-column:last-child {
    grid-column: 1 / -1;
    border-left: 1px solid rgba(245, 243, 238, 0.1);
    padding-left: 2rem;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--tall {
    grid-column: 1 / 7;
    grid-row: auto;
  }

  .gallery-item--wide {
    grid-column: 7 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem clamp(1.5rem, 4vw, 4rem);
    gap: 1.5rem;
    border-bottom: 1px solid var(--cream-200);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-right {
    height: 340px;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

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

  .menu-column {
    border-left: none !important;
    padding-left: 0 !important;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 243, 238, 0.1);
  }

  .menu-column:first-child {
    padding-top: 0;
    border-top: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item--tall {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }

  .gallery-item--wide {
    grid-column: 1 / -1;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-right {
    height: 280px;
  }

  .hero-img--primary {
    width: 80%;
  }

  .hero-img--secondary {
    width: 60%;
  }

  .hero-img--tertiary {
    width: 50%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: 1;
    aspect-ratio: 4/3;
  }
}
</style>
