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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #1a2e2a;
  background-color: #FAF8F5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
  transition: box-shadow 0.3s ease;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #064E3B;
  letter-spacing: -0.01em;
}

.logo-mark {
  font-size: 1.4rem;
  line-height: 1;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #1a2e2a;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #10B981;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #10B981;
}

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

.btn-nav {
  padding: 8px 20px;
  border: 1px solid #10B981;
  border-radius: 100px;
  color: #064E3B;
  transition: all 0.2s ease;
}

.btn-nav:hover {
  background: #064E3B;
  border-color: #064E3B;
  color: #FAF8F5;
}

.btn-nav::after {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px;
  color: #064E3B;
}

.icon-close {
  display: none;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(16, 185, 129, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(6, 78, 59, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(167, 243, 208, 0.3) 0%, transparent 60%),
    linear-gradient(180deg, #064E3B 0%, #0a6b4f 40%, #10B981 75%, #A7F3D0 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.65);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #FAF8F5;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline br {
  display: none;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(250, 248, 245, 0.78);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #FAF8F5;
  color: #064E3B;
}

.btn-primary:hover {
  background: #D1FAE5;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
  background: transparent;
  color: #FAF8F5;
  border: 1px solid rgba(250, 248, 245, 0.35);
}

.btn-ghost:hover {
  border-color: rgba(250, 248, 245, 0.7);
  background: rgba(250, 248, 245, 0.08);
}

.btn-ghost-light {
  background: transparent;
  color: #064E3B;
  border: 1px solid rgba(6, 78, 59, 0.25);
}

.btn-ghost-light:hover {
  border-color: #064E3B;
  background: rgba(6, 78, 59, 0.04);
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(250, 248, 245, 0.4);
}

/* ─── STRIP ─── */
.strip {
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  background: rgba(16, 185, 129, 0.03);
}

.strip-inner {
  padding: 28px 24px;
}

.strip-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.strip-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #064E3B;
}

.strip-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #A7F3D0;
  flex-shrink: 0;
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #10B981;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: #064E3B;
  letter-spacing: -0.02em;
}

.section-title--center {
  text-align: center;
}

.section-title--light {
  color: #FAF8F5;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #4a6b63;
  max-width: 480px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 0;
}

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

.about-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.about-text {
  padding: 16px 0;
}

.about-text p {
  font-size: 1rem;
  color: #3d5c54;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ─── MENU ─── */
.menu {
  padding: 100px 0 120px;
  background: #FAF8F5;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.menu-card {
  background: #fff;
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s ease;
}

.menu-card:hover {
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 8px 32px rgba(6, 78, 59, 0.06);
  transform: translateY(-2px);
}

.menu-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.menu-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #064E3B;
  flex-shrink: 0;
}

.menu-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #064E3B;
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.menu-item-name {
  font-size: 0.925rem;
  font-weight: 500;
  color: #1a2e2a;
}

.menu-item-desc {
  font-size: 0.825rem;
  color: #6b8f85;
  text-align: right;
  flex-shrink: 0;
}

.menu-note {
  text-align: center;
  font-size: 0.875rem;
  color: #6b8f85;
  margin-top: 48px;
  font-style: italic;
}

/* ─── GALLERY ─── */
.gallery {
  padding: 100px 0 120px;
  background: #F3EFE8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5/4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ─── FEATURES ─── */
.features {
  padding: 100px 0;
  background: #064E3B;
}

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

.feature {
  position: relative;
  padding-left: 24px;
}

.feature-line {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #10B981, transparent);
  border-radius: 2px;
}

.feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FAF8F5;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.875rem;
  color: rgba(250, 248, 245, 0.6);
  line-height: 1.7;
}

/* ─── CTA ─── */
.cta {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 70%),
    #FAF8F5;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 48px 0 40px;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 16px;
  padding: 32px 36px;
}

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

.cta-icon {
  color: #10B981;
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b8f85;
  margin-bottom: 4px;
}

.cta-detail-value {
  font-size: 1rem;
  color: #064E3B;
  font-weight: 400;
}

.cta-link {
  transition: color 0.2s ease;
}

.cta-link:hover {
  color: #10B981;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact {
  padding: 100px 0 120px;
}

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

.contact-text p {
  font-size: 1rem;
  color: #3d5c54;
  line-height: 1.8;
  margin-top: 16px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #064E3B;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #10B981;
}

.contact-sep {
  color: #A7F3D0;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d5c54;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1a2e2a;
  background: #FAF8F5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9bb5ad;
}

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

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  font-size: 0.9rem;
  color: #064E3B;
  text-align: center;
}

/* ─── FOOTER ─── */
.footer {
  background: #064E3B;
  padding: 64px 0 40px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer .logo-text {
  color: #FAF8F5;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(250, 248, 245, 0.5);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.6);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #A7F3D0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.35);
  padding-top: 32px;
  border-top: 1px solid rgba(250, 248, 245, 0.08);
  width: 100%;
}

.footer-bottom a {
  color: rgba(250, 248, 245, 0.45);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #A7F3D0;
}

/* ─── MOBILE NAV ─── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .icon-menu {
    display: block;
  }

  .icon-close {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .icon-menu {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .icon-close {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 24px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .main-nav a {
    font-size: 1.1rem;
  }

  .btn-nav {
    margin-top: 8px;
  }

  .hero-headline br {
    display: block;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    aspect-ratio: 16/10;
  }

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

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

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .strip-grid {
    justify-content: center;
  }

  .strip-item:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-details {
    padding: 24px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .menu-card {
    padding: 24px;
  }
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
