/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a1a1a;
  background: #F5F0E8;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Tokens ───────────────────────────────────────── */
:root {
  --green:     #1B4332;
  --green-light:#2D6A4F;
  --green-pale: #D8F3DC;
  --cream:     #F5F0E8;
  --cream-dark:#EDE6D6;
  --dark:      #1a1a1a;
  --white:     #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(27,67,50,.10);
  --shadow-lg: 0 8px 40px rgba(27,67,50,.15);
  --transition: .3s ease;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--green);
}
em { font-style: italic; color: var(--green-light); }

.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-light);
  background: var(--green-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }
.btn--nav {
  background: var(--green);
  color: var(--white);
  padding: 10px 24px;
  font-size: .875rem;
  border-radius: 100px;
}
.btn--nav:hover { background: var(--green-light); }

/* ── Skip Link ────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ── Header ───────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245,240,232,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,67,50,.08);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(245,240,232,.95);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}
.logo-mark {
  font-style: italic;
  color: var(--green-light);
}

/* Nav */
.nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: var(--transition);
}
.nav a:not(.btn):hover { color: var(--green); }
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: var(--transition);
}
.nav a:not(.btn):hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1001;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after  { top: 8px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 40%, #40916C 70%, #52B788 100%);
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(82,183,136,.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(45,106,79,.4) 0%, transparent 60%);
  pointer-events: none;
}

/* Geometric shapes */
.geo {
  position: absolute;
  pointer-events: none;
  opacity: .12;
}
.geo--circle-1 {
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--cream);
  top: -120px; right: -100px;
}
.geo--circle-2 {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--green-pale);
  bottom: -60px; left: -60px;
  opacity: .18;
}
.geo--rect-1 {
  width: 180px; height: 180px;
  background: var(--cream);
  top: 30%; left: 8%;
  border-radius: var(--radius-lg);
  transform: rotate(25deg);
  opacity: .08;
}
.geo--triangle {
  width: 0; height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid var(--cream);
  top: 20%; right: 12%;
  opacity: .07;
  transform: rotate(-15deg);
}
.geo--dot-grid {
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, var(--cream) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  bottom: 25%; right: 6%;
  opacity: .15;
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,240,232,.7);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-headline .accent {
  color: var(--cream);
  position: relative;
}
.hero-headline em { color: var(--cream); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,240,232,.8);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,.5);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: var(--green-pale);
  border-radius: 50%;
  top: -80px; left: -80px;
  opacity: .4;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  width: 140px; height: 140px;
  background: var(--green);
  border-radius: var(--radius-lg);
  bottom: -30px; right: -30px;
  z-index: -1;
  opacity: .15;
}
.about-text p {
  color: #444;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}
.stat-label {
  font-size: .85rem;
  color: #666;
}

/* ── Menu ─────────────────────────────────────────── */
.menu {
  padding: 100px 0 120px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.menu::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: var(--green-pale);
  border-radius: 50%;
  bottom: -200px; right: -150px;
  opacity: .35;
  pointer-events: none;
}
.section-header { text-align: center; margin-bottom: 60px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.menu-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.menu-card-img { overflow: hidden; }
.menu-card-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body {
  padding: 28px;
}
.menu-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--green);
}
.menu-card-body p {
  color: #555;
  font-size: .95rem;
  line-height: 1.7;
}
.menu-cta { text-align: center; position: relative; z-index: 1; }

/* Menu geometric accent */
.menu-geo {
  position: absolute;
  bottom: 0; left: 0;
  pointer-events: none;
  overflow: hidden;
}
.geo--circle-3 {
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--green);
  opacity: .06;
  position: absolute;
  bottom: -200px; left: -100px;
}
.geo--stripe {
  position: absolute;
  bottom: 40px; right: 40px;
  width: 200px; height: 200px;
  background: repeating-linear-gradient(
    45deg,
    var(--green-pale),
    var(--green-pale) 10px,
    transparent 10px,
    transparent 20px
  );
  opacity: .25;
  border-radius: var(--radius);
  transform: rotate(15deg);
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
  padding: 100px 0 80px;
  background: var(--cream);
}
.gallery .container { margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── Visit ────────────────────────────────────────── */
.visit {
  padding: 100px 0;
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.visit::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  top: -200px; right: -200px;
  pointer-events: none;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.visit .section-eyebrow { background: rgba(255,255,255,.15); color: var(--cream); }
.visit .section-title { color: var(--white); }
.visit .section-title em { color: var(--green-pale); }
.visit-address,
.visit-phone {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  font-size: 1.05rem;
  color: rgba(245,240,232,.85);
  line-height: 1.8;
}
.visit-phone a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition);
}
.visit-phone a:hover { color: var(--white); }
.icon { flex-shrink: 0; margin-top: 2px; opacity: .7; }

.hours { margin-top: 36px; }
.hours h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,240,232,.5);
  margin-bottom: 16px;
}
.hours ul li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245,240,232,.1);
  font-size: .95rem;
  color: rgba(245,240,232,.85);
}
.hours ul li:last-child { border-bottom: none; }

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.visit-map iframe { width: 100%; height: 100%; }

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--green-pale);
  opacity: .4;
  top: -100px; left: -100px;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-text p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}
.contact-form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
}
.optional { font-weight: 400; color: #999; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .95rem;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(245,240,232,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: var(--white); font-size: 1.8rem; margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: .95rem; line-height: 1.7; max-width: 280px; }
.footer-nav h4,
.footer-contact h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,240,232,.4);
  margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: .95rem;
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-contact p { font-size: .95rem; line-height: 1.8; margin-bottom: 4px; }
.footer-contact a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,.08);
  padding: 24px 0;
}
.footer-bottom p {
  font-size: .85rem;
  color: rgba(245,240,232,.35);
  text-align: center;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 960px) {
  .about-grid,
  .visit-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-img-accent { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,.15);
    z-index: 999;
  }
  .nav.open { transform: translateX(0); }
  .nav ul { flex-direction: column; align-items: flex-start; gap: 24px; }
  .nav a { font-size: 1.1rem; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { min-height: 90vh; }
  .about, .menu, .gallery, .visit, .contact { padding: 64px 0; }
  .about-stats { flex-direction: column; gap: 20px; }
}
