/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald: #0B6E4F;
  --emerald-dark: #074D37;
  --emerald-light: #14A073;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --cream-dark: #E8E0D0;
  --charcoal: #1A1A1A;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}

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

.section-title em { font-style: italic; font-weight: 400; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--emerald);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,110,79,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,240,232,0.4);
}

.btn--ghost:hover {
  background: rgba(245,240,232,0.1);
  border-color: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--emerald);
  border: 1.5px solid var(--emerald);
}

.btn--outline:hover {
  background: var(--emerald);
  color: var(--white);
}

.btn--full { width: 100%; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  transition: var(--transition);
}

.nav.scrolled .nav__logo { color: var(--charcoal); }

.nav__logo-icon {
  display: flex;
  align-items: center;
  opacity: 0.9;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245,240,232,0.8);
  transition: var(--transition);
  position: relative;
}

.nav.scrolled .nav__link { color: var(--text-light); }

.nav__link:hover { color: var(--cream); }
.nav.scrolled .nav__link:hover { color: var(--emerald); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-light);
  transition: var(--transition);
}

.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  padding: 10px 24px;
  background: var(--emerald);
  color: var(--white) !important;
  border-radius: 50px;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--emerald-dark);
  transform: translateY(-1px);
}

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

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav__toggle span { background: var(--charcoal); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--emerald-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  padding: 8px;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--cream);
  opacity: 0.85;
  transition: var(--transition);
}

.mobile-menu__link:hover { opacity: 1; color: var(--emerald-light); }

.mobile-menu__link--cta {
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 14px 40px;
  background: var(--white);
  color: var(--emerald-dark);
  border-radius: 50px;
  font-weight: 600;
  opacity: 1;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--emerald-dark);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(20,160,115,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-light);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 540px;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__trust-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
}

.hero__trust-label {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.02em;
}

.hero__trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(245,240,232,0.2);
}

.hero__right { position: relative; }

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 600/750;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero__image-accent {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px 32px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
}

.hero__scroll svg { opacity: 0.5; animation: bounce 2s infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
  height: 600px;
}

.about__img-main {
  width: 75%;
  aspect-ratio: 500/600;
  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-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}

.about__img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content { max-width: 480px; }

.about__content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.about__content .btn { margin-top: 16px; }

/* ── Menu ── */
.menu {
  padding: 120px 0;
  background: var(--cream-light);
}

.menu__header {
  text-align: center;
  margin-bottom: 72px;
}

.menu__header .section-subtitle { margin: 0 auto; }

.menu__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.menu__category {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.menu__category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu__cat-icon {
  width: 56px;
  height: 56px;
  background: var(--emerald);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 24px;
}

.menu__cat-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.menu__list { list-style: none; }

.menu__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  gap: 16px;
}

.menu__list li:last-child { border-bottom: none; }

.menu__item-name {
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.menu__item-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: right;
  line-height: 1.4;
}

.menu__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── Events ── */
.events {
  padding: 120px 0;
  background: var(--emerald-dark);
  position: relative;
  overflow: hidden;
}

.events::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(20,160,115,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.events__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.events__content { max-width: 480px; }

.events__content p {
  color: rgba(245,240,232,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.events__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.events__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  font-size: 0.95rem;
}

.events__features svg { color: var(--emerald-light); flex-shrink: 0; }

.events__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 550/650;
  box-shadow: var(--shadow-lg);
}

.events__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info { max-width: 460px; }

.contact__info p {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail svg {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition);
}

.contact__detail a:hover { color: var(--emerald); }

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  position: relative;
}

.form__group { margin-bottom: 24px; }

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream-light);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(11,110,79,0.08);
}

.form__textarea { resize: vertical; min-height: 120px; }

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5A5A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 16px;
}

.form__success svg { color: var(--emerald); }

.form__success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--charcoal);
}

.form__success p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  padding: 64px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.footer__brand {
  max-width: 360px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.7;
}

.footer__links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.6);
  transition: var(--transition);
}

.footer__links a:hover { color: var(--emerald-light); }

.footer__bottom {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.3);
  padding-top: 32px;
  border-top: 1px solid rgba(245,240,232,0.08);
  width: 100%;
  text-align: center;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__inner { gap: 40px; }
  .about__grid { gap: 48px; }
  .events__inner { gap: 48px; }
  .contact__grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 40px;
  }

  .hero__right { order: -1; }

  .hero__image-wrap {
    aspect-ratio: 4/3;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero__headline { font-size: clamp(2rem, 8vw, 2.8rem); }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .hero__trust { flex-wrap: wrap; gap: 16px; }
  .hero__trust-divider { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .about__images { height: 400px; margin-bottom: 16px; }

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

  .events__inner { grid-template-columns: 1fr; }
  .events__image { aspect-ratio: 4/3; order: -1; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero__inner { padding: 90px 20px 50px; }
  .about, .menu, .events, .contact { padding: 80px 0; }
  .about__images { height: 300px; }
  .about__img-float { width: 55%; }
  .contact__form-wrap { padding: 24px 20px; }
}
