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

:root {
  --green-900: #0B2215;
  --green-800: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52B788;
  --cream-100: #F5F0E8;
  --cream-200: #EDE6D6;
  --cream-300: #E8DFD0;
  --white: #FEFDFB;
  --text-dark: #1A1A1A;
  --text-mid: #3D3D3D;
  --text-light: #6B6B6B;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 12px 40px rgba(27, 67, 50, 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-dark);
  background: var(--cream-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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 ── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

.nav.scrolled {
  background: rgba(254, 253, 251, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

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

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

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

.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--green-700);
  color: var(--cream-100) !important;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 900;
}

.nav.scrolled .nav__logo-mark {
  background: var(--green-800);
}

.nav__logo-text {
  font-weight: 700;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(254, 253, 251, 0.85);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

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

.nav.scrolled .nav__link:hover {
  color: var(--green-800);
  background: rgba(27, 67, 50, 0.06);
}

.nav__link--cta {
  background: var(--green-600);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--green-700) !important;
}

.nav.scrolled .nav__link--cta {
  background: var(--green-800);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
  transition: var(--transition);
}

.nav.scrolled .nav__toggle {
  color: var(--green-800);
}

.nav__toggle-icon {
  display: block;
}

.nav__toggle-line2 {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line1 {
  transform: translateY(6px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-line2 {
  opacity: 1;
}

.nav__toggle.active .nav__toggle-line3 {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45, 106, 79, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(82, 183, 136, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(64, 145, 108, 0.2) 0%, transparent 60%),
    linear-gradient(160deg, #0B2215 0%, #1B4332 35%, #2D6A4F 65%, #40916C 100%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 24px;
}

.hero__headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--cream-100);
  margin-bottom: 28px;
  line-height: 1.05;
}

.hero__headline em {
  font-style: italic;
  color: var(--green-500);
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(245, 240, 232, 0.75);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(245, 240, 232, 0.4);
  animation: bounce 2s ease-in-out infinite;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--green-700);
  color: var(--cream-100);
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.3);
}

.btn--primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.35);
}

.btn--ghost {
  background: rgba(254, 253, 251, 0.1);
  color: var(--cream-100);
  border: 1.5px solid rgba(254, 253, 251, 0.25);
}

.btn--ghost:hover {
  background: rgba(254, 253, 251, 0.18);
  border-color: rgba(254, 253, 251, 0.45);
  transform: translateY(-2px);
}

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

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section-header__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--green-800);
  margin-bottom: 16px;
}

.section-header__desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Highlights ── */
.highlights {
  padding: 100px 0;
  background: var(--white);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.highlight {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.highlight:hover {
  background: var(--cream-100);
  transform: translateY(-4px);
}

.highlight__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  border-radius: 16px;
  color: var(--cream-100);
}

.highlight__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green-800);
  margin-bottom: 10px;
}

.highlight__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

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

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.menu-card__img {
  overflow: hidden;
  aspect-ratio: 3/2;
}

.menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card__img img {
  transform: scale(1.05);
}

.menu-card__body {
  padding: 28px;
}

.menu-card__name {
  font-size: 1.35rem;
  color: var(--green-800);
  margin-bottom: 8px;
}

.menu-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.menu-card__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-card__items li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}

.menu-card__items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--green-600);
  border-radius: 50%;
}

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

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

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

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about__content {
  max-width: 520px;
}

.about__content .section-header__title {
  text-align: left;
  margin-bottom: 24px;
}

.about__text {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-300);
}

.about__detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 6px;
}

.about__detail-value {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.about__detail-value a {
  color: var(--green-700);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 106, 79, 0.3);
  transition: var(--transition);
}

.about__detail-value a:hover {
  color: var(--green-800);
  border-color: var(--green-800);
}

/* ── Gallery ── */
.gallery {
  padding: 100px 0;
  background: var(--cream-100);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery__item:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.gallery__item--wide {
  grid-column: 1 / 3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__item:nth-child(2) img,
.gallery__item:nth-child(3) img,
.gallery__item:nth-child(4) img,
.gallery__item:nth-child(5) img {
  aspect-ratio: 4/3;
}

.gallery__item--wide img {
  aspect-ratio: 16/9;
}

/* ── Visit ── */
.visit {
  padding: 100px 0;
  background: var(--green-800);
  color: var(--cream-100);
}

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

.visit .section-header__eyebrow {
  color: var(--green-500);
}

.visit .section-header__title {
  color: var(--cream-100);
  text-align: left;
  margin-bottom: 16px;
}

.visit__desc {
  font-size: 1.02rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
}

.visit__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.visit__detail dt {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 253, 251, 0.08);
  border-radius: 12px;
  color: var(--green-500);
}

.visit__detail dd {
  padding-top: 8px;
}

.visit__detail a {
  color: var(--cream-100);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 232, 0.3);
  transition: var(--transition);
  font-size: 0.95rem;
  line-height: 1.6;
}

.visit__detail a:hover {
  color: var(--green-500);
  border-color: var(--green-500);
}

/* ── Contact Form ── */
.visit__form-wrap {
  background: rgba(254, 253, 251, 0.06);
  border: 1px solid rgba(254, 253, 251, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}

.visit__form-title {
  font-size: 1.5rem;
  color: var(--cream-100);
  margin-bottom: 8px;
}

.visit__form-desc {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-form__group {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 8px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(254, 253, 251, 0.07);
  border: 1.5px solid rgba(254, 253, 251, 0.15);
  border-radius: 10px;
  color: var(--cream-100);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--green-500);
  background: rgba(254, 253, 251, 0.1);
}

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

.contact-form__success {
  text-align: center;
  padding: 32px;
  color: var(--green-500);
}

.contact-form__success svg {
  margin: 0 auto 16px;
}

.contact-form__success p {
  font-size: 1rem;
  color: var(--cream-100);
}

/* ── Footer ── */
.footer {
  padding: 64px 0 40px;
  background: var(--green-900);
  color: var(--cream-100);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  margin-bottom: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 4px;
}

.footer__nav {
  display: flex;
  gap: 8px;
  list-style: none;
}

.footer__nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.6);
  transition: var(--transition);
}

.footer__nav a:hover {
  color: var(--cream-100);
  background: rgba(254, 253, 251, 0.08);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
}

.footer__bottom a {
  color: rgba(245, 240, 232, 0.5);
  transition: var(--transition);
}

.footer__bottom a:hover {
  color: var(--green-500);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__layout {
    gap: 40px;
  }
}

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

  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(27, 67, 50, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

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

  .nav__link {
    color: rgba(245, 240, 232, 0.85) !important;
    width: 100%;
    padding: 12px 16px;
  }

  .nav__link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  .hero__headline {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .highlights__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight:hover {
    transform: none;
  }

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

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

  .about__image {
    order: -1;
  }

  .about__content .section-header__title {
    text-align: center;
  }

  .about__content .section-header__eyebrow {
    text-align: center;
  }

  .about__text {
    text-align: center;
  }

  .about__details {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .gallery__item--wide {
    grid-column: 1;
  }

  .gallery__item img,
  .gallery__item--wide img {
    aspect-ratio: 4/3 !important;
  }

  .visit__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .visit .section-header__title {
    text-align: center;
  }

  .visit__desc {
    text-align: center;
  }

  .visit__form-wrap {
    padding: 28px;
  }

  .footer__top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .container {
    padding: 0 20px;
  }

  .menu__grid {
    gap: 20px;
  }

  .menu-card__body {
    padding: 20px;
  }
}
