/* ==========================================================================
   Villa Icelle — Skopelos Town
   Palette: sea blue and a mirrored rose (#566b85 / #85566b), over limewash
   and the pale stone of the terrace.
   ========================================================================== */

:root {
  --slate:        #39414a;
  --slate-deep:   #232a31;
  --pine:         #82b0ba;
  --pine-light:   #4d6079;
  --wash:         #eef0eb;
  --wash-warm:    #e4e6df;
  --sand:         #d7d1c4;
  --plum:         #85566b;
  --plum-light:   #96647a;
  --sea:          #1e6e77;
  --ink:          #1b2026;
  --paper:        #ffffff;

  --measure: 68ch;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --shell: 1180px;

  --display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --body: "Karla", "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.78rem, 0.76rem + 0.1vw, 0.84rem);
  --step-0:  clamp(1rem, 0.97rem + 0.15vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.6rem, 1.35rem + 1.2vw, 2.4rem);
  --step-3:  clamp(2.1rem, 1.6rem + 2.4vw, 3.6rem);
  --step-4:  clamp(2.8rem, 1.8rem + 4.6vw, 5.6rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --- reset ---------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--sea); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--plum); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); font-family: var(--body); font-weight: 700; line-height: 1.3; letter-spacing: 0; }

p { margin: 0 0 1.1em; max-width: var(--measure); }

:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 0.75rem 1rem;
}
.skip:focus { left: 0; }

/* --- shared bits ---------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pine-light);
  margin: 0 0 1rem;
}
.eyebrow--light { color: var(--sand); }

.lede { font-size: var(--step-1); line-height: 1.5; color: var(--slate); }

.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--pine { background: var(--pine); color: var(--wash); }
.section--pine h2 { color: var(--paper); }
.section--pine p { color: #e8edf4; }
.section--pine a { color: #ffffff; }
.section--pine a:hover { color: #fff; }
.section--pine .lede { color: #e8edf4; }
.section--pine .amenities li { border-bottom-color: rgba(255, 255, 255, 0.26); }
.section--pine .amenities li::before { background: #ffffff; }
.section--pine .card {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.26);
}
.section--pine .card h3 { color: #fff; }
.section--pine .card p { color: #e8edf4; }
.section--pine .card em { color: #fff; }
.section--pine .btn { background: #5e3a4b; border-color: rgba(255,255,255,0.55); }
.section--pine .btn:hover { background: #85566b; border-color: #fff; }
.section--pine .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.section--pine .btn--ghost:hover { background: #fff; color: var(--pine); border-color: #fff; }
.section--warm { background: var(--wash-warm); }
.section--paper { background: var(--paper); }

.rule {
  border: 0;
  border-top: 1px solid var(--sand);
  margin: 0;
}

/* buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--plum);
  background: var(--plum);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { background: var(--plum-light); border-color: var(--plum-light); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: currentColor; }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--wash); }

.btn--onDark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.65); }
.btn--onDark:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* the signature: a Chora roofline, stepping down the hill */

.roofline {
  height: clamp(34px, 4.5vw, 54px);
  background-color: var(--slate-deep);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201200%2080%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C80%20L0%2C36%20L38.5%2C22%20L77%2C36%20L77%2C80%20L77%2C58%20L116.0%2C50%20L155%2C58%20L155%2C80%20L155%2C34%20L201.5%2C22%20L248%2C34%20L248%2C80%20L248%2C30%20L288.5%2C22%20L329%2C30%20L329%2C80%20L329%2C60%20L385.0%2C50%20L441%2C60%20L441%2C80%20L441%2C44%20L478.5%2C38%20L516%2C44%20L516%2C80%20L516%2C43%20L559.5%2C30%20L603%2C43%20L603%2C80%20L603%2C50%20L650.0%2C38%20L697%2C50%20L697%2C80%20L697%2C60%20L731.5%2C50%20L766%2C60%20L766%2C80%20L766%2C42%20L814.0%2C34%20L862%2C42%20L862%2C80%20L862%2C37%20L892.5%2C30%20L923%2C37%20L923%2C80%20L923%2C48%20L955.5%2C38%20L988%2C48%20L988%2C80%20L988%2C58%20L1039.0%2C46%20L1090%2C58%20L1090%2C80%20L1090%2C39%20L1134.5%2C30%20L1179%2C39%20L1179%2C80%20L1179%2C44%20L1189.5%2C34%20L1200%2C44%20L1200%2C80%20L1200%2C80%20Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201200%2080%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C80%20L0%2C36%20L38.5%2C22%20L77%2C36%20L77%2C80%20L77%2C58%20L116.0%2C50%20L155%2C58%20L155%2C80%20L155%2C34%20L201.5%2C22%20L248%2C34%20L248%2C80%20L248%2C30%20L288.5%2C22%20L329%2C30%20L329%2C80%20L329%2C60%20L385.0%2C50%20L441%2C60%20L441%2C80%20L441%2C44%20L478.5%2C38%20L516%2C44%20L516%2C80%20L516%2C43%20L559.5%2C30%20L603%2C43%20L603%2C80%20L603%2C50%20L650.0%2C38%20L697%2C50%20L697%2C80%20L697%2C60%20L731.5%2C50%20L766%2C60%20L766%2C80%20L766%2C42%20L814.0%2C34%20L862%2C42%20L862%2C80%20L862%2C37%20L892.5%2C30%20L923%2C37%20L923%2C80%20L923%2C48%20L955.5%2C38%20L988%2C48%20L988%2C80%20L988%2C58%20L1039.0%2C46%20L1090%2C58%20L1090%2C80%20L1090%2C39%20L1134.5%2C30%20L1179%2C39%20L1179%2C80%20L1179%2C44%20L1189.5%2C34%20L1200%2C44%20L1200%2C80%20L1200%2C80%20Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-size: 1200px 100%;
  mask-size: 1200px 100%;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
}
.roofline--pine { background-color: var(--pine); }
.roofline--wash { background-color: var(--wash); }
.roofline--warm { background-color: var(--wash-warm); }
.roofline--flip { transform: scaleY(-1); }

/* --- header --------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 240, 235, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

.wordmark {
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.wordmark span {
  font-family: var(--body);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pine-light);
  font-weight: 700;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }

.nav a {
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate);
  text-decoration: none;
  padding-block: 0.35rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--sand); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--plum); }

.nav .btn { padding: 0.7rem 1.15rem; color: #fff; border-bottom: 1px solid var(--plum); }
.nav .btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--sand);
  padding: 0.55rem 0.8rem;
  font: inherit;
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--wash);
    border-bottom: 1px solid var(--sand);
    padding: 0.5rem var(--gutter) 1.75rem;
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    box-shadow: 0 18px 40px rgba(35, 42, 49, 0.12);
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding-block: 1rem; border-bottom: 1px solid var(--sand); }
  .nav .btn { margin-top: 1.25rem; justify-content: center; }
}

/* --- hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(460px, 76vh, 760px);
  background-color: var(--slate);
  background-image:
    linear-gradient(100deg, rgba(27,32,38,0.62) 0%, rgba(27,32,38,0.34) 38%, rgba(27,32,38,0.04) 68%, rgba(27,32,38,0) 100%),
    linear-gradient(180deg, rgba(27,32,38,0.10) 0%, rgba(27,32,38,0.26) 45%, rgba(27,32,38,0.80) 100%),
    var(--hero-image, none),
    linear-gradient(150deg, #4a6f78 0%, #2f5a56 45%, #20463a 100%);
  background-size: cover;
  background-position: var(--hero-pos, center);
  color: #fff;
  overflow: hidden;
}
.hero--short { min-height: clamp(320px, 46vh, 470px); }
/* A lighter treatment for the home hero, where the photograph carries the page */
.hero--bright {
  background-image:
    radial-gradient(84% 94% at 0% 42%,
      rgba(27,32,38,0.75) 0%, rgba(27,32,38,0.56) 44%, rgba(27,32,38,0.20) 72%, rgba(27,32,38,0) 92%),
    linear-gradient(180deg, rgba(27,32,38,0) 0%, rgba(27,32,38,0) 62%, rgba(27,32,38,0.30) 100%),
    var(--hero-image, none),
    linear-gradient(150deg, #4a6f78 0%, #2f5a56 45%, #20463a 100%);
}

/* On phones and tablets the headline spans the full width, so the shading has to as well */
@media (max-width: 900px) {
  .hero--bright {
    background-image:
      linear-gradient(180deg, rgba(27,32,38,0.40) 0%, rgba(27,32,38,0.46) 46%, rgba(27,32,38,0.66) 100%),
      var(--hero-image, none),
      linear-gradient(150deg, #4a6f78 0%, #2f5a56 45%, #20463a 100%);
  }
}


.hero__inner { padding-block: clamp(3rem, 8vw, 6rem); position: relative; z-index: 2; }
.hero .eyebrow--light { color: #fff; }
.hero h1, .hero p, .hero .eyebrow {
  text-shadow: 0 1px 26px rgba(27, 32, 38, 0.55), 0 1px 3px rgba(27, 32, 38, 0.3);
}
.hero h1 { color: #fff; max-width: 16ch; margin-bottom: 0.35em; }
.hero p { color: rgba(255,255,255,0.86); font-size: var(--step-1); max-width: 46ch; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

.hero__roof {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
}

/* --- key facts ------------------------------------------------------------ */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border-top: 1px solid var(--sand);
}
.facts div {
  padding: 1.75rem 1.25rem 1.75rem 0;
  border-bottom: 1px solid var(--sand);
}
.facts dt {
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pine-light);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: var(--step-2);
  line-height: 1.1;
}

/* --- generic grids -------------------------------------------------------- */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
  .split--wide-right { grid-template-columns: 0.85fr 1.15fr; }
  .split--flip > :first-child { order: 2; }
}

.cards {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--sand);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.card h3 { margin-bottom: 0.5rem; }
.card p:last-child { margin-bottom: 0; }
.card__num {
  font-family: var(--display);
  font-size: var(--step-2);
  color: var(--plum);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}

/* booking cards */

.card--action {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.card--action p { flex: 1 1 auto; }
.card--action .btn { align-self: flex-start; margin-top: 1rem; }
.card__where {
  font-family: var(--display);
  font-size: var(--step-2);
  line-height: 1.1;
  margin: 0 0 0.6rem;
}
.card__meta {
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pine-light);
  margin: 0 0 0.9rem;
}

/* amenity list */

.amenities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0 clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.amenities li {
  padding: 0.85rem 0 0.85rem 1.5rem;
  border-bottom: 1px solid var(--sand);
  position: relative;
}
.amenities li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.35rem;
  width: 7px; height: 7px;
  background: var(--plum);
  transform: rotate(45deg);
}

/* distance table */

.distances { list-style: none; margin: 0; padding: 0; }
.distances li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(215, 209, 196, 0.5);
}
.distances b { font-weight: 500; white-space: nowrap; }
.distances span:first-child { flex: 0 0 auto; }
.distances .dots {
  flex: 1 1 auto;
  border-bottom: 1px dotted var(--sand);
  transform: translateY(-4px);
}
.section--pine .distances li { border-bottom-color: rgba(255,255,255,0.24); }
.section--pine .distances .dots { border-bottom-color: rgba(255,255,255,0.4); }

/* --- images --------------------------------------------------------------- */

.frame {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #cfd6cf 0%, #aebbb4 55%, #8ea59b 100%);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.frame--tall { aspect-ratio: 3 / 4; }
.frame--wide { aspect-ratio: 4 / 3; }
.frame--pano { aspect-ratio: 16 / 9; }

.gallery {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.gallery button {
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  display: block;
  overflow: hidden;
}
.gallery button:hover img { transform: scale(1.04); }
.gallery .frame { aspect-ratio: 4 / 3; }
.gallery .frame--feature { grid-column: span 2; aspect-ratio: 16 / 9; }
@media (max-width: 560px) {
  .gallery .frame--feature { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* placeholder shown when a photo file is not yet in /images */
.is-missing::after {
  content: attr(data-file);
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(27, 32, 38, 0.55);
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.35) 0 12px, rgba(255,255,255,0) 12px 24px);
}
.is-missing img { opacity: 0; }

/* --- quote ---------------------------------------------------------------- */

.quote {
  margin: 0;
  max-width: 44ch;
}
.quote p {
  font-family: var(--display);
  font-size: var(--step-2);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.quote footer {
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pine-light);
}
.section--pine .quote footer { color: #dfe6ef; }

/* --- form ----------------------------------------------------------------- */

.form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--sand);
  padding: 0.8rem 0.9rem;
  width: 100%;
  border-radius: 0;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pine-light); }
.field--pair { display: grid; gap: 1.15rem; }
@media (min-width: 620px) { .field--pair { grid-template-columns: 1fr 1fr; } }

.form__note { font-size: var(--step--1); color: var(--slate); }
.hp { position: absolute; left: -9999px; opacity: 0; }

.form__status {
  padding: 0.9rem 1.1rem;
  border-left: 3px solid var(--pine-light);
  background: var(--wash-warm);
  font-size: 0.95rem;
}
.form__status[hidden] { display: none; }

/* --- FAQ ------------------------------------------------------------------ */

.faq details {
  border-bottom: 1px solid var(--sand);
  padding: 0.4rem 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2.5rem 1.1rem 0;
  font-weight: 700;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--plum);
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 0.9rem; margin-bottom: 0; }

/* --- lightbox ------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(27, 32, 38, 0.94);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 3rem);
  border: 0;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 84vh; object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  cursor: pointer;
}
.lightbox__close:hover { background: #fff; color: var(--ink); }

/* --- footer --------------------------------------------------------------- */

.site-footer {
  background: var(--slate-deep);
  color: #b9c0c7;
  font-size: 0.95rem;
}
.site-footer a { color: #e3e6e2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer h2, .site-footer h3 { color: #fff; }

.site-footer__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-block: clamp(3rem, 7vw, 5rem);
}
@media (min-width: 780px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 0.3rem 0; }
.site-footer h3 {
  font-family: var(--body);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.site-footer__mark {
  font-family: var(--display);
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.colophon {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* --- map ------------------------------------------------------------------ */

.map {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--sand);
  filter: saturate(0.75);
}

/* --- motion --------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .hero__actions, .nav-toggle, .lightbox { display: none !important; }
  body { background: #fff; }
}
