/* ========================================
   TOBIAS & SILVIA SERVICES
   Scandinavian-warm aesthetic
   ======================================== */

:root {
  --cream: #FAF7F2;
  --sand: #F0EAE0;
  --warm-gray: #D4CBC0;
  --charcoal: #2D2926;
  --charcoal-light: #4A4540;
  --text-muted: #7A7268;
  --copper: #B87333;
  --copper-light: #D4A574;
  --copper-dark: #9A5F28;
  --sage: #7B9E6B;
  --sage-light: #A8BE9E;
  --sage-bg: #EEF3EB;
  --white: #FFFFFF;
  --border: rgba(212, 203, 192, 0.4);

  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Albert Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad: 100px;
  --section-pad-sm: 60px;
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;

  --shadow-sm: 0 2px 8px rgba(45, 41, 38, 0.05);
  --shadow-md: 0 4px 24px rgba(45, 41, 38, 0.08);
  --shadow-lg: 0 12px 48px rgba(45, 41, 38, 0.12);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Language Toggle (CSS-driven) ---- */

html:not([lang="pt"]) .lang-pt { display: none !important; }
html[lang="pt"] .lang-en { display: none !important; }

/* ---- Typography ---- */

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.section-tag.center { display: block; text-align: center; }

.section-title { margin-bottom: 20px; }
.section-title.center { text-align: center; }

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
}
.section-subtitle.center { text-align: center; margin-inline: auto; }

.section-header { margin-bottom: 56px; }

/* ---- Container ---- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--copper);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 115, 51, 0.3);
}

.btn--outline {
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn--sm { padding: 10px 22px; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- Reveal Animations ---- */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- NAVBAR ---- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease);
}
.navbar--solid {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo { display: flex; align-items: center; }
.navbar__logo-mark {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: -0.02em;
}

.navbar__nav {
  display: flex;
  gap: 32px;
}
.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: color 0.2s;
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width 0.3s var(--ease);
}
.navbar__link:hover,
.navbar__link--active { color: var(--copper); }
.navbar__link:hover::after,
.navbar__link--active::after { width: 100%; }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.lang-toggle__opt {
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-toggle__opt--active {
  color: var(--copper);
  background: rgba(184, 115, 51, 0.1);
}
.lang-toggle__sep { color: var(--warm-gray); }

.navbar__cta { display: none; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.navbar__hamburger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger--active span:nth-child(2) { opacity: 0; }
.navbar__hamburger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- HERO ---- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero__tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}

.hero__title {
  margin-bottom: 24px;
  color: var(--charcoal);
}
.hero__title em {
  font-style: normal;
  color: var(--copper);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__image-frame {
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  background: var(--copper);
  opacity: 0.1;
  z-index: 1;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: float 2.5s ease-in-out infinite;
}

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

/* ---- ABOUT ---- */

.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.about__images {
  position: relative;
  min-height: 480px;
}
.about__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }

.about__img--tobias {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 320px;
  z-index: 2;
}
.about__img--silvia {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 320px;
  z-index: 1;
  border: 4px solid var(--white);
}

.about__content p {
  color: var(--charcoal-light);
  margin-bottom: 16px;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.about__stat {
  display: flex;
  flex-direction: column;
}
.about__stat strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--copper);
  line-height: 1.2;
}
.about__stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- SERVICES ---- */

.services {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.services__group {
  margin-bottom: 60px;
}
.services__group:last-child { margin-bottom: 0; }

.services__group-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.services__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.services__group-name {
  font-size: 1.4rem;
  margin-bottom: 2px;
}
.services__group-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.35s var(--ease);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--copper);
  border-radius: 3px 0 0 3px;
  transition: height 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { height: 100%; }

.services__group:last-child .service-card::before { background: var(--sage); }

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s var(--ease);
}
.service-card__icon--copper {
  background: rgba(184, 115, 51, 0.08);
  color: var(--copper);
}
.service-card__icon--sage {
  background: var(--sage-bg);
  color: var(--sage);
}

.service-card:hover .service-card__icon--copper {
  background: var(--copper);
  color: var(--white);
}
.service-card:hover .service-card__icon--sage {
  background: var(--sage);
  color: var(--white);
}

.service-card__title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- GALLERY ---- */

.gallery {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }

.gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(45, 41, 38, 0.7));
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__item--wide { grid-column: span 2; }

/* ---- WHY CHOOSE US ---- */

.why-us {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-us__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.35s var(--ease);
}
.why-us__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-us__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 115, 51, 0.08);
  color: var(--copper);
  margin-bottom: 20px;
}

.why-us__card h4 { margin-bottom: 10px; }
.why-us__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- TESTIMONIALS ---- */

.testimonials {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.35s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--copper);
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card__author strong {
  font-size: 0.95rem;
  color: var(--charcoal);
}
.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- CONTACT ---- */

.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__status {
  margin-top: 12px;
  font-size: 0.9rem;
  text-align: center;
  min-height: 24px;
}
.contact-form__status--success { color: var(--sage); }
.contact-form__status--error { color: #c0392b; }

.contact__info { display: flex; flex-direction: column; gap: 28px; }

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

.contact__detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact__detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 115, 51, 0.08);
  color: var(--copper);
}
.contact__detail strong {
  font-size: 0.85rem;
  display: block;
  margin-bottom: 2px;
}
.contact__detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact__detail a {
  color: var(--copper);
  transition: color 0.2s;
}
.contact__detail a:hover { color: var(--copper-dark); }

.contact__whatsapp { margin-top: 8px; }

/* ---- FOOTER ---- */

.footer {
  background: var(--charcoal);
  color: rgba(250, 247, 242, 0.8);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--copper-light);
  display: block;
  margin-bottom: 12px;
}

.footer__col--brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 247, 242, 0.08);
  color: rgba(250, 247, 242, 0.7);
  transition: all 0.3s var(--ease);
}
.footer__social a:hover {
  background: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--copper-light); }

.footer__address {
  font-size: 0.9rem;
  margin-top: 8px;
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.4);
}

.footer__lang {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__lang-btn {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
  transition: color 0.2s;
}
.footer__lang-btn:hover { color: var(--copper-light); }

/* ---- FLOATING WHATSAPP ---- */

.navbar__link--booking {
  color: var(--sage) !important;
}
.navbar__link--booking::after {
  background: var(--sage) !important;
}

.btn--sage {
  background: var(--sage);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.85rem;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--sage:hover {
  background: #6a8d5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 158, 107, 0.3);
}

.contact__whatsapp-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (min-width: 1024px) {
  .navbar__cta { display: inline-flex; }
}

@media (max-width: 1023px) {
  .navbar__hamburger { display: flex; }

  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s var(--ease);
    z-index: 999;
  }
  .navbar__nav--open { right: 0; }

  .navbar__nav .navbar__link { font-size: 1.1rem; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__subtitle { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__image { order: -1; }
  .hero__image-accent { display: none; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__images { min-height: 360px; }
  .about__img--tobias { width: 55%; height: 260px; }
  .about__img--silvia { width: 55%; height: 260px; }

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

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px;
  }

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

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

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 640px) {
  :root {
    --section-pad: var(--section-pad-sm);
  }

  .container { padding: 0 16px; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll-hint { display: none; }

  .about__images { min-height: 300px; }
  .about__img--tobias { width: 58%; height: 220px; }
  .about__img--silvia { width: 58%; height: 220px; }
  .about__stats { flex-direction: column; gap: 20px; }

  .services__grid { grid-template-columns: 1fr; }
  .services__grid--4 { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
  }
  .gallery__item--wide { grid-column: span 1; }

  .why-us__grid { grid-template-columns: 1fr; }

  .testimonials__track {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
