/* ============================================
   ETYMOLOGY COFFEE — Stylesheet
   Color Palette: Emerald Green + Cream
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --green-400: #34d399;
  --green-100: #d1fae5;
  --green-50:  #ecfdf5;
  --cream:     #fef9f0;
  --cream-light:#fefcf7;
  --cream-dark:#f5eedc;
  --amber:     #f59e0b;
  --amber-light:#fde68a;
  --warm:      #92400e;
  --text-dark:  #1a1a1a;
  --text-mid:   #3d3d3d;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --white:      #ffffff;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  30px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 24px 60px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'Space Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul { list-style: none; }

/* --- Geometric Decorations --- */
.geo-shape {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.07;
}

.geo-circle-1 {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--green-600);
  top: -150px;
  right: -100px;
}

.geo-square-1 {
  width: 200px;
  height: 200px;
  background: var(--amber);
  top: 40%;
  left: -60px;
  transform: rotate(25deg);
}

.geo-circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--green-400);
  bottom: 20%;
  right: -80px;
}

.geo-triangle {
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 208px solid var(--green-700);
  top: 60%;
  left: 5%;
  transform: rotate(-15deg);
}

.geo-dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--green-600) 2px, transparent 2px);
  background-size: 16px 16px;
  top: 75%;
  right: 8%;
  opacity: 0.1;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(254, 249, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(6, 95, 70, 0.08);
  padding: 0.6rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-800);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-600);
  transition: var(--transition);
}

.nav-link:hover { color: var(--green-700); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--green-800);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle-line {
  width: 24px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(6, 95, 70, 0.3);
}

.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 95, 70, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-800);
  border: 2px solid var(--green-200, #a7f3d0);
}

.btn-secondary:hover {
  border-color: var(--green-600);
  background: var(--green-50);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-800);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--green-50) 50%, var(--cream-dark) 100%);
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-left { max-width: 540px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--green-100);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-accent {
  color: var(--green-700);
  font-style: italic;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Cards */
.hero-cards {
  position: relative;
  min-height: 560px;
}

.hero-card-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

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

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(6, 78, 59, 0.85), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
}

/* Floating Cards */
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.hero-float svg {
  color: var(--green-600);
  flex-shrink: 0;
}

.float-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.float-card-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green-800);
}

.float-card-accent {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  opacity: 0.08;
}

.hero-float-1 {
  top: 5%;
  right: -10%;
  animation-delay: 0s;
}

.hero-float-1 .float-card-accent { background: var(--green-500); }

.hero-float-2 {
  bottom: 28%;
  left: -8%;
  animation-delay: 1.3s;
}

.hero-float-2 .float-card-accent { background: var(--amber); }

.hero-float-3 {
  bottom: 5%;
  right: 5%;
  animation-delay: 2.6s;
}

.hero-float-3 .float-card-accent { background: var(--green-400); }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-600), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  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; }
}

/* --- Section Shared --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-700);
  margin-bottom: 1rem;
}

.label-line {
  width: 32px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}

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

.text-accent { color: var(--green-700); }

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

/* --- About Section --- */
.about {
  padding: 7rem 1.5rem;
  background: var(--white);
  position: relative;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2.5rem;
}

.about-text { max-width: 500px; }

.about-body {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-image-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--green-500);
  border-radius: var(--radius-lg);
  bottom: -30px;
  right: -30px;
  z-index: -1;
  opacity: 0.3;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-800);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

/* --- Menu Section --- */
.menu {
  padding: 7rem 1.5rem;
  background: var(--cream);
  position: relative;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.menu-cat-btn {
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--white);
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.menu-cat-btn:hover {
  color: var(--green-700);
  border-color: var(--green-200, #a7f3d0);
}

.menu-cat-btn.active {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

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

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

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

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

.menu-card-body {
  padding: 1.25rem;
}

.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-dark);
}

.menu-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-600);
  background: var(--green-50);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Story Section --- */
.story {
  padding: 7rem 1.5rem;
  background: var(--green-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-visual { position: relative; }

.story-img-stack {
  position: relative;
  height: 500px;
}

.story-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 75%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.story-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--green-800);
}

.story-img-1 img, .story-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-quote-card {
  position: absolute;
  top: 55%;
  right: -10%;
  background: var(--white);
  color: var(--text-dark);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  z-index: 2;
}

.story-quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0.5rem 0;
}

.story-quote-attr {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-700);
}

.story-content .section-label { color: var(--green-400); }
.story-content .section-label .label-line { background: var(--green-400); }
.story-content .section-title { color: var(--white); }
.story-content .text-accent { color: var(--green-400); }

.story-body {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.story-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-block { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-400);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* --- Visit Section --- */
.visit {
  padding: 7rem 1.5rem;
  background: var(--cream);
}

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

.visit-header {
  text-align: center;
  margin-bottom: 3rem;
}

.visit-header .section-subtitle { margin: 0 auto; }

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

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.info-card:hover {
  border-color: var(--green-200, #a7f3d0);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}

.info-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.info-card-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.info-card-content a {
  color: var(--green-700);
  font-weight: 500;
  transition: var(--transition);
}

.info-card-content a:hover { color: var(--green-500); }

/* Form */
.form-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream-light);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input::placeholder { color: var(--text-muted); }

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

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

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

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-800);
  margin-bottom: 0.4rem;
}

.success-title + p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 6rem 1.5rem;
  background: var(--green-800);
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--green-400);
  top: -200px;
  left: -100px;
}

.cta-shape-2 {
  width: 250px;
  height: 250px;
  background: var(--amber);
  bottom: -100px;
  right: 10%;
}

.cta-shape-3 {
  width: 150px;
  height: 150px;
  background: var(--white);
  top: 20%;
  right: 25%;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 0;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links ul, .footer-hours ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li a, .footer-hours li span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links li a:hover { color: var(--green-400); }

.hours-day {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.hours-time {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* --- Scroll Reveal --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-left { max-width: 100%; text-align: center; }
  .hero-subheadline { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-cards { max-width: 500px; margin: 0 auto; min-height: 450px; }
  .hero-float-1 { right: 0; }
  .hero-float-2 { left: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-text { max-width: 100%; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-visual { order: -1; }
  .story-img-stack { height: 400px; }
  .story-quote-card { right: 0; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }

  .hero { padding: 7rem 1.25rem 4rem; min-height: auto; }
  .hero-cards { min-height: 380px; }
  .hero-float { display: none; }

  .about { padding: 4rem 1.25rem; }
  .about-features { grid-template-columns: 1fr; }
  .about-badge { position: relative; bottom: auto; left: auto; transform: none; margin-top: 1rem; display: inline-flex; }

  .menu { padding: 4rem 1.25rem; }
  .menu-grid { grid-template-columns: 1fr; }

  .story { padding: 4rem 1.25rem; }
  .story-img-stack { height: 320px; }
  .story-quote-card { position: relative; top: auto; right: auto; margin-top: 1rem; max-width: 100%; }
  .story-stats { flex-wrap: wrap; justify-content: center; }

  .visit { padding: 4rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }

  .cta-banner { padding: 4rem 1.25rem; }

  .footer { padding: 3rem 1.25rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero { padding: 6rem 1rem 3rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-cards { min-height: 300px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
