/* =====================================================
   DICAFE CONSULTORIA — Landing Page Styles
   Paleta: Marrom #44210B principal + tons complementares
   ===================================================== */

/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-900: #2C1508;
  --brown-800: #44210B;   /* PRIMARY */
  --brown-700: #6D3410;
  --brown-600: #8B4513;
  --brown-500: #7C2D12;
  --brown-400: #9A3412;
  --brown-100: #F5EBE0;
  --brown-50:  #FDF6F0;

  --bg-page:   #F5F5F5;
  --bg-white:  #FFFFFF;
  --bg-light:  #F8F9FA;

  --text-dark:   #1A1A1A;
  --text-medium: #444444;
  --text-light:  #6B7280;

  --border: #E5E7EB;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);

  --transition: .25s ease;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Botões ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--brown-800);
  color: #fff;
  border-color: var(--brown-800);
}
.btn--primary:hover {
  background: var(--brown-700);
  border-color: var(--brown-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(68,33,11,.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn--lg { padding: 15px 36px; font-size: 16px; border-radius: 10px; }
.btn--full { width: 100%; }

/* ─── Seção helpers ────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brown-800);
  background: var(--brown-100);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label--light {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title span { color: var(--brown-800); }

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc { margin: 0 auto; }

.section-header--light .section-title,
.section-header--light .section-desc { color: #fff; }
.section-header--light .section-title span { color: #FFE5CC; }

/* ─── NAVBAR ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}

.navbar.scrolled .navbar__logo {
  background: rgba(68,33,11,.06);
  border-color: rgba(68,33,11,.12);
}

.navbar__logo-img {
  width: auto;
  height: 52px;
  max-width: 260px;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
}

.navbar__logo-img--header {
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.24));
}

.navbar.scrolled .navbar__logo-img--header {
  filter: drop-shadow(0 2px 6px rgba(68,33,11,.12));
}

.navbar__logo-img--footer {
  height: 68px;
}

.navbar__logo-icon { font-size: 26px; }

.navbar__logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  transition: color var(--transition);
}
.navbar.scrolled .navbar__logo-text { color: var(--brown-800); }

.navbar__logo-text span { color: rgba(255,255,255,.75); }
.navbar.scrolled .navbar__logo-text span { color: var(--brown-700); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.navbar__links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: all var(--transition);
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(44,21,8,.35);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
}
.navbar.scrolled .navbar__links a {
  color: var(--text-medium);
  background: rgba(68,33,11,.08);
  border-color: rgba(68,33,11,.18);
}
.navbar__links a:hover {
  color: #fff;
  background: rgba(44,21,8,.62);
}
.navbar.scrolled .navbar__links a:hover {
  color: var(--brown-800);
  background: rgba(68,33,11,.14);
}

.navbar__cta { margin-left: 8px; }
.navbar .btn--primary { padding: 10px 22px; font-size: 14px; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .navbar__hamburger span { background: var(--brown-800); }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1.0); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,21,8,.85) 0%,
    rgba(68,33,11,.70) 50%,
    rgba(109,52,16,.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero__title span { color: #44210B; }

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 1;
}

.hero__scroll-icon {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,.7);
  border-radius: 50%;
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ─── STATS ─────────────────────────────────────────── */
.stats {
  background: var(--brown-800);
  padding: 60px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats__item {
  text-align: center;
  color: #fff;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stats__item:last-child { border-right: none; }

.stats__number {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
}

.stats__unit {
  font-size: 32px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  vertical-align: super;
  line-height: 1;
}

.stats__item p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  letter-spacing: .02em;
}

/* ─── SOBRE ──────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--bg-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
  height: 520px;
}

.about__img {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img--main {
  inset: 0 60px 60px 0;
}

.about__img--small {
  width: 48%;
  height: 48%;
  bottom: 0;
  right: 0;
  border: 4px solid var(--bg-white);
  z-index: 1;
}

.about__badge-float {
  position: absolute;
  top: 20px;
  left: 0;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  min-width: 220px;
}

.about__badge-icon { font-size: 30px; }

.about__badge-float strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.about__badge-float span {
  font-size: 12px;
  color: var(--text-light);
}

.about__text .section-title { margin-top: 8px; }

.about__text p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}

.about__list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__list li {
  color: var(--text-medium);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  background: var(--brown-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--brown-800);
}

/* ─── SERVIÇOS ───────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--bg-page);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brown-100);
}

.service-card--featured {
  background: linear-gradient(145deg, var(--brown-800), var(--brown-700));
  border-color: transparent;
  color: #fff;
}
.service-card--featured h3,
.service-card--featured p { color: #fff; }
.service-card--featured .service-card__link { color: rgba(255,255,255,.85); }
.service-card--featured .service-card__link:hover { color: #fff; }
.service-card--featured .service-card__icon {
  background: rgba(255,255,255,.15);
}

.service-card__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--brown-400);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--brown-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-800);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 8px; }

/* ─── BANNER ─────────────────────────────────────────── */
.banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,21,8,.88), rgba(68,33,11,.78));
}

.banner__content { position: relative; z-index: 1; }

.banner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.banner__item {
  text-align: center;
  color: #fff;
  padding: 32px 20px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.banner__item:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}

.banner__item-icon { font-size: 36px; margin-bottom: 16px; }

.banner__item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner__item p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}

/* ─── GALERIA ────────────────────────────────────────── */
.gallery {
  padding: 100px 0;
  background: var(--bg-white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 250px 250px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__item--tall {
  grid-row: span 2;
}
.gallery__item--wide {
  grid-column: span 2;
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery__item:hover .gallery__caption {
  transform: translateY(0);
}

/* ─── CONTATO ────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--bg-page);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section-title { margin-top: 8px; }

.contact__info > p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__details li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact__detail-icon {
  font-size: 22px;
  width: 48px;
  height: 48px;
  background: var(--brown-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__details strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown-800);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 2px;
}
.contact__details span {
  font-size: 15px;
  color: var(--text-medium);
}

.contact__details span a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(68,33,11,.35);
  text-underline-offset: 2px;
}

.contact__details span a:hover {
  color: var(--brown-800);
  text-decoration-color: var(--brown-800);
}

/* ─── FORM ───────────────────────────────────────────── */
.contact__form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: .02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brown-800);
  box-shadow: 0 0 0 3px rgba(68,33,11,.10);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--brown-900);
  color: rgba(255,255,255,.7);
}

.footer__inner {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand .navbar__logo-text {
  color: #fff;
  display: block;
  margin: 10px 0 14px;
}
.footer__brand .navbar__logo-text span { color: rgba(255,255,255,.55); }
.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 4px;
}
.footer__brand .navbar__logo-icon { font-size: 28px; }
.footer__brand .navbar__logo-img {
  display: inline-block;
  margin-bottom: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(68,33,11,.18);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}

.footer__links h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }

.footer__social h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link svg { width: 18px; height: 18px; color: rgba(255,255,255,.7); }
.social-link:hover { background: var(--brown-800); }
.social-link:hover svg { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p { font-size: 13px; }

/* ─── Toast Notification ─────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--brown-800);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── Animações de entrada ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVO ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .about__grid,
  .contact__grid { gap: 48px; }

  .services__grid  { grid-template-columns: repeat(2, 1fr); }
  .banner__grid    { grid-template-columns: repeat(2, 1fr); }
  .footer__inner   { grid-template-columns: repeat(2, 1fr); }
  .stats__grid     { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stats__item:nth-child(2n) { border-right: none; }
  .stats__item:last-child  { border-bottom: none; }
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta { display: none; }

  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brown-900);
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 999;
  }

  .navbar__links.open a {
    font-size: 24px;
    color: #fff;
  }

  .navbar__hamburger { display: flex; }
  .navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navbar__hamburger.open span:nth-child(2) { opacity: 0; }
  .navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .navbar__logo {
    padding: 6px 12px;
    border-radius: 14px;
  }

  .navbar__logo-img--header {
    height: 42px;
    max-width: 210px;
  }

  .hero__title { font-size: 36px; }

  .about__grid,
  .contact__grid { grid-template-columns: 1fr; }

  .about__images { height: 380px; }

  .services__grid { grid-template-columns: 1fr; }
  .banner__grid   { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--tall,
  .gallery__item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0 32px;
  }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }

  .stats__grid { grid-template-columns: 1fr 1fr; }

  .hero__ctas { flex-direction: column; align-items: flex-start; }

  .contact__form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .stats__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
}
