/* ============================================
   Ad A Print — Brand Stylesheet
   Palette: Emerald Green + Cream
   ============================================ */

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

:root {
  --emerald-950: #022c22;
  --emerald-900: #042f26;
  --emerald-800: #064e3b;
  --emerald-700: #065f46;
  --emerald-600: #047857;
  --emerald-500: #059669;
  --emerald-400: #10b981;
  --emerald-300: #34d399;
  --emerald-200: #6ee7b7;
  --emerald-100: #a7f3d0;
  --emerald-50:  #d1fae5;

  --cream-900:  #1c1917;
  --cream-800:  #292524;
  --cream-700:  #44403c;
  --cream-600:  #57534e;
  --cream-500:  #78716c;
  --cream-400:  #a8a29e;
  --cream-300:  #d6d3d1;
  --cream-200:  #e7e5e4;
  --cream-100:  #f5f5f4;
  --cream-50:   #fdf6e3;
  --cream-25:   #fefcf5;

  --accent-orange: #f97316;
  --accent-teal:   #0d9488;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 3px rgba(4,120,87,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(4,120,87,.10), 0 2px 6px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(4,120,87,.12), 0 4px 12px rgba(0,0,0,.10);
  --shadow-xl:  0 20px 60px rgba(4,120,87,.15), 0 8px 20px rgba(0,0,0,.12);

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--cream-900);
  background: var(--cream-50);
  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 { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--emerald-700);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,246,227,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(4,120,87,.08);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--emerald-800);
}
.logo:hover { color: var(--emerald-600); }

.logo-text { letter-spacing: -.02em; }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav a {
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--cream-700);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav a:hover {
  color: var(--emerald-700);
  background: var(--emerald-50);
}

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  z-index: 1001;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--emerald-800);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--emerald-600);
  color: #fff;
  box-shadow: 0 4px 14px rgba(4,120,87,.35);
}
.btn-primary:hover {
  background: var(--emerald-700);
  box-shadow: 0 6px 20px rgba(4,120,87,.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--emerald-700);
  border: 2px solid var(--emerald-300);
}
.btn-outline-light:hover {
  background: var(--emerald-50);
  border-color: var(--emerald-500);
  transform: translateY(-2px);
}

.btn-emerald {
  background: var(--emerald-600);
  color: #fff;
  padding: .5rem 1rem;
  font-size: .85rem;
  border-radius: var(--radius-sm);
}
.btn-emerald:hover { background: var(--emerald-700); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--emerald-600);
  background: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  padding: .35rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-tag.light {
  color: var(--emerald-200);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream-900);
  margin-bottom: 1rem;
  letter-spacing: -.03em;
}
.section-title.light { color: #fff; }

.section-desc {
  font-size: 1.1rem;
  color: var(--cream-600);
  line-height: 1.7;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #042f26 0%, #065f46 30%, #047857 55%, #10b981 80%, #34d399 100%);
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.geo {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
}
.geo-1 {
  width: 600px; height: 600px;
  background: var(--emerald-300);
  top: -200px; right: -150px;
  animation: float 8s ease-in-out infinite;
}
.geo-2 {
  width: 400px; height: 400px;
  background: var(--accent-orange);
  bottom: -100px; left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}
.geo-3 {
  width: 250px; height: 250px;
  background: #fff;
  top: 30%; left: 10%;
  animation: float 6s ease-in-out infinite;
}
.geo-4 {
  width: 180px; height: 180px;
  background: var(--emerald-200);
  bottom: 20%; right: 15%;
  animation: float 7s ease-in-out infinite reverse;
}
.geo-5 {
  width: 120px; height: 120px;
  background: var(--accent-teal);
  top: 15%; right: 30%;
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
  animation: spin 14s linear infinite;
  opacity: .18;
}
.geo-6 {
  width: 80px; height: 80px;
  background: #fff;
  bottom: 35%; left: 25%;
  border-radius: var(--radius-sm);
  transform: rotate(30deg);
  animation: spin 10s linear infinite reverse;
  opacity: .15;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.03); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: var(--emerald-100);
  font-size: .85rem;
  font-weight: 500;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--emerald-300);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: 1.5rem;
}
.text-accent {
  background: linear-gradient(135deg, var(--emerald-200), #a7f3d0, var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--emerald-100);
  max-width: 620px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  font-size: .8rem;
  color: var(--emerald-200);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
  align-self: center;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--cream-50);
}

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

.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cream-200);
  transition: all var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-500), var(--emerald-300));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-200);
}
.service-card:hover::before { opacity: 1; }

.card-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  border-radius: var(--radius-md);
  color: var(--emerald-700);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .card-icon {
  background: var(--emerald-600);
  border-color: var(--emerald-600);
  color: #fff;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream-900);
  margin-bottom: .6rem;
  letter-spacing: -.02em;
}
.service-card p {
  font-size: .95rem;
  color: var(--cream-600);
  line-height: 1.65;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  background: var(--cream-25);
  overflow: hidden;
}

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

.why-img-wrap {
  position: relative;
}
.why-img-wrap img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.why-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--emerald-600);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: .2;
}

.why-float-card {
  position: absolute;
  bottom: 2rem;
  left: -1rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: .85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--emerald-800);
}

.why-content { max-width: 520px; }
.why-content .section-title { text-align: left; }
.why-content > p {
  font-size: 1.05rem;
  color: var(--cream-600);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.why-list { margin-bottom: 2rem; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--cream-200);
}
.why-list li:last-child { border-bottom: none; }
.why-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  border-radius: 50%;
  color: var(--emerald-600);
  margin-top: 2px;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-700) 100%);
  color: #fff;
}
.process .section-tag {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: var(--emerald-200);
}
.process .section-title { color: #fff; }
.process .section-desc { color: var(--emerald-200); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.process-step:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,.1);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.step-content p {
  font-size: .9rem;
  color: var(--emerald-200);
  line-height: 1.65;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--cream-50);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,47,38,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-600) 60%, var(--emerald-500) 100%);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-geos {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.cta-geo {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-geo-1 { width: 500px; height: 500px; top: -200px; left: -150px; }
.cta-geo-2 { width: 300px; height: 300px; bottom: -100px; right: -50px; }
.cta-geo-3 { width: 150px; height: 150px; top: 50%; left: 60%; background: rgba(249,115,22,.15); }

.cta-desc {
  font-size: 1.1rem;
  color: var(--emerald-100);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--cream-25);
}

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

.contact-info .section-title { text-align: left; }
.contact-info > p {
  font-size: 1.05rem;
  color: var(--cream-600);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.contact-details { display: flex; flex-direction: column; gap: .5rem; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
  transition: all var(--transition);
}
.contact-details li:hover {
  border-color: var(--emerald-200);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  border-radius: var(--radius-sm);
  color: var(--emerald-700);
}
.contact-details strong {
  display: block;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--emerald-800);
  margin-bottom: .15rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.contact-details span,
.contact-details a {
  font-size: .95rem;
  color: var(--cream-700);
  line-height: 1.6;
}
.contact-details a:hover { color: var(--emerald-600); }

/* FORM */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream-900);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--cream-700);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--cream-900);
  background: var(--cream-50);
  border: 1.5px solid var(--cream-300);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(4,120,87,.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  border-radius: var(--radius-sm);
  color: var(--emerald-800);
  font-weight: 500;
  font-size: .95rem;
}
.form-success svg { color: var(--emerald-600); flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--emerald-950);
  color: var(--emerald-200);
  padding: 4rem 0 0;
}

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

.footer-brand p {
  margin-top: 1rem;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--emerald-300);
  max-width: 300px;
}
.footer-brand .logo { margin-bottom: .5rem; }
.footer-brand .logo-text { color: #fff; }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--emerald-100);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .9rem;
  color: var(--emerald-300);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

.footer-contact p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: .25rem;
}
.footer-contact a {
  color: var(--emerald-300);
  transition: color var(--transition);
}
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: var(--emerald-400);
}

/* ============================================
   REVEAL ANIMATIONS
   (progressive enhancement — content visible without JS)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
  }
  /* JS adds .revealed for the animation trigger */
  .reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
  /* Default state for JS-gated reveals: slightly offset */
  .reveal { transform: translateY(20px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream-50);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: .25rem;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    padding: .85rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--cream-200);
    border-radius: 0;
  }
  .nav .btn-emerald {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
    border-bottom: none;
  }

  .hero { padding: 5rem 0 3rem; }
  .hero-headline { font-size: clamp(1.85rem, 7vw, 2.75rem); }
  .hero-stats { gap: 1.25rem; }
  .stat-divider { display: none; }

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-img-wrap img { height: 400px; }
  .why-content .section-title { text-align: center; }
  .why-content { text-align: center; }
  .why-content > p { text-align: center; }

  .process-steps { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-info .section-title { text-align: center; }
  .contact-info > p { text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-lg { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 1.5rem; }
}
