:root {
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-soft: #eef5f7;
  --dark: #061c2f;
  --dark-2: #09243a;
  --text: #162433;
  --muted: #627181;
  --line: rgba(6, 28, 47, 0.12);
  --primary: #0fbfc3;
  --primary-2: #26d8d6;
  --primary-dark: #06888d;
  --accent: #f4b63f;
  --shadow: 0 24px 70px rgba(7, 25, 43, 0.14);
  --shadow-soft: 0 18px 45px rgba(7, 25, 43, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1160px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--dark);
  color: white;
  padding: 10px 16px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  color: white;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(7, 25, 43, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.78rem;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
  font-weight: 700;
  font-size: 0.92rem;
}

.main-nav a {
  position: relative;
  opacity: 0.9;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 44px;
  border-radius: 999px;
  background: var(--primary);
  color: #042026;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(15, 191, 195, 0.28);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 14px;
  background: transparent;
  color: currentColor;
  margin-left: auto;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background: url('../img/rivafed-frente-local-mar-del-plata.webp') center/cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 75% 25%, rgba(15, 191, 195, 0.36), transparent 35%),
    linear-gradient(90deg, rgba(4, 17, 29, 0.94) 0%, rgba(4, 17, 29, 0.72) 46%, rgba(4, 17, 29, 0.26) 100%),
    linear-gradient(0deg, rgba(4, 17, 29, 0.52), rgba(4, 17, 29, 0.08));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: center;
  padding-top: var(--header-height);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.quote-copy h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 830px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.hero-text {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #042026;
  box-shadow: 0 18px 42px rgba(15, 191, 195, 0.32);
}

.btn-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn-outline {
  color: var(--dark);
  border: 1px solid var(--line);
  background: white;
}

.btn-dark {
  color: white;
  background: var(--dark);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-2);
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.hero-card img {
  border-radius: 24px;
  margin-bottom: 18px;
}

.hero-card h2 {
  margin: 0 0 12px;
  font-size: 1.8rem;
}

.hero-card p {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.76);
}

.hero-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary-2);
  font-weight: 900;
}

.section {
  padding: 106px 0;
}

.section-light {
  background: var(--surface);
}

.section-dark {
  color: white;
  background:
    radial-gradient(circle at 18% 20%, rgba(15, 191, 195, 0.25), transparent 30%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.stats-section {
  padding: 28px 0;
  margin-top: -66px;
  position: relative;
  z-index: 2;
  background: transparent;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.stats-grid div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--dark);
  font-size: 1.22rem;
}

.stats-grid span {
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.94rem;
}

.section-heading {
  text-align: center;
  max-width: 790px;
  margin: 0 auto 46px;
}

.section-heading-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-heading h2,
.quote-copy h2,
.contact-card h2 {
  color: var(--dark);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.section-dark .section-heading h2,
.section-dark .section-heading p:not(.eyebrow) {
  color: white;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(15, 191, 195, 0.12);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--primary-dark);
  font-weight: 900;
}

.service-card h3 {
  margin: 28px 0 12px;
  color: var(--dark);
  font-size: 1.35rem;
  line-height: 1.16;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: auto;
  color: var(--primary-dark);
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--primary);
  color: #032229;
  font-weight: 900;
  font-size: 1.2rem;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  padding: 0;
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.gallery-item::after {
  content: "Ver trabajo";
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(6, 28, 47, 0.78);
  color: white;
  font-size: 0.85rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.quote-section {
  color: white;
  background:
    linear-gradient(rgba(6, 28, 47, 0.9), rgba(6, 28, 47, 0.92)),
    url('../img/abertura-aluminio-negro-interior.webp') center/cover no-repeat;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.quote-copy h2,
.quote-copy p {
  color: white;
}

.quote-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.quote-tip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  margin-top: 26px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.09);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

label {
  color: var(--dark);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(6, 28, 47, 0.14);
  border-radius: 16px;
  background: #f7fafb;
  color: var(--text);
  padding: 14px 14px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(15, 191, 195, 0.16);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 70px;
  align-items: center;
}

.instagram-panel {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(100%, 390px);
  border: 12px solid var(--dark);
  border-radius: 42px;
  padding: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 900;
}

.phone-top img {
  border-radius: 12px;
}

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

.insta-grid a {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-soft);
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.insta-grid a:hover img {
  transform: scale(1.08);
}

.instagram-live-feed:not(:empty) {
  margin-top: 14px;
}

.faq-section {
  background: var(--surface);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  color: var(--dark);
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-section {
  padding-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
}

.contact-card,
.map-card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  padding: 34px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--muted);
}

.contact-list strong {
  color: var(--dark);
}

.contact-list a {
  color: var(--primary-dark);
  font-weight: 900;
}

.map-card {
  overflow: hidden;
  min-height: 470px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}

.site-footer {
  padding: 56px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 38px;
}

.brand-footer {
  color: white;
  margin-bottom: 18px;
}

.site-footer p {
  margin: 0;
  max-width: 360px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: white;
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 38px;
  padding-top: 22px;
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--primary-2);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 8, 14, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: min(100%, 1120px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--dark);
  font-size: 2rem;
  line-height: 1;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
}

.whatsapp-bubble {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px 0 16px;
  background: #25d366;
  color: #042016;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.38);
}

.whatsapp-bubble::before {
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  border-radius: 50%;
  background: white;
  mask: radial-gradient(circle at 50% 50%, #000 62%, transparent 64%);
}

.chat-card {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(330px, calc(100vw - 44px));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.chat-card[hidden] {
  display: none;
}

.chat-card-header {
  display: grid;
  grid-template-columns: 40px 1fr 34px;
  gap: 10px;
  align-items: center;
}

.chat-card-header img {
  border-radius: 12px;
}

.chat-card-header strong,
.chat-card-header small {
  display: block;
}

.chat-card-header small {
  color: var(--muted);
  font-size: 0.78rem;
}

.chat-card-header button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--dark);
  font-size: 1.4rem;
  line-height: 1;
}

.chat-card p {
  margin: 16px 0;
  color: var(--muted);
}

.chat-card .btn {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .process-grid,
  .quote-grid,
  .instagram-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 160px 0 100px;
  }

  .hero-card {
    max-width: 420px;
  }

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

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

  .gallery-item-large {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 12px;
    background: white;
    color: var(--text);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: var(--surface-soft);
  }

  .main-nav a::after {
    display: none;
  }

  .stats-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }

  .stats-grid div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .hero {
    padding: 132px 0 78px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .stats-grid,
  .services-grid,
  .quote-form,
  .faq-grid,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .stats-grid div,
  .stats-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .gallery-item,
  .gallery-item-large {
    flex: 0 0 82%;
    height: 360px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .phone-frame {
    border-width: 8px;
    border-radius: 32px;
  }

  .contact-card,
  .quote-form {
    padding: 20px;
    border-radius: 24px;
  }

  .map-card,
  .map-card iframe {
    min-height: 360px;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-bubble span {
    display: none;
  }

  .whatsapp-bubble {
    width: 58px;
    padding: 0;
    justify-content: center;
  }
}

/* Footer minimal - Developed by Lokisho27 */
.developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
  white-space: nowrap;
}
.developer-credit img {
  width: 92px;
  height: auto;
  display: block;
  border-radius: 8px;
  opacity: .92;
}
@media (max-width: 720px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .developer-credit img { width: 82px; }
}
