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

:root {
  --green-900: #0a2e16;
  --green-800: #1a5c2a;
  --green-700: #227a38;
  --green-600: #2d9d4a;
  --green-500: #3db85a;
  --green-100: #d1f2d8;
  --green-50:  #eafbef;
  --cream:     #faf8f4;
  --cream-dark:#f0ece4;
  --white:     #ffffff;
  --black:     #0f1a12;
  --gray-900:  #1a2332;
  --gray-700:  #374151;
  --gray-500:  #6b7280;
  --gray-300:  #d1d5db;
  --gray-100:  #f3f4f6;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(10,46,22,0.08), 0 4px 16px rgba(10,46,22,0.06);
  --shadow-lg: 0 4px 24px rgba(10,46,22,0.10), 0 12px 48px rgba(10,46,22,0.06);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--sans);
  color: var(--gray-900);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green-900);
}

.text-accent {
  color: var(--green-700);
}

.section__label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 560px;
  line-height: 1.7;
}

.section__header {
  margin-bottom: 64px;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__desc {
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}

.btn--primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}

.btn--outline:hover {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--ghost-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,92,42,0.08);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(10,46,22,0.08);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--green-900);
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--green-800);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: var(--serif);
  font-weight: 900;
}

.nav__logo-text {
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--green-800);
  background: var(--green-50);
}

.nav__link--cta {
  background: var(--green-800);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--green-700);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--green-900);
  margin-left: auto;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu__link {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-900);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-menu__link:hover {
  color: var(--green-600);
  background: var(--green-50);
}

.mobile-menu__link--cta {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  background: var(--green-800);
  color: var(--white) !important;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a2e16 0%, #1a5c2a 30%, #2d9d4a 60%, #3db85a 80%, #7dd37a 100%);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(10,46,22,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(45,157,74,0.4) 0%, transparent 50%);
}

.hero__overlay {
  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");
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
}

.hero__headline {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__headline--accent {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

.hero__sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

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

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

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(26,92,42,0.06);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.card:hover .card__img img {
  transform: scale(1.05);
}

.card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,46,22,0.15) 100%);
}

.card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green-800);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
}

.card__title {
  font-size: 1.5rem;
}

.card__desc {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.7;
}

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

.card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.card__list svg {
  flex-shrink: 0;
  color: var(--green-600);
}

/* ===== About ===== */
.about {
  background: var(--white);
}

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

.about__images {
  position: relative;
}

.about__img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-main img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.about__img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about__img-float img {
  width: 400px;
  height: 280px;
  object-fit: cover;
}

.about__stamp {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--green-800);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  box-shadow: var(--shadow);
}

.about__stamp svg {
  margin-bottom: 2px;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__text {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

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

.about__feature strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--green-900);
  margin-bottom: 2px;
}

.about__feature span {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== Why ===== */
.why {
  background: var(--green-900);
  color: var(--white);
}

.why .section__label {
  color: var(--green-500);
}

.why .section__title {
  color: var(--white);
}

.why .text-accent {
  color: var(--green-400);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.why__item {
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.why__item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.why__num {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.why__title {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 12px;
}

.why__text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,92,42,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial__quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--green-200, #b7e4c3);
  margin-bottom: -12px;
}

.testimonial__text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  flex: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  flex-shrink: 0;
}

.testimonial__name {
  display: block;
  font-weight: 600;
  color: var(--green-900);
  font-size: 0.9375rem;
}

.testimonial__role {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
  padding: 80px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner__text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===== Contact ===== */
.contact {
  background: var(--white);
}

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

.contact__desc {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  flex-shrink: 0;
}

.contact__detail strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--green-900);
  margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact__detail a:hover {
  color: var(--green-700);
  text-decoration: underline;
}

.contact__form-wrap {
  background: var(--cream);
  padding: 48px;
  border-radius: var(--radius);
  border: 1px solid rgba(26,92,42,0.08);
}

.contact__form-title {
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: var(--green-900);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--gray-900);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form__input:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(45,157,74,0.12);
}

.form__input::placeholder {
  color: var(--gray-500);
}

.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 12 12' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form__success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  color: var(--green-800);
  font-size: 0.9375rem;
}

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

/* ===== Location Strip ===== */
.location-strip {
  background: var(--green-900);
  padding: 20px 0;
}

.location-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.location-strip__text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
}

.location-strip__text strong {
  color: var(--white);
}

.location-strip__text svg {
  color: var(--green-500);
  flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--green-700);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: var(--serif);
  font-weight: 900;
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col strong {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--green-400);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__grid .card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .about__grid {
    gap: 48px;
  }
  .about__img-float {
    right: -20px;
    bottom: -24px;
  }
  .about__img-float img {
    width: 280px;
    height: 200px;
  }
  .contact__grid {
    gap: 48px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .nav__inner {
    height: 64px;
  }
  .hero {
    padding: 100px 24px 80px;
    min-height: auto;
  }
  .hero__headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero__stats {
    gap: 20px;
  }
  .hero__stat-num {
    font-size: 1.375rem;
  }
  .section {
    padding: 72px 0;
  }
  .section__header {
    margin-bottom: 48px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__grid .card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about__img-main img {
    height: 400px;
  }
  .about__img-float {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -60px;
    margin-left: 24px;
  }
  .about__img-float img {
    width: 100%;
    height: 220px;
  }
  .about__stamp {
    top: auto;
    bottom: -16px;
    left: 0;
  }
  .why__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why__item {
    padding: 28px;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 60px 0;
  }
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner__actions {
    justify-content: center;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact__form-wrap {
    padding: 32px 24px;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .location-strip__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .hero__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }
  .hero__stat-divider {
    width: 40px;
    height: 1px;
  }
  .card__body {
    padding: 24px;
  }
  .contact__form-wrap {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
