/* ========================================
   Memory Lane Again — Styles
   Forest Green + Off-White Theme
   ======================================== */

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

:root {
  --green-900: #1a3a25;
  --green-800: #2D5A3D;
  --green-700: #3a7a50;
  --green-600: #4a9c65;
  --green-500: #5db878;
  --green-400: #7ec996;
  --green-300: #b5e0be;
  --green-200: #d4efd0;
  --green-100: #eaf5e6;
  --green-50: #f4faf2;

  --cream-900: #3d3a35;
  --cream-800: #5a5650;
  --cream-700: #7a756e;
  --cream-600: #9a948c;
  --cream-500: #b8b0a6;
  --cream-400: #d4cdc4;
  --cream-300: #e8e2da;
  --cream-200: #f0ebe4;
  --cream-100: #f7f3ed;
  --cream-50: #faf8f5;
  --cream-25: #fdfcfa;

  --white: #ffffff;
  --black: #1a1a1a;

  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito', 'Segoe UI', system-ui, sans-serif;

  --shadow-sm: 0 1px 3px rgba(45, 90, 61, 0.06), 0 1px 2px rgba(45, 90, 61, 0.04);
  --shadow-md: 0 4px 16px rgba(45, 90, 61, 0.08), 0 2px 6px rgba(45, 90, 61, 0.04);
  --shadow-lg: 0 12px 40px rgba(45, 90, 61, 0.12), 0 4px 12px rgba(45, 90, 61, 0.06);
  --shadow-xl: 0 24px 60px rgba(45, 90, 61, 0.14), 0 8px 20px rgba(45, 90, 61, 0.08);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--cream-900);
  background: var(--cream-25);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green-800);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 700;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
  color: var(--white);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 90, 61, 0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 248, 245, 0.96);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-decoration: none;
  transition: color var(--transition);
}

.logo:hover {
  color: var(--green-700);
}

.logo em {
  font-style: italic;
  color: var(--green-600);
}

.logo-light {
  color: var(--cream-100);
}

.logo-light em {
  color: var(--green-300);
}

.logo-light:hover {
  color: var(--cream-100);
}

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

.main-nav a {
  color: var(--cream-800);
  font-weight: 600;
  font-size: 0.938rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.main-nav a:hover {
  color: var(--green-700);
  background: var(--green-100);
}

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: var(--green-100);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.938rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline-light:hover {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* ========================================
   SECTION HELPERS
   ======================================== */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--green-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--cream-700);
  max-width: 600px;
  line-height: 1.8;
}

.section-lead.center {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 37, 0.82) 0%,
    rgba(45, 90, 61, 0.70) 50%,
    rgba(58, 122, 80, 0.55) 100%
  );
}

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

.hero-tag {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-200);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-headline em {
  font-style: italic;
  color: var(--green-300);
}

.hero-sub {
  font-size: 1.188rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.badge svg {
  color: var(--green-300);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

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

/* ========================================
   ABOUT
   ======================================== */
.about {
  background: var(--cream-25);
}

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

.about-images {
  position: relative;
}

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

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

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--cream-25);
}

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

.about-floating-card {
  position: absolute;
  top: 32px;
  right: -20px;
  background: var(--green-700);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

.about-floating-card .floating-number {
  display: block;
  font-size: 2rem;
  margin-bottom: 4px;
}

.about-floating-card .floating-label {
  font-size: 0.813rem;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0.9;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.lead {
  font-size: 1.063rem;
  color: var(--cream-700);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--cream-700);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-300);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.813rem;
  font-weight: 700;
  color: var(--cream-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-300);
}

/* ========================================
   WHAT WE OFFER
   ======================================== */
.what-we-offer {
  background: var(--green-50);
}

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

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

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

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

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-body {
  padding: 28px;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: var(--radius-md);
  color: var(--green-700);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.card:hover .card-icon {
  background: var(--green-700);
  color: var(--white);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--green-900);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-body p {
  font-size: 0.938rem;
  color: var(--cream-700);
  line-height: 1.75;
}

/* ========================================
   WHY SHOP
   ======================================== */
.why-shop {
  background: var(--cream-25);
}

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

.why-content .section-title {
  margin-bottom: 16px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.why-item {
  display: flex;
  gap: 20px;
}

.why-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: var(--radius-md);
  color: var(--green-700);
  transition: all var(--transition);
}

.why-item:hover .why-icon {
  background: var(--green-700);
  color: var(--white);
  transform: scale(1.05);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.188rem;
  color: var(--green-900);
  margin-bottom: 6px;
  line-height: 1.3;
}

.why-text {
  font-size: 0.938rem;
  color: var(--cream-700);
  line-height: 1.75;
}

.why-visual {
  position: relative;
}

.why-img-stack {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.why-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--green-200);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  background: var(--green-800);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.testimonials .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--green-300);
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--green-400);
  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;
}

.author-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-600);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.125rem;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-weight: 800;
  color: var(--white);
  font-size: 0.938rem;
}

.author-location {
  display: block;
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* ========================================
   VISIT
   ======================================== */
.visit {
  background: var(--cream-25);
}

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

.visit-info .section-title {
  margin-bottom: 16px;
}

.visit-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.visit-details li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

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

.visit-details strong {
  display: block;
  font-size: 0.813rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-800);
  margin-bottom: 4px;
}

.visit-details span,
.visit-details a {
  font-size: 0.938rem;
  color: var(--cream-700);
  line-height: 1.6;
}

.visit-details a:hover {
  color: var(--green-600);
}

.visit-map {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.map-link img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.map-link:hover img {
  transform: scale(1.03);
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(transparent, rgba(26, 58, 37, 0.85));
  color: var(--white);
  font-weight: 700;
  font-size: 0.938rem;
  transition: background var(--transition);
}

.map-link:hover .map-overlay {
  background: linear-gradient(transparent, rgba(26, 58, 37, 0.95));
}

.visit-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

/* ========================================
   CONTACT
   ======================================== */
.contact {
  background: var(--green-50);
}

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

.contact-content .section-title {
  margin-bottom: 16px;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

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

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--green-800);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.938rem;
  color: var(--cream-900);
  background: var(--cream-50);
  border: 2px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(93, 184, 120, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--cream-500);
}

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

.form-note {
  font-size: 0.813rem;
  color: var(--cream-600);
  text-align: center;
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: var(--radius-full);
  color: var(--green-700);
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-800);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.938rem;
  color: var(--cream-700);
  line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--green-900);
  color: var(--cream-300);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand p {
  font-size: 0.938rem;
  line-height: 1.8;
  margin-top: 16px;
  color: var(--cream-400);
  max-width: 280px;
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.063rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-hours ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--cream-400);
  font-size: 0.938rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--green-400);
  padding-left: 4px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.938rem;
}

.footer-hours span:last-child {
  color: var(--green-400);
  font-weight: 700;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-500);
}

.footer-contact a {
  color: var(--cream-400);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.813rem;
  color: var(--cream-600);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid,
  .visit-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .about-img-secondary {
    right: -20px;
    bottom: -24px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

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

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

  .main-nav a {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    text-align: center;
  }

  .hero-headline {
    font-size: clamp(1.875rem, 7vw, 2.75rem);
  }

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

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

  .hero-scroll {
    display: none;
  }

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

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

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

  .contact-form-wrapper {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .about-img-secondary {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: 16px;
    border: none;
  }

  .about-floating-card {
    right: 16px;
    top: -16px;
  }

  .why-accent {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-content {
    padding-top: 64px;
  }

  .hero-tag {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

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

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .card-img {
    height: 180px;
  }
}
