/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a;
  background: #F7F5F0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --green-pale: #95D5B9;
  --green-ghost: #D8F3DC;
  --cream: #F7F5F0;
  --cream-dark: #EDEAE3;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --gray: #6B7280;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(27,67,50,0.08);
  --shadow-lg: 0 12px 48px rgba(27,67,50,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.15; }
em { font-style: italic; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--green-light);
  display: inline-block;
}
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--green-deep); margin-bottom: 20px; }
.section-title-center { text-align: center; }
.section-title em { color: var(--green-light); }
.section-desc { font-size: 1.1rem; color: var(--gray); max-width: 560px; }
.section-desc-center { text-align: center; margin: 0 auto 48px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,67,50,0.3);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,67,50,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}
.btn-outline-dark:hover {
  background: var(--green-deep);
  color: var(--white);
}
.btn-nav {
  background: var(--green-deep);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.85rem;
}
.btn-nav:hover { background: var(--green-mid); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(247,245,240,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(27,67,50,0.08);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  transition: var(--transition);
}
.nav.scrolled .nav-brand { color: var(--green-deep); }
.nav-brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.nav.scrolled .nav-brand-icon {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.nav.scrolled .nav-brand-icon svg { stroke: var(--white); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--gray); }
.nav.scrolled .nav-links a:hover { color: var(--green-deep); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav-toggle-bar { background: var(--green-deep); }
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.88) 0%, rgba(45,106,79,0.72) 50%, rgba(27,67,50,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--green-pale);
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-headline em {
  color: var(--green-pale);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Geometric shapes */
.geo {
  position: absolute;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}
.geo-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 3px solid var(--green-light);
  top: 10%;
  right: -80px;
  animation: float 8s ease-in-out infinite;
}
.geo-square {
  width: 180px;
  height: 180px;
  background: var(--green-light);
  bottom: 15%;
  right: 10%;
  transform: rotate(45deg);
  animation: float 6s ease-in-out infinite reverse;
}
.geo-triangle {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid var(--green-pale);
  top: 30%;
  right: 25%;
  animation: float 7s ease-in-out infinite;
  opacity: 0.1;
}
.geo-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--green-pale);
  bottom: 25%;
  left: 5%;
  animation: float 9s ease-in-out infinite reverse;
  opacity: 0.12;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--green-deep);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-pale);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.marquee-dot {
  color: var(--green-light);
  font-size: 0.6rem;
  align-self: center;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  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-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  background: var(--green-deep);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  box-shadow: var(--shadow);
  z-index: 2;
}
.about-geo {
  position: absolute;
  right: -60px;
  bottom: 80px;
  pointer-events: none;
}
.about-geo-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--green-ghost);
  opacity: 0.5;
}
.about-geo-dots {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(var(--green-light) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.5;
}
.about-content { position: relative; z-index: 1; }
.about-content p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--green-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
}
.about-feature strong {
  display: block;
  font-size: 1rem;
  color: var(--green-deep);
  margin-bottom: 2px;
}
.about-feature span {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ===== MENU ===== */
.menu {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}
.menu .container:first-child { text-align: center; margin-bottom: 64px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.menu-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  overflow: hidden;
  transition: var(--transition);
}
.menu-card:hover { transform: translateY(-6px); }
.menu-card--green { background: var(--green-deep); color: var(--white); }
.menu-card--dark { background: #0F2B1E; color: var(--white); }
.menu-card--cream { background: var(--cream); color: var(--dark); }
.menu-card-geo {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}
.menu-card--green .menu-card-geo { background: var(--green-light); }
.menu-card--dark .menu-card-geo { background: var(--green-pale); }
.menu-card--cream .menu-card-geo { background: var(--green-deep); }
.menu-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.menu-card-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-card--green .menu-card-icon { background: rgba(255,255,255,0.12); color: var(--green-pale); }
.menu-card--dark .menu-card-icon { background: rgba(255,255,255,0.08); color: var(--green-pale); }
.menu-card--cream .menu-card-icon { background: var(--green-ghost); color: var(--green-deep); }
.menu-card h3 { font-size: 1.35rem; }
.menu-card-list {
  position: relative;
  z-index: 1;
}
.menu-card-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}
.menu-card--cream .menu-card-list li { border-bottom-color: rgba(27,67,50,0.1); }
.menu-card-list li:last-child { border-bottom: none; }
.menu-card-list span:first-child { font-weight: 600; }
.menu-card-list span:last-child { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 400; }
.menu-card--cream .menu-card-list span:last-child { color: var(--gray); }
.menu-note {
  text-align: center;
  margin-top: 56px;
  padding: 0 24px;
}
.menu-note p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0 80px;
  background: var(--cream);
}
.gallery .container { text-align: center; margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
}
.gallery-item--wide { grid-column: span 7; height: 380px; }
.gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) { height: 280px; }
.gallery-item--tall { grid-column: span 3; height: 620px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-label { color: var(--green-pale); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-title em { color: var(--green-pale); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--green-light);
  opacity: 0.4;
  margin-bottom: -8px;
}
.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-pale);
}
.testimonial-author span {
  font-size: 0.9rem;
  color: var(--green-pale);
  font-weight: 500;
}
.testimonials-geo {
  position: absolute;
  pointer-events: none;
}
.testimonials-geo-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.05);
  top: -80px;
  left: -80px;
}
.testimonials-geo-square {
  width: 120px;
  height: 120px;
  background: var(--green-light);
  opacity: 0.05;
  bottom: -30px;
  right: 10%;
  transform: rotate(30deg);
}

/* ===== VISIT ===== */
.visit {
  padding: 120px 0;
  background: var(--white);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit-info .section-title { margin-bottom: 36px; }
.visit-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--green-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
}
.visit-detail strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 4px;
}
.visit-detail p { font-size: 0.95rem; color: var(--gray); line-height: 1.6; }
.visit-detail a { color: var(--green-deep); font-weight: 500; transition: var(--transition); }
.visit-detail a:hover { color: var(--green-light); }
.visit-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}
.visit-map img { width: 100%; height: 100%; object-fit: cover; }
.visit-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,67,50,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-content .section-title { margin-bottom: 20px; }
.contact-content > p { font-size: 1.05rem; color: var(--gray); margin-bottom: 32px; line-height: 1.8; }
.contact-direct { display: flex; flex-direction: column; gap: 12px; }
.contact-direct-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--green-deep);
  font-weight: 500;
  transition: var(--transition);
}
.contact-direct-item:hover { color: var(--green-light); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(82,183,136,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); opacity: 0.6; }
.form-group textarea { resize: vertical; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--green-ghost);
  border-radius: var(--radius-sm);
  border: 1px solid var(--green-pale);
}
.form-success strong { color: var(--green-deep); font-size: 0.95rem; }
.form-success span { color: var(--gray); font-size: 0.85rem; }
.contact-geo { position: absolute; pointer-events: none; }
.contact-geo-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--green-ghost);
  opacity: 0.4;
  top: -60px;
  right: -60px;
}
.contact-geo-square {
  width: 100px;
  height: 100px;
  background: var(--green-light);
  opacity: 0.06;
  bottom: 40px;
  left: 10%;
  transform: rotate(25deg);
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.92) 0%, rgba(45,106,79,0.85) 100%);
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.cta-shape-1 { width: 300px; height: 300px; background: var(--green-light); top: -80px; left: -80px; }
.cta-shape-2 { width: 150px; height: 150px; background: var(--green-pale); bottom: -40px; right: 15%; }
.cta-shape-3 { width: 80px; height: 80px; background: var(--white); top: 20%; right: 5%; }
.cta .container { position: relative; z-index: 1; text-align: center; }
.cta-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-headline em { color: var(--green-pale); }
.cta .container > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-deep);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--white);
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 300px; }
.footer-nav strong,
.footer-contact strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid,
  .contact-grid { gap: 40px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .gallery-item--wide { grid-column: span 12; height: 300px; }
  .gallery-item--tall { grid-column: span 6; height: 350px; }
  .gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) { grid-column: span 6; height: 250px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--green-deep);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.2);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.85) !important; font-size: 1.1rem; }
  .nav-links a:hover { color: var(--white) !important; }
  .nav-toggle { display: flex; }
  .nav-toggle.active .nav-toggle-bar { background: var(--white) !important; }

  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; }
  .about-content { order: -1; }

  .menu-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .menu-note { padding: 0; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide,
  .gallery-item--tall,
  .gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) {
    grid-column: span 1;
    height: 260px;
  }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; max-width: 100%; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { height: 280px; order: -1; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-content { padding: 100px 20px 60px; }
  .about, .menu, .gallery, .testimonials, .visit, .contact { padding: 80px 0; }
  .about-images { height: 320px; }
  .about-img-main { width: 80%; height: 75%; }
  .about-img-secondary { width: 60%; }
  .about-accent { position: relative; top: auto; right: auto; transform: none; display: inline-block; margin-top: 16px; }
}
