/* ============================================================
   GEARS EXTERIORS AND INTERLOCK — Main Stylesheet
   Fonts: Cormorant Garamond (display) + Jost (body)
   Palette: Forest green, stone grey, cream, warm white
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --green-dark:    #182918;
  --green-mid:     #2a4d1e;
  --green-accent:  #3e6b28;
  --green-light:   #5a8f3c;
  --stone:         #8a8770;
  --stone-light:   #c5ba9e;
  --stone-pale:    #e8e0d0;
  --cream:         #f6f2eb;
  --warm-white:    #fdfaf6;
  --text-dark:     #1a1c18;
  --text-mid:      #464840;
  --text-light:    #6e7066;
  --gold:          #b8993a;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', 'Segoe UI', sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;

  --shadow-sm:     0 2px 8px rgba(24,41,24,0.10);
  --shadow-md:     0 6px 24px rgba(24,41,24,0.14);
  --shadow-lg:     0 16px 56px rgba(24,41,24,0.18);

  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w:         1200px;
}

/* --- Reset & Base --- */
*, *::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-dark);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* --- Utility Classes --- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--green-accent);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-top: 1rem;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-accent);
  color: #fff;
  border-color: var(--green-accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-mid);
}
.btn-outline-dark:hover, .btn-outline-dark:focus-visible {
  background: var(--green-mid);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Star Rating --- */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 1rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(24, 41, 24, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-top: 2px;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green-light);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.35rem !important;
  font-size: 0.84rem !important;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav (hidden on desktop, slide-down on mobile) */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--green-dark);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.nav-mobile.open {
  max-height: 420px;
  padding: 1rem 0 1.5rem;
}

.nav-mobile a {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 5%;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition), background var(--transition);
}

.nav-mobile a:hover { color: #fff; background: rgba(255,255,255,0.05); }

.nav-mobile .nav-mobile-cta {
  margin: 1rem 5% 0;
  text-align: center;
  border-bottom: none;
  border-radius: var(--radius-sm);
  background: var(--green-accent);
  color: #fff;
  padding: 0.8rem;
}

.nav-mobile .nav-mobile-cta:hover { background: var(--green-mid); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 34, 18, 0.80) 0%,
    rgba(24, 41, 24, 0.65) 50%,
    rgba(42, 77, 30, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.8rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
  animation: fadeUp 0.6s ease both;
}

.hero-badge .stars { font-size: 0.85rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--stone-light);
}

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2.4rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1.2s 0.8s ease both;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green-dark);
  padding: 1.2rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 400;
  white-space: nowrap;
}

.trust-item svg {
  color: var(--green-light);
  flex-shrink: 0;
}

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

/* ============================================================
   ABOUT SNIPPET (homepage)
   ============================================================ */
.about-snap {
  padding: 6rem 0;
  background: var(--warm-white);
}

.about-snap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-snap-img-wrap {
  position: relative;
}

.about-snap-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-snap-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-snap-badge .big {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--stone-light);
  line-height: 1;
  display: block;
}

.about-snap-badge .small {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 0.3rem;
}

.about-snap-text .section-title { margin-bottom: 1.2rem; }

.about-snap-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.about-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-accent);
  margin-top: 2px;
}

.about-feat-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.about-feat-text span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
.services-section {
  padding: 6rem 0;
  background: var(--cream);
}

.services-header {
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid var(--stone-pale);
  transition: all var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--green-accent);
  font-size: 1.4rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

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

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 6rem 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.why-section::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");
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-4px);
}

.why-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-section {
  padding: 6rem 0;
  background: var(--warm-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--stone-pale);
  transition: all var(--transition);
  position: relative;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--stone-pale);
  line-height: 1;
}

.review-stars { margin-bottom: 0.8rem; }

.review-text {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.review-loc {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: 6rem 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,34,18,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
  transition: background var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-banner-inner { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

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

/* ============================================================
   CONTACT SECTION / PAGE
   ============================================================ */
.contact-section {
  padding: 6rem 0;
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-light);
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.25rem;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 0.97rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-detail-text a:hover { color: var(--green-accent); }

.contact-hours {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--green-accent);
}

.contact-hours strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.contact-hours span { font-size: 0.95rem; color: var(--text-dark); }

/* Form */
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--stone-pale);
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

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

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--stone-pale);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(62,107,40,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
}

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

.form-group select {
  cursor: pointer;
  /* Custom dropdown arrow (since appearance:none removes the native one) */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23464840' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  padding-right: 2.4rem;
}

/* Visually hidden but available to screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-error-msg {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.25rem;
  display: none;
}

.form-error-msg.visible { display: block; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.8rem;
  text-align: center;
}

.form-success {
  display: none;
  background: #edf7ed;
  border: 1px solid #4caf50;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  color: #2e7d32;
  font-size: 0.92rem;
  margin-top: 1rem;
  text-align: center;
}

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--warm-white));
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb span { color: rgba(255,255,255,0.9); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section {
  padding: 6rem 0;
  background: var(--warm-white);
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-values {
  padding: 6rem 0;
  background: var(--cream);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}

.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--stone-pale);
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.value-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--green-accent);
  font-size: 1.5rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full {
  padding: 6rem 0;
  background: var(--warm-white);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}

.service-full-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--stone-pale);
  transition: all var(--transition);
}

.service-full-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-5px);
}

.service-full-card-img {
  height: 180px;
  overflow: hidden;
}

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

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

.service-full-card-body {
  padding: 1.6rem;
}

.service-full-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.service-full-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page {
  padding: 5rem 0;
  background: var(--warm-white);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid var(--stone-pale);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.gallery-page-grid {
  columns: 3;
  column-gap: 1rem;
}

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

.gallery-page-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-page-item .gallery-overlay {
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-page-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-top: 2px;
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: #fff; }

.footer-col p {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col a {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.8); }
}

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

.reveal.revealed {
  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; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .about-snap-grid,
  .about-main-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-snap-badge {
    right: 0;
    bottom: -1rem;
  }

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

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

  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-page-grid { columns: 2; }

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

/* Mobile */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: flex; }  /* enable on mobile so max-height transition works */

  .hero-title { font-size: 2.4rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .trust-bar-inner { gap: 1rem; }
  .trust-divider { display: none; }

  .services-grid,
  .why-grid,
  .reviews-grid,
  .about-values-grid,
  .services-full-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.featured {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-page-grid { columns: 1; }

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

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

  .about-snap-img { height: 300px; }

  .about-snap-badge {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }

  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  .page-hero { padding: 120px 0 60px; }
}
