/* ============================================
   AGROFARMA — Luxury Rustic Design System
   ============================================ */

/* --- CSS Variables --- */
:root {
  --background: 35 30% 98%;
  --foreground: 145 45% 10%;
  --card: 0 0% 100%;
  --card-foreground: 145 45% 10%;
  --primary: 145 45% 25%;
  --primary-foreground: 35 30% 98%;
  --secondary: 35 30% 88%;
  --secondary-foreground: 145 45% 15%;
  --accent: 28 45% 45%;
  --accent-foreground: 35 30% 98%;
  --muted: 145 10% 94%;
  --muted-foreground: 145 20% 40%;
  --border: 145 20% 90%;
  --radius: 0.75rem;
  --gradient-forest: linear-gradient(135deg, hsl(145 45% 25%), hsl(145 45% 15%));
  --gradient-gold: linear-gradient(135deg, hsl(35 40% 60%), hsl(35 40% 40%));
  --nav-height: 80px;
}

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

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

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  color: hsl(var(--foreground));
}

.heading-display {
  font-size: clamp(3rem, 10vw, 6.5rem);
  letter-spacing: -0.04em;
}

.heading-section {
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}

.heading-sub {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--accent));
  margin-bottom: 1rem;
  display: block;
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-center { text-align: center; }
.text-white { color: white; }

/* --- Layout --- */
.section-padding {
  padding: 5rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-full {
  padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
  .section-padding { padding: 8rem 4rem; }
  .section-full { padding: 8rem 4rem; }
}

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

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

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

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- Buttons --- */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: hsl(var(--primary));
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px -10px hsla(145, 45%, 20%, 0.4);
  text-decoration: none;
}

.btn-hero:hover {
  transform: translateY(-4px);
  background: hsl(var(--foreground));
  box-shadow: 0 20px 40px -15px hsla(145, 45%, 10%, 0.5);
}

.cta-section .btn-hero:hover {
  background: white;
  color: hsl(var(--primary));
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid white;
  color: white;
  background: transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: white;
  color: hsl(var(--foreground));
}

.btn-outline-dark {
  border-color: hsl(var(--foreground));
  color: hsl(var(--foreground));
}

.btn-outline-dark:hover {
  background: hsl(var(--foreground));
  color: white;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* --- Background Utilities --- */
.bg-forest { background-color: hsl(var(--primary)); color: white; }
.bg-cream { background-color: hsl(var(--background)); color: hsl(var(--foreground)); }
.bg-deep { background-color: hsl(var(--foreground)); color: white; }
.bg-sage { background-color: hsl(var(--muted)); color: hsl(var(--foreground)); }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 2rem;
}

.navbar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-logo span {
  font-weight: 400;
  font-style: italic;
}

.navbar.scrolled .navbar-logo {
  color: hsl(var(--foreground));
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .navbar-nav { display: flex; }
}

.navbar-link {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  text-decoration: none;
  position: relative;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--accent));
  transition: width 0.3s;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

.navbar.scrolled .navbar-link {
  color: hsl(var(--foreground));
}

.navbar-link:hover {
  color: white;
}

.navbar.scrolled .navbar-link:hover {
  color: hsl(var(--primary));
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.3s;
}

.dropdown-arrow path {
  stroke: currentColor;
}

.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
  background: hsl(var(--muted));
  color: hsl(var(--primary));
}

/* Navbar CTA */
.navbar-cta {
  display: none;
  padding: 0.75rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: hsl(var(--primary));
  color: white;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

@media (min-width: 1024px) {
  .navbar-cta { display: inline-flex; }
}

.navbar-cta:hover {
  background: hsl(var(--foreground));
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

.navbar.scrolled .hamburger span {
  background: hsl(var(--foreground));
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: hsl(var(--foreground));
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: white;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu .divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu .mobile-cta {
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  background: hsl(var(--primary));
  color: white;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.hero-short {
  min-height: 50vh;
}

.hero-shorter {
  min-height: 40vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 8s ease-out forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1.15); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.4), rgba(0,0,0,0.75));
}

.hero-centered .hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.45), rgba(0,0,0,0.8));
}

.hero-shorter .hero-overlay,
.hero-short .hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 8rem 2rem 4rem;
  animation: hero-fade 1s ease-out 0.3s both;
}

@keyframes hero-fade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1024px) {
  .hero-content { padding: 10rem 4rem 6rem; }
}

.hero-content .heading-display {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 4px 40px rgba(0,0,0,0.3);
}

.hero-content .heading-section {
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 4px 40px rgba(0,0,0,0.3);
}

.hero-content .eyebrow {
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-content .breadcrumb {
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb .sep {
  opacity: 0.5;
}

.breadcrumb .current {
  color: white;
  font-weight: 500;
}

/* --- Cards --- */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
}

.offer-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
}

.offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.offer-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
}

.offer-card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: white;
}

.offer-card-content h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.offer-card-content p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.offer-card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--accent));
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.offer-card:hover .offer-card-link {
  gap: 0.75rem;
}

/* --- Stats Bar --- */
.stats-bar {
  background: hsl(var(--foreground));
  padding: 3rem 1.5rem;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  text-shadow: 0 0 20px hsla(35, 40%, 45%, 0.3);
}

.stat-item p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* --- Reviews --- */
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid hsl(var(--border));
}

.review-stars {
  color: #f59e0b;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
}

.review-author {
  font-weight: 600;
  font-size: 0.875rem;
}

/* --- Image Zoom --- */
.image-zoom {
  overflow: hidden;
  border-radius: var(--radius);
}

.image-zoom img {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-zoom:hover img {
  transform: scale(1.08);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, hsl(145 45% 18%), hsl(145 45% 28%));
  padding: 5rem 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .cta-section { padding: 8rem 4rem; }
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* --- Footer --- */
.footer {
  background: hsl(var(--foreground));
  color: white;
  padding: 5rem 1.5rem 2rem;
}

@media (min-width: 1024px) {
  .footer { padding: 5rem 4rem 2rem; }
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.8125rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--accent));
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: white;
  color: hsl(var(--foreground));
  border-color: white;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: white;
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: white;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsla(145, 45%, 25%, 0.1);
}

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

.form-message {
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.9375rem;
  display: none;
}

.form-message.success {
  display: block;
  background: hsla(145, 45%, 25%, 0.1);
  color: hsl(var(--primary));
  border: 1px solid hsla(145, 45%, 25%, 0.2);
}

.form-message.error {
  display: block;
  background: hsla(0, 70%, 50%, 0.1);
  color: hsl(0, 70%, 40%);
  border: 1px solid hsla(0, 70%, 50%, 0.2);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* --- Gallery --- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid hsl(var(--border));
  border-radius: 50px;
  background: white;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: hsl(var(--primary));
  color: white;
  border-color: hsl(var(--primary));
}

.gallery-grid {
  columns: 4 280px;
  column-gap: 1rem;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .gallery-grid { columns: 2 150px; }
}

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

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.gallery-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid hsl(var(--border));
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  text-align: left;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* --- Pricing Table --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing-table th {
  background: hsl(var(--primary));
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 1.25rem;
  text-align: left;
}

.pricing-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid hsl(var(--border));
  font-size: 0.9375rem;
}

.pricing-table tr:nth-child(even) td {
  background: hsl(var(--muted));
}

.pricing-table .price {
  font-weight: 700;
  color: hsl(var(--primary));
  font-size: 1.0625rem;
}

/* --- Feature Grid --- */
.feature-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid hsl(var(--border));
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: hsla(145, 45%, 25%, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: hsl(var(--primary));
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --- Mini Gallery (subpage) --- */
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .mini-gallery { grid-template-columns: repeat(3, 1fr); }
}

.mini-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.6s ease;
}

.mini-gallery a:hover img {
  transform: scale(1.03);
}

/* --- Contact Info --- */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: hsla(145, 45%, 25%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: hsl(var(--primary));
}

.contact-info-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1rem;
  color: hsl(var(--foreground));
}

.contact-info-item a:hover {
  color: hsl(var(--primary));
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* --- Floating Phone (mobile) --- */
.floating-phone {
  display: flex;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: white;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px hsla(145, 45%, 20%, 0.4);
  animation: phone-pulse 2s infinite;
  will-change: transform;
}

@media (min-width: 1024px) {
  .floating-phone { display: none; }
}

@keyframes phone-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Reveal variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Gallery item fade-in on load */
.gallery-item {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item.loaded {
  opacity: 1;
}

/* Counter animation glow */
.stat-item h3 {
  transition: text-shadow 0.3s;
}

.stat-item.counted h3 {
  text-shadow: 0 0 30px hsla(35, 40%, 45%, 0.5);
}

/* --- 404 --- */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-page h1 {
  font-size: clamp(6rem, 15vw, 12rem);
  color: hsl(var(--primary));
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page p {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  max-width: 500px;
  margin-bottom: 2rem;
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

/* --- Video Container --- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   NEW: Hero Centered (demo-style)
   ============================================ */
.hero-centered .hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-centered .hero-content p {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .btn-group {
  justify-content: center;
}

.hero-centered .eyebrow {
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-italic {
  font-style: italic;
  font-weight: 400;
  opacity: 0.92;
}

/* Scroll down indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   NEW: About section — inline stats + floating quote
   ============================================ */
.about-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.about-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: hsl(var(--primary));
  display: block;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
  display: block;
}

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

.about-quote-float {
  position: absolute;
  bottom: -2rem;
  left: -1.5rem;
  background: hsl(var(--foreground));
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  max-width: 280px;
  z-index: 2;
  display: none;
}

@media (min-width: 768px) {
  .about-quote-float { display: block; }
}

.about-quote-float p:first-child {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.5;
}

.about-quote-float p:last-child {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

/* ============================================
   NEW: Stats with description
   ============================================ */
.stat-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

/* ============================================
   NEW: Review cards v2 (demo-style with quote icon)
   ============================================ */
.review-card-v2 {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
  border: 1px solid hsl(var(--border));
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.15);
}

.review-quote-icon {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.review-card-v2 .review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: hsl(var(--foreground));
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}

.review-card-v2 .review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card-v2 .review-author {
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-card-v2 .review-stars {
  color: #f59e0b;
  font-size: 0.875rem;
  display: flex;
  gap: 2px;
  margin-bottom: 0;
}

/* ============================================
   OFFER VARIANTS — for user to pick
   ============================================ */

/* Variant label */
.variant-label {
  text-align: center;
  padding: 1rem;
  background: hsl(var(--foreground));
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* --- Variant 1: BENTO GRID --- */
.offer-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .offer-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .offer-bento .bento-large {
    grid-row: span 2;
    min-height: 650px;
  }
}

.bento-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.bento-large { min-height: 500px; }

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.bento-card .bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}

.bento-card .bento-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: white;
  width: 100%;
}

.bento-card .bento-content h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.bento-large .bento-content h3 {
  font-size: 2rem;
}

.bento-card .bento-content p {
  font-size: 0.875rem;
  opacity: 0.75;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  max-width: 350px;
}

/* --- Variant 2: FULL-WIDTH ALTERNATING --- */
.offer-alt-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: white;
  border: 1px solid hsl(var(--border));
}

@media (min-width: 768px) {
  .offer-alt-card {
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
  }
  .offer-alt-card:nth-child(even) .offer-alt-image {
    order: 2;
  }
  .offer-alt-card:nth-child(even) .offer-alt-text {
    order: 1;
  }
}

.offer-alt-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.offer-alt-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.offer-alt-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.offer-alt-text h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.offer-alt-text p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.offer-alt-link {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--primary));
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.offer-alt-link:hover {
  gap: 0.75rem;
}

/* --- Variant 3: INTERACTIVE HOVER CARDS (2x2) --- */
.offer-hover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .offer-hover-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.offer-hover-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 550px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .offer-hover-card { height: 600px; }
}

.offer-hover-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
  filter: grayscale(15%);
}

.offer-hover-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.offer-hover-card .hover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
}

.offer-hover-card .hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 1;
  color: white;
}

.offer-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  color: white;
}

.offer-hover-card .hover-content h3 {
  font-size: 1.75rem;
  color: white;
  margin-bottom: 0.5rem;
}

.offer-hover-card .hover-desc {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}

.offer-hover-card:hover .hover-desc {
  opacity: 1;
  max-height: 200px;
  transform: translateY(0);
}

.offer-hover-link {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  border-bottom: 2px solid hsl(var(--accent));
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.offer-hover-card:hover .offer-hover-link {
  gap: 0.75rem;
}

/* --- Variant 4: MAGAZINE EDITORIAL --- */
.offer-mag-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 400px;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-mag-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
  .offer-mag-card {
    grid-template-columns: 5fr 4fr;
    min-height: 500px;
  }
  .offer-mag-card:nth-child(even) {
    grid-template-columns: 4fr 5fr;
  }
  .offer-mag-card:nth-child(even) .offer-mag-image {
    order: 2;
  }
  .offer-mag-card:nth-child(even) .offer-mag-text {
    order: 1;
  }
}

.offer-mag-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.offer-mag-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.offer-mag-card:hover .offer-mag-image img {
  transform: scale(1.04);
}

.offer-mag-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background: hsl(var(--foreground));
  color: white;
}

.offer-mag-card:nth-child(even) .offer-mag-text {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.offer-mag-text .eyebrow {
  color: hsl(var(--accent));
}

.offer-mag-text h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: inherit;
  margin-bottom: 1rem;
}

.offer-mag-text p {
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.offer-mag-link {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--accent));
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.offer-mag-link:hover {
  gap: 0.75rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator,
  .hero-bg { animation: none; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .bento-card img, .offer-alt-image img, .offer-hover-card img, .offer-mag-image img {
    transition: none;
  }
  .offer-hover-card .hover-desc {
    opacity: 1;
    max-height: 200px;
    transform: none;
  }
}
