.hero-media img {
  object-position: center 38%;
}

.included-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  column-gap: 70px;
  align-items: end;
}

.included-heading .eyebrow,
.included-heading .display {
  grid-column: 1;
}

.included-heading .section-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0 0 3px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 45px 0 32px;
}

.included-grid article {
  min-height: 205px;
  padding: 19px;
  background: #fffdf9;
  border-top: 2px solid #2f6b59;
  transition: transform .3s ease, box-shadow .3s ease;
}

.included-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 27px rgba(18, 61, 56, .11);
}

.included-grid span {
  color: #cf6e58;
  font-size: 11px;
  font-weight: 700;
}

.included-grid h3 {
  margin: 35px 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.included-grid p,
.comparison-copy {
  margin: 0;
  color: #50645e;
  font-size: 14px;
  line-height: 1.65;
}

.comparison-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(36px, 8vw, 115px);
  align-items: center;
}

.comparison-copy {
  max-width: 370px;
  margin-top: 27px;
}

.comparison-frame {
  --comparison-position: 50%;
  position: relative;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: #d8e2da;
  box-shadow: 0 18px 40px rgba(18, 61, 56, .14);
}

.comparison-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comparison-after {
  position: absolute;
  inset: 0;
}

.comparison-before-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}

.comparison-before-wrap img {
  width: 100%;
  object-position: center;
}

.comparison-frame::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 2px;
  background: #fffdf9;
  transform: translateX(-50%);
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: var(--comparison-position);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #fffdf9;
  color: #123d38;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 16px rgba(18, 61, 56, .2);
  font-size: 18px;
}

.comparison-label {
  position: absolute;
  top: 15px;
  z-index: 1;
  padding: 6px 9px;
  background: rgba(12, 69, 63, .82);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison-label-before { left: 15px; }
.comparison-label-after { right: 15px; }

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.hero-media {
  transform: scale(1.035);
  animation: hero-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  overflow: hidden;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: linear-gradient(108deg, transparent 38%, rgba(222, 240, 225, .18) 50%, transparent 62%);
  transform: translateX(-45%) rotate(3deg);
  animation: hero-light-sweep 12s ease-in-out infinite;
  pointer-events: none;
}

.hero-content,
.hero-scroll {
  z-index: 1;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.language-button {
  border: 0;
  padding: 6px 4px;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color .2s, transform .2s;
}

.language-button:hover,
.language-button.active {
  color: #fff;
  transform: translateY(-1px);
}

.card-image,
.fresh-image {
  position: relative;
}

.image-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 30%, rgba(255, 255, 255, .32) 48%, transparent 65%);
  transform: translateX(-130%);
  transition: transform .8s ease;
}

.service-card:hover .image-sheen,
.fresh-image:hover .image-sheen {
  transform: translateX(130%);
}

.fresh-image img {
  transition: transform 1.2s ease;
}

.fresh-image:hover img {
  transform: scale(1.06);
}

.gallery-item.visible img {
  animation: gallery-breathe 8s ease-in-out infinite alternate;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px 11px 10px;
  border-radius: 999px;
  background: #1e8e57;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(6, 53, 39, .25);
  transition: transform .25s, box-shadow .25s;
  animation: whatsapp-enter .7s .8s both;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 30px rgba(6, 53, 39, .32);
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  transform: rotate(-20deg);
}

@keyframes gallery-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.055); }
}

@keyframes hero-drift {
  0% { transform: scale(1.035) translate3d(-1.2%, -1%, 0); }
  52% { transform: scale(1.075) translate3d(1.2%, .7%, 0); }
  100% { transform: scale(1.045) translate3d(-.3%, 1%, 0); }
}

@keyframes hero-light-sweep {
  0%, 24% { transform: translateX(-48%) rotate(3deg); opacity: 0; }
  42% { opacity: .85; }
  70%, 100% { transform: translateX(52%) rotate(3deg); opacity: 0; }
}

@keyframes whatsapp-enter {
  from { opacity: 0; transform: translateY(25px) scale(.9); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 430px) {
  .whatsapp-float { right: 14px; bottom: 14px; padding: 10px; }
  .whatsapp-float > span:last-child { display: none; }
}

@media (max-width: 800px) {
  .language-switch { margin-left: auto; }
  .site-header .language-switch { order: 1; }
  .site-header .menu-toggle { order: 2; margin-left: 0; }
  .included-heading,
  .comparison-layout { grid-template-columns: 1fr; gap: 25px; }
  .included-heading .section-copy { grid-column: 1; grid-row: auto; }
  .included-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 30px; }
  .included-grid article { min-height: 170px; padding: 15px; }
  .included-grid h3 { margin-top: 26px; font-size: 21px; }
  .comparison-frame { aspect-ratio: 1 / 1; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item.visible img,
  .whatsapp-float,
  .hero-media,
  .hero-overlay::after { animation: none; }
}