/* ============================================
   Allen's Tire & Auto — Stylesheet
   Clean minimalist · Emerald & Cream
   ============================================ */

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

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream-50: #faf9f6;
  --cream-100: #f5f5dc;
  --cream-200: #e8e6d8;
  --cream-300: #d4d0be;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--stone-800);
  background-color: var(--cream-50);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* --- Typography --- */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--stone-900);
  margin-bottom: var(--space-lg);
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--stone-600);
  max-width: 540px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn--primary {
  background: var(--emerald-800);
  color: #fff;
  border: 1.5px solid var(--emerald-800);
}

.btn--primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--cream-50);
  border: 1.5px solid rgba(250, 249, 246, 0.4);
}

.btn--ghost:hover {
  background: rgba(250, 249, 246, 0.1);
  border-color: rgba(250, 249, 246, 0.8);
  transform: translateY(-1px);
}

.btn--light {
  background: #fff;
  color: var(--emerald-800);
  border: 1.5px solid #fff;
}

.btn--light:hover {
  background: var(--cream-100);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.6rem;
  font-size: 0.95rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-md) 0;
  box-shadow: 0 1px 0 var(--stone-200);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream-50);
  transition: color 0.3s;
}

.nav.scrolled .nav__logo {
  color: var(--stone-800);
}

.nav__logo-accent {
  font-weight: 300;
  opacity: 0.7;
}

.nav__logo-icon {
  color: var(--cream-50);
  transition: color 0.3s;
}

.nav.scrolled .nav__logo-icon {
  color: var(--emerald-700);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  list-style: none;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(250, 249, 246, 0.8);
  transition: color 0.3s;
  position: relative;
}

.nav.scrolled .nav__link {
  color: var(--stone-600);
}

.nav__link:hover {
  color: var(--cream-50);
}

.nav.scrolled .nav__link:hover {
  color: var(--emerald-700);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(250, 249, 246, 0.3);
  border-radius: var(--radius-xl);
  transition: all 0.3s;
}

.nav.scrolled .nav__link--cta {
  border-color: var(--emerald-700);
  color: var(--emerald-700);
}

.nav__link--cta:hover {
  background: rgba(250, 249, 246, 0.1);
}

.nav.scrolled .nav__link--cta:hover {
  background: var(--emerald-50);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle-line {
  width: 22px;
  height: 1.5px;
  background: var(--cream-50);
  transition: all 0.3s;
  transform-origin: center;
}

.nav.scrolled .nav__toggle-line {
  background: var(--stone-700);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 78, 59, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream-50);
  transition: opacity 0.3s;
}

.mobile-menu__link:hover {
  opacity: 0.6;
}

.mobile-menu__link--cta {
  margin-top: var(--space-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(250, 249, 246, 0.3);
  border-radius: var(--radius-xl);
}

.mobile-menu__contact {
  margin-top: var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-menu__phone,
.mobile-menu__email {
  font-size: 0.9rem;
  color: rgba(250, 249, 246, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: color 0.3s;
}

.mobile-menu__phone:hover,
.mobile-menu__email:hover {
  color: var(--cream-50);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--emerald-900) 0%,
    var(--emerald-700) 35%,
    #0d9488 65%,
    var(--emerald-600) 100%
  );
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(250, 249, 246, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(250, 249, 246, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(250, 249, 246, 0.02) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  max-width: 820px;
}

.hero__frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.6);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(250, 249, 246, 0.15);
  border-radius: 50px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream-50);
  letter-spacing: -0.01em;
}

.hero__headline-accent {
  font-style: italic;
  opacity: 0.85;
}

.hero__subheadline {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(250, 249, 246, 0.7);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-sm);
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(250, 249, 246, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --- Services --- */
.services {
  padding: var(--space-4xl) 0;
  background: var(--cream-50);
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-4xl);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  padding: var(--space-2xl);
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-700), var(--emerald-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--emerald-50);
  color: var(--emerald-700);
  margin-bottom: var(--space-lg);
  transition: all 0.3s;
}

.service-card:hover .service-card__icon {
  background: var(--emerald-800);
  color: var(--cream-50);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--stone-900);
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--stone-600);
  line-height: 1.7;
}

/* --- About --- */
.about {
  padding: var(--space-4xl) 0;
  background: var(--cream-100);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--emerald-300);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--stone-200);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about__stat-number {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--stone-900);
  font-weight: 400;
}

.about__stat-label {
  font-size: 0.78rem;
  color: var(--stone-500);
  letter-spacing: 0.03em;
}

.about__text-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about__body {
  font-size: 0.95rem;
  color: var(--stone-600);
  line-height: 1.8;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--stone-700);
  font-weight: 400;
}

.highlight svg {
  color: var(--emerald-600);
  flex-shrink: 0;
}

/* --- Why Us --- */
.why-us {
  padding: var(--space-4xl) 0;
  background: var(--cream-50);
}

.why-us__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4xl);
}

.why-us__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.why-us__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.why-card {
  padding: var(--space-2xl);
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  position: relative;
}

.why-card:hover {
  border-color: var(--emerald-200);
  box-shadow: var(--shadow-md);
}

.why-card__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--emerald-100);
  line-height: 1;
  margin-bottom: var(--space-md);
  transition: color 0.3s;
}

.why-card:hover .why-card__number {
  color: var(--emerald-200);
}

.why-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--stone-900);
  margin-bottom: var(--space-sm);
}

.why-card__desc {
  font-size: 0.88rem;
  color: var(--stone-600);
  line-height: 1.75;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--emerald-900), var(--emerald-700));
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(250,249,246,0.06) 0%, transparent 60%);
}

.cta-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--cream-50);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.cta-banner__subtitle {
  font-size: 1rem;
  color: rgba(250, 249, 246, 0.65);
  font-weight: 300;
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
  padding: var(--space-4xl) 0;
  background: var(--cream-100);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact__body {
  font-size: 0.95rem;
  color: var(--stone-600);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-detail {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--emerald-50);
  color: var(--emerald-700);
  flex-shrink: 0;
}

.contact-detail__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 0.2rem;
}

.contact-detail__value {
  font-size: 0.92rem;
  color: var(--stone-700);
  line-height: 1.6;
  transition: color 0.3s;
}

.contact-detail__value:hover {
  color: var(--emerald-700);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background: #fff;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-500);
}

.contact-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone-800);
  background: var(--cream-50);
  transition: all 0.3s;
  outline: none;
}

.contact-form__input::placeholder {
  color: var(--stone-400);
}

.contact-form__input:focus {
  border-color: var(--emerald-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  border-radius: var(--radius-md);
  color: var(--emerald-800);
  font-size: 0.9rem;
  font-weight: 400;
}

.contact-form__success.visible {
  display: flex;
}

.contact-form__success svg {
  color: var(--emerald-600);
  flex-shrink: 0;
}

/* --- Map --- */
.map-section {
  height: 350px;
  background: var(--stone-200);
}

.map-section__inner {
  height: 100%;
  overflow: hidden;
}

.map-section__frame {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.7) contrast(1.05);
  transition: filter 0.3s;
}

.map-section:hover .map-section__frame {
  filter: saturate(1) contrast(1);
}

/* --- Footer --- */
.footer {
  padding: var(--space-4xl) 0 var(--space-xl);
  background: var(--stone-900);
  color: var(--cream-50);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(250, 249, 246, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream-50);
  margin-bottom: var(--space-md);
}

.footer__logo-accent {
  font-weight: 300;
  opacity: 0.6;
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(250, 249, 246, 0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(250, 249, 246, 0.55);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--cream-50);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__phone,
.footer__email {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(250, 249, 246, 0.55);
  transition: color 0.3s;
}

.footer__phone:hover,
.footer__email:hover {
  color: var(--cream-50);
}

.footer__address {
  font-size: 0.82rem;
  color: rgba(250, 249, 246, 0.35);
  line-height: 1.6;
  margin-top: 0.3rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  font-size: 0.78rem;
  color: rgba(250, 249, 246, 0.3);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about__inner {
    gap: var(--space-3xl);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .hero__headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .about__inner {
    grid-template-columns: 1fr;
  }
  
  .about__image {
    height: 350px;
  }
  
  .about__image-accent {
    display: none;
  }
  
  .about__highlights {
    grid-template-columns: 1fr;
  }
  
  .why-us__cards {
    grid-template-columns: 1fr;
  }
  
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-banner__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .contact__inner {
    grid-template-columns: 1fr;
  }
  
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  
  .map-section {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero {
    min-height: 100svh;
  }
  
  .services,
  .about,
  .why-us,
  .contact {
    padding: var(--space-3xl) 0;
  }
  
  .service-card {
    padding: var(--space-xl);
  }
  
  .contact-form {
    padding: var(--space-xl);
  }
}
