/* ═══════════════════════════════════════════
   URBANGLOW ONSITE AUTO SPA — style.css
   Brand: sage green (#9DC08B) + dark green (#1C3829)
   ═══════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --sage:         #9DC08B;
  --sage-light:   #EBF3E6;
  --sage-mid:     #C2D9BB;
  --dark:         #1C3829;
  --dark-2:       #2A5241;
  --dark-3:       #111C15;
  --accent:       #4E7D5B;
  --text:         #1A2D22;
  --text-muted:   #5C7A66;
  --text-light:   #8AAA93;
  --white:        #FFFFFF;
  --off-white:    #F5F8F4;
  --border:       #DDE8D8;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --section-pad:  clamp(4rem, 8vw, 7rem);
  --container:    1200px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 28px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 52px rgba(0,0,0,0.14);
  --t:            240ms ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.13; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.85rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; }
em { font-style: italic; }
p { max-width: 65ch; }

/* ─── Layout ─── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section-pad { padding-block: var(--section-pad); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header p { max-width: none; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 0.875rem;
  max-width: 58ch;
  margin-inline: auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.72em 1.6em;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  text-decoration: none;
  justify-content: center;
}
.btn-lg { font-size: 1rem; padding: 0.88em 2.1em; border-radius: 10px; }
.btn-full { width: 100%; }

.btn-sage {
  background: var(--sage);
  color: var(--dark);
  border-color: var(--sage);
}
.btn-sage:hover {
  background: #b4d0a4;
  border-color: #b4d0a4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(157,192,139,0.38);
}

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

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

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
}

.btn-nav {
  background: var(--sage);
  color: var(--dark);
  border-color: var(--sage);
  padding: 0.52em 1.25em;
  font-size: 0.875rem;
}
.btn-nav:hover { background: #b4d0a4; border-color: #b4d0a4; }

/* ─── Header / Nav ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.35); }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--sage);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.brand-sub {
  font-size: 0.67rem;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
  list-style: none;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.burger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.menu-toggle.open .burger:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open .burger:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open .burger:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  min-height: 92vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 25% 55%, rgba(157,192,139,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 75% 25%, rgba(157,192,139,0.05) 0%, transparent 55%);
  pointer-events: none;
}

/* Sparkles */
.hero-sparkles { position: absolute; inset: 0; pointer-events: none; }
.sparkle {
  position: absolute;
  font-size: 1.1rem;
  color: var(--sage);
  opacity: 0;
  animation: sparkle-float 7s ease-in-out infinite;
}
.s1 { top: 14%; left: 6%;  animation-delay: 0s;   font-size: 1.6rem; }
.s2 { top: 22%; right: 10%; animation-delay: 2s;  font-size: 1.0rem; }
.s3 { bottom: 28%; left: 12%; animation-delay: 4s; font-size: 0.85rem; }
.s4 { top: 58%; right: 6%; animation-delay: 5.5s; font-size: 1.9rem; }

@keyframes sparkle-float {
  0%   { opacity: 0; transform: translateY(12px) scale(0.7); }
  20%  { opacity: 0.45; }
  50%  { opacity: 0.65; transform: translateY(-10px) scale(1.05); }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(12px) scale(0.7); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding-block: clamp(4rem, 8vw, 6rem);
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 680px; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
  max-width: none;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-title em { color: var(--sage); font-style: italic; }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin-bottom: 2.4rem;
  max-width: none;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}
.hero-trust li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  font-weight: 500;
}

/* Hero rotating badge */
.hero-badge-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin-slow 22s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.badge-center {
  position: absolute;
  width: 72px;
  height: 72px;
  background: rgba(157,192,139,0.12);
  border: 1.5px solid rgba(157,192,139,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-logo { width: 38px; height: 38px; }

/* ─── Features Strip ─── */
.features-strip {
  background: var(--off-white);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature { text-align: center; }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--sage-light);
  border-radius: 12px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background var(--t), transform var(--t);
}
.feature:hover .feature-icon {
  background: var(--sage-mid);
  transform: translateY(-2px);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 0.95rem; margin-bottom: 0.45rem; }
.feature p { font-size: 0.875rem; color: var(--text-muted); margin-inline: auto; max-width: 22ch; }

/* ─── Services ─── */
.services { background: var(--white); }

.package-group { margin-top: 3rem; }
.package-group:first-of-type { margin-top: 0; }

.package-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.level-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.service-card--featured .level-tag { color: rgba(255,255,255,0.5); }
.service-card--featured .card-badge--featured + .level-tag { margin-top: 0.25rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.service-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-mid);
}
.service-card--featured {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  transform: scale(1.025);
}
.service-card--featured:hover { transform: scale(1.025) translateY(-5px); }

.card-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--border);
  padding: 0.24em 0.8em;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.card-badge--featured,
.service-card--featured .card-badge {
  background: var(--sage);
  color: var(--dark);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.875rem;
  line-height: 1;
}

.service-card h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.service-card--featured h3 { color: var(--white); }

.card-price { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.service-card--featured .card-price { color: var(--sage-mid); }
.card-price strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.service-card--featured .card-price strong { color: var(--white); }

.card-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.card-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.4em;
  position: relative;
}
.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.service-card--featured .card-features li { color: rgba(255,255,255,0.72); }
.service-card--featured .card-features li::before { color: var(--sage); }

.card-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.service-card--featured .card-desc { color: rgba(255,255,255,0.6); }

.price-tiers {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 1.25rem 0 1.5rem;
}
.tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
}
.tier + .tier { border-top: 1px solid var(--border); }
.tier-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.tier-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.service-card--featured .price-tiers { border-color: rgba(157,192,139,0.25); }
.service-card--featured .tier + .tier { border-top-color: rgba(157,192,139,0.2); }
.service-card--featured .tier-label { color: rgba(255,255,255,0.55); }
.service-card--featured .tier-price { color: var(--sage); }

.card-cta { width: 100%; }

.services-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.services-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Why Us ─── */
.why-us { background: var(--sage-light); }
.why-us .section-eyebrow { color: var(--accent); }
.why-us h2 em { color: var(--accent); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid var(--border);
  transition: box-shadow var(--t), transform var(--t);
}
.why-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--sage-mid);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.why-item h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.65rem;
}
.why-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ─── Gallery ─── */
.gallery { background: var(--white); }

.insta-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-areas:
    "a b c"
    "a d e";
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 210px 210px;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gi-a { grid-area: a; }
.gi-b { grid-area: b; }
.gi-c { grid-area: c; }
.gi-d { grid-area: d; }
.gi-e { grid-area: e; }

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

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t), filter var(--t);
}
.gallery-item:hover .gallery-photo { transform: scale(1.05); filter: brightness(0.92); }

.gp-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10,20,14,0.78) 100%);
  pointer-events: none;
}
.gp-overlay .gp-label {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}
.gp-overlay .gp-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--sage-light);
  padding: 0.2em 0.75em;
  border-radius: 100px;
  width: fit-content;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--sage-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: filter var(--t);
  color: var(--dark);
}
.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(28,56,41,0.12) 100%);
  pointer-events: none;
}
.gallery-placeholder:hover { filter: brightness(0.94); }

.gp-dark { background: var(--dark); color: var(--sage); }
.gp-dark .gp-label { color: var(--sage); }
.gp-dark .gp-tag { background: rgba(157,192,139,0.2); color: var(--sage); }

.gp-sage { background: var(--sage); color: var(--dark); }
.gp-sage .gp-tag { background: rgba(28,56,41,0.15); color: var(--dark); }

.gp-mid { background: var(--dark-2); color: var(--sage-light); }
.gp-mid .gp-label { color: var(--sage-light); }
.gp-mid .gp-tag { background: rgba(157,192,139,0.15); color: var(--sage); }

.gp-car-icon {
  position: relative;
  z-index: 1;
  opacity: 0.55;
  width: 80px;
}
.gp-car-icon svg { width: 100%; }

.gp-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.gp-tag {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,255,255,0.55);
  padding: 0.2em 0.75em;
  border-radius: 100px;
}

.gallery-cta { text-align: center; }

/* ─── Testimonials ─── */
.testimonials { background: var(--off-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem;
  transition: box-shadow var(--t), transform var(--t);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-card--featured {
  background: var(--dark);
  border-color: var(--dark);
}

.testimonial-stars {
  color: #E8B84B;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  max-width: none;
}
.testimonial-card--featured blockquote { color: rgba(255,255,255,0.75); }

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
}
.testimonial-card--featured .author-avatar {
  background: rgba(157,192,139,0.18);
  color: var(--sage);
}

.testimonial-footer strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testimonial-footer span { font-size: 0.78rem; color: var(--text-light); }
.testimonial-card--featured .testimonial-footer strong { color: var(--white); }
.testimonial-card--featured .testimonial-footer span { color: var(--sage-mid); }

.google-rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.google-rating-line strong { color: var(--text); }
.google-g { flex-shrink: 0; vertical-align: middle; }

.via-google {
  color: var(--text-muted);
  font-size: 0.75rem;
}
.testimonial-card--featured .via-google { color: var(--sage-mid); opacity: 0.8; }

/* ─── Contact ─── */
.contact { background: var(--dark); color: var(--white); }
.contact .section-eyebrow { color: var(--sage); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.contact-info h2 { color: var(--white); margin-bottom: 1rem; }

.contact-desc {
  color: rgba(255,255,255,0.62);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: none;
}

.contact-channels {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-channels li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.channel-icon {
  width: 44px;
  height: 44px;
  background: rgba(157,192,139,0.12);
  border: 1px solid rgba(157,192,139,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
}
.channel-icon svg { width: 18px; height: 18px; }
.channel-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.1rem;
}
.channel-value {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--t);
}
.channel-value:hover { color: var(--sage); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.contact-form h3 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.68rem 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(157,192,139,0.22);
}
.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: none;
}

.form-status {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.75rem;
  min-height: 1.2em;
}
.form-status.success { color: #4a7c52; }
.form-status.error   { color: #b3473f; }

/* ─── Footer ─── */
.footer { background: var(--dark-3); color: rgba(255,255,255,0.65); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.footer-logo .brand-name { font-size: 1.1rem; }
.footer-logo .logo-icon { width: 32px; height: 32px; }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  max-width: none;
}

.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--t);
}
.footer-insta:hover { color: var(--sage); }
.footer-insta svg { width: 18px; height: 18px; }

.footer-nav h4,
.footer-info h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1rem;
}

.footer-nav ul,
.footer-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.footer-nav a,
.footer-info a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--t);
}
.footer-nav a:hover,
.footer-info a:hover { color: var(--sage); }

.footer-service-area {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 1.25rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); max-width: none; }
.footer-motto { color: rgba(157,192,139,0.45) !important; }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive: tablet ─── */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .hero-badge-col { display: none; }
}

@media (max-width: 820px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; gap: 1.1rem; }
  .service-card--featured { transform: none; }
  .service-card--featured:hover { transform: translateY(-5px); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  .package-group { margin-top: 2.25rem; }
  .package-group-label { margin-bottom: 0.85rem; padding-bottom: 0.6rem; }
  .service-card { padding: 1.5rem; }
  .card-badge { margin-bottom: 1rem; }
  .card-price { margin-bottom: 1rem; }
  .card-features { margin-bottom: 1.5rem; gap: 0.45rem; }
  .services-note { margin-top: 2rem; font-size: 0.85rem; }
}

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-areas: none;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gi-a, .gi-b, .gi-c, .gi-d, .gi-e { grid-area: unset; }
  .gi-e { display: none; }
}

/* ─── Responsive: mobile ─── */
@media (max-width: 640px) {
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    gap: 0.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t), opacity var(--t);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    font-size: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
  }
  .btn-nav {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  .hero { min-height: 100svh; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }

  .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 180px);
  }
  .gi-e { display: block; }

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

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }

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