*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-deep: #1a3a2a;
  --green-mid: #2d5a3f;
  --green-light: #3d7a56;
  --green-pale: #e8f0eb;
  --cream: #f7f5f0;
  --cream-light: #faf9f7;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --line: #e0ddd6;
  --line-light: #ece9e2;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream-light);
  line-height: 1.7;
  -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;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-light);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(26, 58, 42, 0.06);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-mid);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--green-deep);
}

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

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 40%, var(--green-light) 100%);
  padding-top: 72px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(61, 122, 86, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 90% 90%, rgba(26, 58, 42, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 80px 0 80px 64px;
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline br {
  display: none;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 460px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  z-index: 1;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, transparent 100%);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Section labels ── */
.section-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.lead {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
  max-width: 540px;
}

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

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

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5/6;
}

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

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

.about-features {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

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

.feature-icon {
  width: 20px;
  height: 20px;
  color: var(--green-mid);
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 400;
}

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

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

.menu-intro {
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-light);
  transition: all var(--transition);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 58, 42, 0.08);
  border-color: transparent;
}

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

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

.menu-card-body {
  padding: 28px 32px 32px;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.menu-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

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

/* ── Visit ── */
.visit {
  padding: 140px 0;
  background: var(--cream-light);
}

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

.visit-details {
  font-style: normal;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-icon {
  width: 22px;
  height: 22px;
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 4px;
}

.detail-row strong {
  display: block;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.detail-row p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.detail-row a {
  color: var(--green-mid);
  transition: color var(--transition);
}

.detail-row a:hover {
  color: var(--green-deep);
}

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 6/5;
}

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

/* ── Contact ── */
.contact {
  padding: 140px 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(61, 122, 86, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(45, 90, 63, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact .section-label {
  color: rgba(255, 255, 255, 0.5);
}

.contact .section-title {
  color: var(--white);
}

.contact .lead {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 4px;
  transition: all var(--transition);
}

.contact-email:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.contact-email-icon {
  width: 18px;
  height: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--white);
  line-height: 1.6;
  transition: all var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.09);
}

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
}

.form-success.visible {
  display: block;
}

/* ── Footer ── */
.footer {
  padding: 48px 0;
  background: #142a1f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

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

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content {
    padding: 60px 40px;
  }

  .hero-image {
    width: 38%;
  }

  .about-grid,
  .visit-grid,
  .contact-inner {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
  }

  .nav-links.open {
    max-height: 320px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line-light);
  }

  .nav-links li {
    padding: 12px 0;
  }

  .nav-links a {
    font-size: 0.9375rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 72px;
  }

  .hero-content {
    padding: 80px 24px 60px;
    max-width: 100%;
  }

  .hero-headline br {
    display: block;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 40vh;
    order: -1;
  }

  .hero-image img {
    mask-image: none;
    -webkit-mask-image: none;
    opacity: 0.7;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid,
  .menu-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about,
  .menu,
  .visit {
    padding: 80px 0;
  }

  .contact {
    padding: 80px 0;
  }

  .about-features {
    flex-direction: column;
    gap: 20px;
  }

  .menu-card img {
    height: 200px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

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

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

  .btn {
    width: 100%;
    justify-content: center;
  }

  .menu-card-body {
    padding: 20px 24px 28px;
  }
}
