/* ===========================
   Viking Harvest Farm - CSS
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark:   #1a4020;
  --green-main:   #2d5c1e;
  --green-light:  #4a8c2a;
  --green-pale:   #eef6e8;
  --amber:        #d4a017;
  --amber-light:  #f5c842;
  --brown:        #5c3d1e;
  --cream:        #faf8f2;
  --white:        #ffffff;
  --text-dark:    #1c1c1c;
  --text-mid:     #4a4a4a;
  --text-light:   #7a7a7a;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.16);
  --radius:       12px;
  --transition:   .3s ease;
}

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

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

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

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-main); border-radius: 4px; }

/* =================== HEADER / NAV =================== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(12px);
  border-bottom: 2px solid #e8f0e0;
  transition: var(--transition);
}
header.scrolled { box-shadow: var(--shadow-md); }

nav {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 80px;
}

.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none;
}
.nav-logo img { height: 58px; width: auto; display: block; }
.nav-logo .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.nav-logo .logo-text { color: var(--white); }
.nav-logo .logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; line-height: 1.1; }
.nav-logo .logo-text span { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-light); }

.nav-links {
  display: flex; align-items: center; gap: .25rem;
  list-style: none;
}
.nav-links a {
  color: #1a4020;
  text-decoration: none; font-size: .875rem; font-weight: 500;
  padding: .5rem .9rem; border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-main);
  background: #eef6e8;
}

.nav-cta {
  background: linear-gradient(135deg, var(--amber), var(--amber-light)) !important;
  color: var(--green-dark) !important; font-weight: 700 !important;
  padding: .5rem 1.2rem !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,160,23,.4) !important; background: rgba(0,0,0,0) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: var(--transition); display: block; }

/* =================== HERO =================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a4020 0%, #2d5c1e 45%, #3d6e28 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-floating {
  position: absolute;
  border-radius: 50%; opacity: .06; filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}
.hero-floating:nth-child(1) { width: 500px; height: 500px; background: var(--green-light); top: -100px; right: -100px; }
.hero-floating:nth-child(2) { width: 300px; height: 300px; background: var(--amber); bottom: 10%; left: 5%; animation-delay: -4s; }

.hero-content {
  max-width: 1280px; margin: 0 auto; padding: 6rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.3);
  color: var(--amber-light); padding: .4rem 1rem; border-radius: 20px;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white); line-height: 1.1; font-weight: 800;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--amber-light); }
.hero-desc { color: rgba(255,255,255,.75); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2.5rem; max-width: 480px; }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: 50px; font-weight: 600;
  font-size: .95rem; text-decoration: none; cursor: pointer;
  border: none; transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(212,160,23,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,160,23,.5); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-green {
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  color: var(--white); box-shadow: 0 4px 20px rgba(45,106,45,.35);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45,106,45,.5); }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--amber-light); }
.hero-stat .label { font-size: .8rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }

.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  position: relative;
}
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1.5rem; backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.hero-card:first-child { grid-column: 1 / -1; }
.hero-card .icon { font-size: 2.5rem; margin-bottom: .75rem; display: block; }
.hero-card h4 { color: var(--white); font-weight: 600; margin-bottom: .4rem; }
.hero-card p { color: rgba(255,255,255,.6); font-size: .85rem; }

/* =================== SECTIONS =================== */
section { padding: 6rem 2rem; }
.container { max-width: 1280px; margin: 0 auto; }

.section-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green-pale); color: var(--green-main);
  padding: .35rem .9rem; border-radius: 20px;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--green-dark); line-height: 1.2; margin-bottom: 1rem;
}
.section-title .accent { color: var(--green-main); }
.section-desc { color: var(--text-mid); font-size: 1.05rem; line-height: 1.8; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* =================== FEATURES =================== */
.features { background: var(--white); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}
.feature-card {
  padding: 2rem; border-radius: var(--radius);
  border: 1px solid #e8e8e8;
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-main), var(--green-light));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--green-dark); margin-bottom: .5rem; }
.feature-card p { color: var(--text-mid); font-size: .9rem; line-height: 1.7; }

/* =================== PRODUCTS =================== */
.products { background: var(--cream); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem; margin-top: 3.5rem;
}
.product-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.product-img.grain  { background: linear-gradient(135deg, #f5e6c8, #e8d5a0); }
.product-img.veggie { background: linear-gradient(135deg, #c8f5c8, #a0e0a0); }
.product-img.fruit  { background: linear-gradient(135deg, #f5c8c8, #e8a0a0); }
.product-img.dairy  { background: linear-gradient(135deg, #f0f0e8, #e0e0d0); }
.product-img.herb   { background: linear-gradient(135deg, #c8f0e0, #a0e0c8); }
.product-img.honey  { background: linear-gradient(135deg, #f5e0a0, #e8c860); }
.product-body { padding: 1.25rem; }
.product-tag {
  display: inline-block; background: var(--green-pale); color: var(--green-main);
  font-size: .72rem; font-weight: 600; padding: .25rem .7rem; border-radius: 12px;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem;
}
.product-card h3 { font-weight: 700; color: var(--green-dark); margin-bottom: .4rem; }
.product-card p { color: var(--text-mid); font-size: .875rem; line-height: 1.6; }
.product-footer {
  padding: 0 1.25rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.product-price { font-weight: 700; color: var(--green-main); font-size: 1.1rem; }
.product-btn {
  background: var(--green-main); color: var(--white);
  border: none; border-radius: 8px; padding: .4rem .9rem;
  font-size: .8rem; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.product-btn:hover { background: var(--green-dark); }

/* =================== ABOUT STRIP =================== */
.about-strip {
  background: linear-gradient(135deg, var(--green-dark), #0d2a0d);
  color: var(--white); padding: 5rem 2rem;
}
.about-strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-strip .section-title { color: var(--white); }
.about-strip .section-desc { color: rgba(255,255,255,.75); }
.about-strip .section-badge { background: rgba(255,255,255,.1); color: var(--amber-light); }
.values-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.value-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,.06); border-radius: 12px; padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,.08);
}
.value-item .vi { font-size: 1.5rem; flex-shrink: 0; }
.value-item h4 { color: var(--amber-light); font-weight: 600; margin-bottom: .25rem; }
.value-item p { color: rgba(255,255,255,.65); font-size: .875rem; }
.about-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.about-stat-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 1.75rem 1.5rem; text-align: center;
  transition: var(--transition);
}
.about-stat-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.about-stat-card .num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--amber-light); }
.about-stat-card .unit { font-size: 1rem; color: var(--amber); }
.about-stat-card .lbl { color: rgba(255,255,255,.65); font-size: .85rem; margin-top: .25rem; }

/* =================== SERVICES =================== */
.services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}
.service-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  background: var(--white); border: 1px solid #efefef;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-header {
  padding: 2rem; color: var(--white);
  position: relative; overflow: hidden;
}
.service-header.sh1 { background: linear-gradient(135deg, #1a4d1a, #2d7a2d); }
.service-header.sh2 { background: linear-gradient(135deg, #4a2a0a, #8a5a2a); }
.service-header.sh3 { background: linear-gradient(135deg, #1a3a5a, #2a6a9a); }
.service-header.sh4 { background: linear-gradient(135deg, #3a1a4a, #6a3a8a); }
.service-icon { font-size: 2.75rem; margin-bottom: .75rem; display: block; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; }
.service-body { padding: 1.5rem; }
.service-body p { color: var(--text-mid); font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.service-list li {
  color: var(--text-mid); font-size: .875rem;
  display: flex; align-items: center; gap: .5rem;
}
.service-list li::before { content: '✓'; color: var(--green-main); font-weight: 700; }

/* =================== PROCESS =================== */
.process { background: var(--cream); }
.process-steps {
  display: flex; gap: 0; margin-top: 3.5rem;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 40px; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, var(--green-main), var(--green-light));
  z-index: 0;
}
.process-step {
  flex: 1; text-align: center; padding: 0 1rem;
  position: relative; z-index: 1;
}
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  color: var(--white); font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; box-shadow: 0 4px 16px rgba(45,106,45,.35);
  transition: var(--transition);
}
.process-step:hover .step-num { transform: scale(1.1); }
.process-step h4 { font-weight: 700; color: var(--green-dark); margin-bottom: .4rem; }
.process-step p { color: var(--text-mid); font-size: .875rem; line-height: 1.6; }

/* =================== TESTIMONIALS =================== */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem; margin-top: 3.5rem;
}
.testimonial-card {
  padding: 2rem; border-radius: 16px;
  border: 1px solid #efefef; transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 5rem; color: var(--green-pale); font-family: 'Playfair Display', serif;
  line-height: 1;
}
.stars { color: var(--amber); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testimonial-card p { color: var(--text-mid); font-size: .925rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .9rem;
}
.author-info strong { display: block; font-size: .9rem; color: var(--green-dark); }
.author-info span { font-size: .8rem; color: var(--text-light); }

/* =================== GALLERY =================== */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem; margin-top: 3.5rem;
}
.gallery-item {
  border-radius: 12px; overflow: hidden;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; min-height: 160px;
  transition: var(--transition); cursor: pointer;
  position: relative;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; min-height: 340px; font-size: 7rem; background: linear-gradient(135deg, #c8f0c8, #90d090); }
.gallery-item:nth-child(5) { grid-column: span 2; background: linear-gradient(135deg, #f5e6b0, #e8cc70); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #f0e8c8, #d8c890); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #c8e8d0, #90c8a0); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #e8c8c8, #c89090); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, #c8d8f0, #90a8c8); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,58,26,.7); opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--white);
  font-size: 1rem; font-weight: 600; font-family: 'Inter', sans-serif;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* =================== CONTACT =================== */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 3.5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; border-radius: 12px;
  border: 1px solid #efefef; transition: var(--transition);
}
.contact-item:hover { border-color: var(--green-main); box-shadow: var(--shadow-sm); }
.contact-item .ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--green-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.contact-item h4 { font-weight: 700; color: var(--green-dark); margin-bottom: .25rem; font-size: .95rem; }
.contact-item p { color: var(--text-mid); font-size: .875rem; line-height: 1.6; }

.contact-form {
  background: var(--cream); padding: 2.5rem; border-radius: 20px;
  border: 1px solid #e8e8e0;
}
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--green-dark); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--green-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: .75rem 1rem; border-radius: 10px;
  border: 1.5px solid #e0e0d8; font-family: 'Inter', sans-serif;
  font-size: .9rem; transition: var(--transition);
  background: var(--white); color: var(--text-dark);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(45,106,45,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* =================== NEWSLETTER =================== */
.newsletter {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  padding: 5rem 2rem; text-align: center;
}
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: 2.25rem; color: var(--green-dark); margin-bottom: .75rem; }
.newsletter p { color: var(--brown); font-size: 1.05rem; margin-bottom: 2rem; }
.newsletter-form {
  display: flex; gap: .75rem; max-width: 500px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; padding: .875rem 1.25rem; border-radius: 50px;
  border: none; font-size: .95rem; outline: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.newsletter-form button {
  background: var(--green-dark); color: var(--white);
  border: none; border-radius: 50px; padding: .875rem 1.75rem;
  font-weight: 700; cursor: pointer; font-size: .9rem;
  transition: var(--transition); white-space: nowrap;
}
.newsletter-form button:hover { background: var(--green-main); transform: translateY(-2px); }

/* =================== FOOTER =================== */
footer {
  background: var(--green-dark); color: rgba(255,255,255,.8);
  padding: 4rem 2rem 0;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { margin: 1rem 0; color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none; font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--amber); color: var(--green-dark); transform: translateY(-2px); }
.footer-col h4 { color: var(--amber-light); font-weight: 600; margin-bottom: 1.25rem; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--amber-light); padding-left: 4px; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: .825rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: var(--amber-light); text-decoration: none; }

/* =================== PAGE BANNER =================== */
.page-banner {
  background: linear-gradient(135deg, var(--green-dark), #0d2a0d);
  color: var(--white); padding: 8rem 2rem 5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,5vw,4rem); font-weight: 800; margin-bottom: 1rem; }
.page-banner p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: 1.5rem; font-size: .875rem;
}
.breadcrumb a { color: var(--amber-light); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* =================== UTILITIES =================== */
.divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--green-main), var(--green-light)); border-radius: 2px; margin: 1rem 0 1.5rem; }
.text-center .divider { margin: 1rem auto 1.5rem; }

/* =================== ANIMATIONS =================== */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.fade-in { animation: fadeInUp .7s ease forwards; opacity: 0; }
.fade-in-delay-1 { animation-delay: .1s; }
.fade-in-delay-2 { animation-delay: .2s; }
.fade-in-delay-3 { animation-delay: .3s; }

/* =================== RESPONSIVE =================== */
@media(max-width:1024px){
  .hero-content { grid-template-columns:1fr; gap:3rem; }
  .hero-visual { max-width:480px; }
  .about-strip-inner { grid-template-columns:1fr; gap:3rem; }
  .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .process-steps::before { display:none; }
}
@media(max-width:768px){
  nav { padding:0 1.25rem; }
  .nav-links { 
    display:none; flex-direction:column; gap:0;
    position:absolute; top:72px; left:0; right:0;
    background:var(--green-dark); padding:1rem 0;
    border-bottom: 2px solid #e8f0e0;
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding:.75rem 1.5rem; border-radius:0; }
  .hamburger { display:flex; }
  .hero-content { padding:4rem 1.25rem; }
  .hero-stats { flex-wrap:wrap; gap:1.25rem; }
  .gallery-grid { grid-template-columns:1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column:span 2; }
  .process-steps { flex-direction:column; gap:2rem; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { flex-direction:column; gap:.5rem; text-align:center; }
  .newsletter-form { flex-direction:column; }
  section { padding:4rem 1.25rem; }
}
