/* ==========================================================================
   Doris Greenhouse — Main Stylesheet
   Color Palette: #606C38 | #9BA17B | #DDA15E | #FEFAE0
   ========================================================================== */

/* === CUSTOM PROPERTIES === */
:root {
  --primary:        #606C38;
  --primary-light:  #9BA17B;
  --accent:         #DDA15E;
  --bg:             #FEFAE0;
  --dark:           #2C2C1E;
  --text:           #3D3D2E;
  --text-light:     #6B6B56;
  --white:          #FFFFFF;
  --shadow-sm:      0 2px 12px rgba(96,108,56,.10);
  --shadow-md:      0 8px 32px rgba(96,108,56,.16);
  --shadow-lg:      0 24px 64px rgba(96,108,56,.22);
  --transition:     0.35s cubic-bezier(.4,0,.2,1);
  --radius:         12px;
  --radius-lg:      24px;
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Nunito', 'Helvetica Neue', Arial, sans-serif;
  --container:      1200px;
  --section-pad:    110px 0;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--dark); }

/* === LAYOUT UTILITIES === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.section-header { margin-bottom: 60px; }
.section-header.text-center .section-title::after { margin: 14px auto 0; }

.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  margin-top: 14px;
  border-radius: 4px;
  transition: width .7s ease;
}

.section-header.in-view .section-title::after { width: 110px; }

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: .4px;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: #4e5a2d; border-color: #4e5a2d; transform: translateY(-2px); box-shadow: var(--shadow-md); }

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

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover { background: #c98f4a; border-color: #c98f4a; transform: translateY(-2px); box-shadow: var(--shadow-md); }

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

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.from-left  { transform: translateX(-48px); }
.reveal.from-right { transform: translateX(48px); }
.reveal.scale-in   { transform: scale(.92); }
.reveal.in-view    { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }
.reveal-d6 { transition-delay: .6s; }

/* === PROGRESS BAR === */
#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 10001;
  transition: width .1s linear;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all .4s ease;
}

#navbar.scrolled {
  background: rgba(254,250,224,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav-logo-icon:hover { transform: rotate(20deg) scale(1.05); }

.nav-logo-icon svg { width: 24px; height: 24px; fill: var(--bg); }

.nav-logo-text { line-height: 1.1; }

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo-name { color: var(--primary); }

.nav-logo-sub {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo-sub { color: var(--primary-light); }

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: .2px;
}
#navbar.scrolled .nav-menu a { color: var(--dark); }

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--primary);
  color: var(--white) !important;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
}
.nav-cta:hover { background: var(--primary) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Fullscreen */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  padding: 12px 32px;
  border-radius: var(--radius);
  transition: all .4s ease;
  opacity: 0;
  transform: translateY(24px);
}
.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open a:nth-child(1) { transition-delay: .08s; }
.mobile-nav.open a:nth-child(2) { transition-delay: .14s; }
.mobile-nav.open a:nth-child(3) { transition-delay: .20s; }
.mobile-nav.open a:nth-child(4) { transition-delay: .26s; }
.mobile-nav.open a:nth-child(5) { transition-delay: .32s; }
.mobile-nav.open a:nth-child(6) { transition-delay: .38s; }
.mobile-nav a:hover { color: var(--accent); background: rgba(255,255,255,.08); }

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  transition: transform var(--transition);
}
.mobile-nav-close:hover { transform: rotate(90deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Home.jpg');
  background-size: cover;
  background-position: center;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1)   translateX(0); }
  to   { transform: scale(1.1) translateX(-2%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(44,44,30,.72) 0%,
    rgba(96,108,56,.55) 50%,
    rgba(44,44,30,.78) 100%
  );
}

/* Floating particles / leaves */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  5%   { opacity: .18; }
  95%  { opacity: .12; }
  100% { transform: translateY(-120px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 24px;
  max-width: 920px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(221,161,94,.88);
  color: var(--white);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown .8s ease .3s both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: blink 1.6s ease infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.6); }
}

.hero-title {
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
  animation: fadeInUp .85s ease .5s both;
}

.hero-title .highlight {
  color: var(--accent);
  display: block;
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(254,250,224,.88);
  max-width: 600px;
  margin: 0 auto 42px;
  line-height: 1.8;
  animation: fadeInUp .85s ease .7s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp .85s ease .9s both;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.3s both;
}

.scroll-indicator span {
  font-size: .68rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 16px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: rgba(255,255,255,.65);
  border-radius: 2px;
  animation: scrollBounce 2.2s ease infinite;
}

@keyframes scrollBounce {
  0%   { top: 6px;  opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}
.wave-divider svg { display: block; width: 100%; }

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: var(--section-pad);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-blob {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(155,161,123,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

/* Image side */
.about-image-wrap { position: relative; }

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.about-img-frame:hover img { transform: scale(1.05); }

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 118px;
  height: 118px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-family: var(--font-heading);
  box-shadow: var(--shadow-md);
  animation: spin 28s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about-badge .num { font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: .5rem; letter-spacing: 1.2px; text-transform: uppercase; opacity: .9; margin-top: 3px; }

/* Text side */
.about-text { padding-left: 10px; }

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.about-feat:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.about-feat:hover h4, .about-feat:hover p { color: var(--white); }

.feat-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.about-feat:hover .feat-icon { background: rgba(255,255,255,.2); }
.feat-icon svg { width: 20px; height: 20px; fill: var(--white); }

.feat-text h4 { font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; transition: color var(--transition); }
.feat-text p  { font-size: .78rem; color: var(--text-light); transition: color var(--transition); }

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid rgba(96,108,56,.1);
}

.stat { text-align: center; }

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-num sup { font-size: .5em; color: var(--accent); vertical-align: super; }

.stat-lbl {
  font-size: .88rem;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.4;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
#products {
  padding: var(--section-pad);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .45s ease;
}
.product-card:hover { transform: translateY(-14px); box-shadow: var(--shadow-lg); }

.prod-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.product-card:hover .prod-img img { transform: scale(1.1); }

.prod-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.prod-body { padding: 26px; }

.prod-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.product-card:hover .prod-icon { background: var(--primary); }
.product-card:hover .prod-icon svg { fill: var(--white); }
.prod-icon svg { width: 24px; height: 24px; fill: var(--primary); transition: fill var(--transition); }

.prod-body h3 { font-size: 1.22rem; margin-bottom: 10px; color: var(--dark); }
.prod-body p  { font-size: .9rem; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: var(--section-pad);
  background: var(--primary);
}

#gallery .section-title { color: var(--bg); }
#gallery .section-title::after { background: var(--accent); }
#gallery .section-subtitle { color: rgba(254,250,224,.7); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item:nth-child(6) { grid-column: span 2; aspect-ratio: auto; min-height: 200px; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.gallery-item:hover img { transform: scale(1.12); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(96,108,56,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 44px; height: 44px; fill: var(--white); transform: scale(.7); transition: transform var(--transition); }
.gallery-item:hover .gallery-overlay svg { transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 20px;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-height: 90vh; border-radius: var(--radius); object-fit: contain; }

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  transition: transform var(--transition);
}
.lightbox-close:hover { transform: rotate(90deg) scale(1.1); }

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-arrow:hover { background: rgba(255,255,255,.25); }
#lightboxPrev { left: 20px; }
#lightboxNext { right: 20px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us {
  padding: var(--section-pad);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 18vw;
  font-weight: 700;
  color: var(--bg);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.why-content { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  text-align: center;
  padding: 44px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: all .45s cubic-bezier(.34,1.56,.64,1);
}
.why-card:hover { background: var(--primary); transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.why-card:hover h3, .why-card:hover p { color: var(--white); }
.why-card:hover .why-icon { background: rgba(255,255,255,.18); }
.why-card:hover .why-icon svg { fill: var(--white); transform: scale(1.15); }

.why-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  transition: all var(--transition);
}
.why-icon svg { width: 36px; height: 36px; fill: var(--white); transition: all var(--transition); }

.why-card h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: 12px; transition: color var(--transition); }
.why-card p  { font-size: .9rem; color: var(--text-light); line-height: 1.75; transition: color var(--transition); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: var(--section-pad);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.testimonials-inner {
  max-width: 860px;
  margin: 0 auto;
}

.testimonials-slider { overflow: hidden; position: relative; }

.testimonial-track {
  display: flex;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}

.testimonial-slide { min-width: 100%; padding: 0 4px; }

.t-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.t-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 36px;
  font-family: var(--font-heading);
  font-size: 9rem;
  color: var(--primary);
  opacity: .08;
  line-height: 1;
  pointer-events: none;
}

.t-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 24px; }
.t-stars svg { width: 20px; height: 20px; fill: var(--accent); }

.t-quote {
  font-size: clamp(.98rem, 1.8vw, 1.15rem);
  color: var(--text);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.t-author { display: flex; align-items: center; justify-content: center; gap: 14px; }

.t-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.t-info h4 { font-size: .98rem; color: var(--dark); text-align: left; }
.t-info span { font-size: .82rem; color: var(--text-light); }

/* Slider nav */
.t-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--primary-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.t-dot.active { width: 30px; background: var(--primary); }

.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.t-btn:hover { background: var(--primary); }
.t-btn:hover svg { fill: var(--white); }
.t-btn svg { width: 18px; height: 18px; fill: var(--primary); transition: fill var(--transition); }

/* ============================================================
   HOURS & LOCATION
   ============================================================ */
#location {
  padding: var(--section-pad);
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-top: 64px;
}

.hours-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}

.hours-heading {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hours-heading svg { width: 26px; height: 26px; fill: var(--accent); }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(96,108,56,.1);
  font-size: .95rem;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-row .day  { font-weight: 700; color: var(--dark); }
.hours-row .time { color: var(--text-light); }

.hours-row.current {
  background: var(--primary);
  margin: 4px -16px;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
}
.hours-row.current .day,
.hours-row.current .time { color: var(--white); }

.hours-note {
  margin-top: 22px;
  padding: 14px 16px;
  background: rgba(221,161,94,.14);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--text-light);
  border-left: 3px solid var(--accent);
  line-height: 1.65;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 440px;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 110px 0;
  background-image: url('../images/ready_to_grow_something_beautiful.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,44,30,.72);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 18px; }
.cta-banner p  { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 42px; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: var(--section-pad);
  background: linear-gradient(140deg, var(--primary) 0%, #4a5228 100%);
  position: relative;
  overflow: hidden;
}

#contact::before, #contact::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
#contact::before { width: 600px; height: 600px; background: rgba(255,255,255,.03); top: -200px; right: -200px; }
#contact::after  { width: 400px; height: 400px; background: rgba(221,161,94,.06); bottom: -150px; left: -100px; }

#contact .section-title { color: var(--bg); }
#contact .section-title::after { background: var(--accent); }
#contact .section-subtitle { color: rgba(254,250,224,.7); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  margin-top: 64px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.c-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.contact-info-item:hover .c-icon { background: var(--accent); }
.c-icon svg { width: 24px; height: 24px; fill: var(--bg); }

.c-text h4 { font-size: .78rem; color: rgba(254,250,224,.55); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.c-text p, .c-text a { font-size: .98rem; color: var(--bg); line-height: 1.55; }
.c-text a:hover { color: var(--accent); }

.contact-social { display: flex; gap: 12px; margin-top: 36px; }

.contact-social a {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.contact-social a:hover { background: var(--accent); transform: translateY(-3px); }
.contact-social a svg { width: 22px; height: 22px; fill: var(--white); }

/* Form */
.form-wrap {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid rgba(255,255,255,.1);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }

label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(254,250,224,.75);
  margin-bottom: 8px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.fc {
  width: 100%;
  padding: 13px 18px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .97rem;
  outline: none;
  transition: all var(--transition);
}
.fc::placeholder { color: rgba(255,255,255,.38); }
.fc:focus { background: rgba(255,255,255,.16); border-color: var(--accent); box-shadow: 0 0 0 4px rgba(221,161,94,.18); }
textarea.fc { resize: vertical; min-height: 118px; }
select.fc option { background: var(--primary); color: var(--white); }

.honeypot { display: none !important; }

.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: .9rem;
  display: none;
}
.form-msg.success { background: rgba(96,108,56,.3); border: 1px solid rgba(155,161,123,.5); color: #c8e6c9; }
.form-msg.error   { background: rgba(198,40,40,.2);  border: 1px solid rgba(198,40,40,.4);   color: #ffcdd2; }

.form-note { font-size: .78rem; color: rgba(254,250,224,.45); margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  padding: 88px 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
}

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

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--bg);
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.48);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-social a svg { width: 18px; height: 18px; fill: var(--white); }

.footer-col h4 {
  font-size: .78rem;
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.48);
  transition: all var(--transition);
  display: flex;
  align-items: center;
}
.footer-links a::before { content: '›'; margin-right: 6px; transition: margin var(--transition); color: var(--accent); font-size: 1.1rem; opacity: 0; }
.footer-links a:hover { color: var(--accent); transform: translateX(4px); }
.footer-links a:hover::before { opacity: 1; margin-right: 8px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item p, .footer-contact-item a { font-size: .88rem; color: rgba(255,255,255,.48); line-height: 1.55; }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }

.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
}
#backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#backToTop:hover { background: var(--accent); transform: translateY(-3px); }
#backToTop svg { width: 22px; height: 22px; fill: var(--white); }

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */
.page-hero {
  padding: 160px 0 90px;
  background: linear-gradient(135deg, var(--primary) 0%, #3e4e20 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 72px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; }

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .82rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.45); }

.page-body {
  padding: 80px 0 100px;
}

.page-doc {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-doc .last-updated {
  display: inline-block;
  background: rgba(96,108,56,.1);
  color: var(--text-light);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .82rem;
  margin-bottom: 42px;
}

.page-doc h2 {
  font-size: 1.65rem;
  color: var(--primary);
  margin: 44px 0 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(96,108,56,.1);
}
.page-doc h2:first-of-type { border-top: none; margin-top: 0; }

.page-doc h3 {
  font-size: 1.18rem;
  color: var(--dark);
  margin: 26px 0 10px;
}

.page-doc p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.page-doc ul {
  list-style: disc;
  margin: 0 0 16px 24px;
}
.page-doc ul li { color: var(--text-light); line-height: 1.8; margin-bottom: 8px; }

.page-doc strong { color: var(--dark); font-weight: 700; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Spin for loader */
@keyframes spinLoader { to { transform: rotate(360deg); } }
.spin-loader { animation: spinLoader 1s linear infinite; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 480px; margin: 0 auto; }
  .about-text   { padding-left: 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 44px; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }
  .nav-menu    { display: none; }
  .hamburger   { display: flex; }
  .hero-cta    { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 2/1; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .why-grid    { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .about-features { grid-template-columns: 1fr; }
  .about-stats    { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .form-row    { grid-template-columns: 1fr; }
  .t-card      { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .form-wrap   { padding: 32px 24px; }
  #lightboxPrev, #lightboxNext { display: none; }
  .cta-banner  { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .hero-title  { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; aspect-ratio: 1; }
  .about-stats { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .about-badge { display: none; }
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
  .btn { min-height: 48px; }
  .nav-menu a, .mobile-nav a { min-height: 44px; display: flex; align-items: center; }
  .t-btn, #backToTop { min-width: 48px; min-height: 48px; }
}
