/* Chalet San Fiz — selling site */
:root {
  --forest: #163528;
  --forest-deep: #0e241c;
  --moss: #2f5c45;
  --sage: #7a9a82;
  --mist: #e8eee8;
  --paper: #f4f7f3;
  --stone: #c5b8a5;
  --ink: #142018;
  --muted: #4a5c50;
  --pool: #3d8a9a;
  --accent: #8b3a2f;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(14, 36, 28, 0.18);
  --radius: 2px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
button, input, textarea { font: inherit; }
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--forest); color: #fff; padding: 0.5rem 1rem; z-index: 100;
}
.skip:focus { left: 0; }

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h);
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 18, 14, 0.72) 0%, rgba(8, 18, 14, 0.35) 70%, transparent 100%);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s, box-shadow 0.35s, color 0.35s var(--ease);
}
.site-header.is-solid {
  color: var(--forest-deep);
  background: rgba(244, 247, 243, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(22, 53, 40, 0.08);
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; color: inherit; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.site-header.is-solid .brand-name { text-shadow: none; }
.brand-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-header.is-solid .brand-sub { color: var(--muted); }
.nav { display: flex; gap: 1.25rem; }
.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
}
.nav a:hover { opacity: 1; }
.site-header.is-solid .nav a {
  color: var(--forest);
  text-shadow: none;
  opacity: 0.85;
  font-weight: 500;
}
.site-header.is-solid .nav a:hover { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 0.85rem; }
.header-price {
  font-weight: 700; font-size: 0.92rem; color: inherit;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.site-header.is-solid .header-price {
  color: var(--forest);
  text-shadow: none;
}
.lang-switch {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75); padding-bottom: 1px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.site-header.is-solid .lang-switch {
  border-bottom-color: currentColor;
  text-shadow: none;
}
.nav-toggle {
  display: none; width: 2.5rem; height: 2.5rem;
  border: 0; background: transparent; cursor: pointer; position: relative;
}
.nav-toggle span {
  position: absolute; left: 0.55rem; right: 0.55rem; height: 2px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease), top 0.25s, background 0.25s;
}
.site-header.is-solid .nav-toggle span {
  background: var(--forest);
  box-shadow: none;
}
.nav-toggle span:first-child { top: 0.95rem; }
.nav-toggle span:last-child { top: 1.4rem; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 1.15rem; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 1.15rem; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto;
    background: rgba(244, 247, 243, 0.98);
    flex-direction: column; padding: 1.25rem 1.5rem 1.5rem;
    gap: 1rem; border-bottom: 1px solid rgba(22, 53, 40, 0.1);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }
  .nav a,
  .site-header.is-solid .nav a {
    color: var(--forest);
    text-shadow: none;
    font-weight: 500;
    opacity: 0.9;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .header-price { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.03);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 14, 0.55) 0%, rgba(14, 36, 28, 0.2) 32%, rgba(8, 18, 14, 0.55) 58%, rgba(8, 18, 14, 0.88) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(61, 138, 154, 0.18), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 5.5rem;
  max-width: 40rem;
  margin-left: max(1.25rem, calc((100% - 1120px) / 2));
  margin-right: auto;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.45);
}
.hero-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  opacity: 1;
}
.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55), 0 2px 6px rgba(0, 0, 0, 0.4);
}
.hero-title {
  margin: 1rem 0 0;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  max-width: 28rem;
  color: #fff;
  opacity: 1;
}
.hero-lead {
  margin: 0.85rem 0 0;
  max-width: 32rem;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 1;
}
.hero-cta {
  margin-top: 1.75rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem 1rem;
}
.hero-price {
  font-size: 0.95rem;
  color: #fff;
  opacity: 1;
  font-weight: 600;
}
.hero-price strong { font-size: 1.15rem; }
.hero-price-link {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  padding-bottom: 1px;
  font-weight: 600;
}
.hero-price-link:hover {
  border-bottom-color: #fff;
}
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%;
  width: 1px; height: 2.5rem;
  background: linear-gradient(transparent, rgba(255,255,255,0.8));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--white);
  color: var(--forest-deep);
}
.btn-primary:hover { background: var(--mist); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Sections */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 38rem; margin-bottom: 2.5rem; }
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}
.section-head p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--moss);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.highlights,
.gallery,
.location,
.contact,
.exterior {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}
.highlights {
  background:
    linear-gradient(180deg, var(--mist), var(--paper) 40%),
    var(--paper);
}
.highlight-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.5rem;
}
.highlight {
  padding-top: 1rem;
  border-top: 2px solid var(--forest);
}
.highlight h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}
.highlight p { margin: 0; color: var(--muted); font-size: 0.98rem; }
@media (max-width: 860px) {
  .highlight-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .highlight-grid { grid-template-columns: 1fr; }
}

/* Property */
.property-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 0.75rem;
  margin: 0 0 1.5rem;
  padding: 1.25rem 0;
  border-block: 1px solid rgba(22, 53, 40, 0.15);
}
.stats div { margin: 0; }
.stats dt {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.stats dd {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest-deep);
}
.note {
  margin: 0 0 1.75rem;
  padding: 0.85rem 1rem;
  background: rgba(47, 92, 69, 0.08);
  border-left: 3px solid var(--moss);
  font-size: 0.95rem;
}
.owner-sale {
  margin: 0.75rem 0 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: 0.01em;
}
.section-head .owner-sale {
  margin-top: 1rem;
}
.cta-band .owner-sale {
  margin: 0.85rem 0 1.25rem;
  color: #fff;
  font-weight: 600;
  opacity: 0.95;
}
.floors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.floor h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.floor ul {
  margin: 0; padding: 0; list-style: none;
}
.floor li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.floor li::before {
  content: "";
  position: absolute; left: 0; top: 0.85rem;
  width: 0.4rem; height: 0.4rem;
  background: var(--pool);
  border-radius: 50%;
}
.services h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.service-list {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 0; padding: 0; list-style: none;
}
.service-list li {
  padding: 0.4rem 0.75rem;
  background: var(--mist);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--forest);
}
.property-visual {
  position: relative;
  margin: 0;
}
.property-visual > img:first-child {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.property-visual-2 {
  position: absolute;
  width: 58%;
  right: -8%;
  bottom: -8%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .property-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .floors { grid-template-columns: 1fr; }
  .property-visual-2 { right: 4%; bottom: -6%; }
}

/* Exterior */
.exterior { background: var(--forest-deep); color: var(--mist); }
.exterior .section-head h2 { color: var(--white); }
.exterior .section-head p { color: rgba(232, 238, 232, 0.75); }
.exterior-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.exterior-item--wide { grid-column: span 2; }
.exterior-photo { overflow: hidden; }
.exterior-photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.exterior-item:hover .exterior-photo img { transform: scale(1.04); }
.exterior-item--wide .exterior-photo img { aspect-ratio: 21 / 11; }
.exterior-text { padding: 1rem 0.15rem 0.25rem; }
.exterior-text h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
}
.exterior-text p { margin: 0; color: rgba(232, 238, 232, 0.72); font-size: 0.95rem; }
@media (max-width: 860px) {
  .exterior-grid { grid-template-columns: 1fr 1fr; }
  .exterior-item--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .exterior-grid { grid-template-columns: 1fr; }
  .exterior-item--wide { grid-column: auto; }
}

/* Gallery */
.gallery-filters { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.filter-btn {
  border: 1px solid rgba(22, 53, 40, 0.2);
  background: transparent;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
}
.filter-btn.is-active,
.filter-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}
.gallery-item {
  overflow: hidden;
  background: var(--mist);
}
.gallery-item.is-hidden { display: none; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Location */
.location-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.map-frame {
  background: var(--mist);
  min-height: 360px;
  box-shadow: var(--shadow);
}
.map-frame iframe {
  width: 100%; height: 100%; min-height: 360px; border: 0;
}
.aerial { margin: 0; }
.aerial img {
  width: 100%; height: 100%; min-height: 360px; object-fit: cover;
  box-shadow: var(--shadow);
}
.aerial figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.distances-title {
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.distance-groups {
  display: grid;
  gap: 2rem;
}
.distance-group-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.distances {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.distances li {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(4.5rem, 0.45fr) minmax(5rem, 0.45fr);
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid rgba(22, 53, 40, 0.1);
  font-size: 0.98rem;
}
.distances li.has-photo {
  grid-template-columns: 4.5rem minmax(0, 1.3fr) minmax(4.5rem, 0.4fr) minmax(5rem, 0.4fr);
  padding: 0.65rem 1rem 0.65rem 0.65rem;
  gap: 0.85rem 1.1rem;
}
.dist-photo {
  display: block;
  width: 4.5rem;
  height: 3.4rem;
  overflow: hidden;
  background: var(--mist);
}
.dist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dist-photo img[src$=".svg"] {
  object-fit: cover;
  padding: 0;
  background: #f4f7f3;
}
.dist-name {
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.3;
}
.dist-km,
.dist-time {
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}
.dist-km {
  font-weight: 700;
  color: var(--forest);
}
.dist-time {
  color: var(--muted);
  font-weight: 500;
}
.distances-credit {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 42rem;
}
@media (min-width: 720px) {
  .distances {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.25rem;
  }
}
@media (max-width: 540px) {
  .distances li,
  .distances li.has-photo {
    grid-template-columns: 3.75rem 1fr auto;
    grid-template-areas:
      "photo name name"
      "photo km time";
    gap: 0.35rem 0.85rem;
    padding: 0.65rem;
  }
  .dist-photo { grid-area: photo; width: 3.75rem; height: 3.75rem; }
  .dist-name { grid-area: name; }
  .dist-km { grid-area: km; text-align: left; }
  .dist-time { grid-area: time; }
}
@media (max-width: 900px) {
  .location-layout { grid-template-columns: 1fr; }
}

/* CTA band */
.cta-band {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--forest-deep);
  color: #fff;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: 320px;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../img/hero/vista-piscina-casa-750.webp") center / cover no-repeat;
  opacity: 0.62;
  z-index: 0;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 14, 0.35) 0%, rgba(8, 18, 14, 0.55) 100%);
  z-index: 0;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: auto;
  padding: 1.5rem 1.25rem;
  border-radius: 4px;
  background: rgba(8, 18, 14, 0.55);
  backdrop-filter: blur(6px);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
}
.cta-band p {
  margin: 0.85rem 0 1.5rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  opacity: 1;
}
.cta-band .btn {
  text-shadow: none;
}

/* Contact */
.contact { background: var(--mist); }
.contact-block { max-width: 36rem; }
.contact-channels { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.channel {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  text-decoration: none;
  border-left: 3px solid var(--moss);
  transition: transform 0.25s var(--ease);
}
.channel:hover { transform: translateX(3px); }
.channel span { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.channel strong { font-size: 1.05rem; }
.channel-wa { border-left-color: #1fa855; }
.contact-price { margin-top: 1.25rem; font-size: 1.1rem; }

/* Footer */
.site-footer {
  background: var(--forest-deep);
  color: rgba(232, 238, 232, 0.8);
  padding: 2.5rem 0;
  font-size: 0.9rem;
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.site-footer strong { color: #fff; display: block; margin-bottom: 0.35rem; font-family: var(--font-display); font-size: 1.15rem; }
.site-footer p { margin: 0; max-width: 36rem; }
.footer-copy { opacity: 0.65; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(8, 18, 14, 0.92);
  display: grid; place-items: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}
.lightbox-close { top: 0.75rem; right: 1rem; }
.lightbox-prev { left: 0.75rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 0.75rem; top: 50%; transform: translateY(-50%); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll { display: none; }
}
