/*
  Lorgues single-property website
  Design direction: Nordic Provence: restrained, photo-led, practical clarity.
*/
:root {
  --stone: #f4efe6;
  --stone-2: #ebe2d4;
  --paper: #fffaf2;
  --chalk: #fbf7ef;
  --ink: #20231f;
  --muted: #6d6a61;
  --olive: #68735a;
  --olive-deep: #3f4a38;
  --terracotta: #a55f3f;
  --terracotta-deep: #7e452d;
  --line: rgba(32, 35, 31, .14);
  --shadow: 0 28px 80px rgba(34, 29, 22, .16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Avenir, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 4%, rgba(165, 95, 63, .12), transparent 24rem),
    linear-gradient(180deg, var(--paper), var(--stone) 45%, #f7f1e7);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(165,95,63,.55); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 18px var(--gutter) auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,250,242,.5);
  border-radius: 999px;
  background: rgba(251,247,239,.78);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 14px 45px rgba(25, 24, 20, .10);
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}
.brand-mark {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: .03em;
}
.brand-place {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nav-toggle { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  color: rgba(32,35,31,.78);
  font-size: .86rem;
}
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--terracotta-deep); }
.nav-cta {
  color: #fff !important;
  background: var(--terracotta);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 10px 24px rgba(126,69,45,.22);
}

main { overflow: hidden; }
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px var(--gutter) 58px;
  color: #fff;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #20231f;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.96) contrast(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0,0,0,.32), rgba(0,0,0,.06) 32%, rgba(0,0,0,.66) 100%),
    linear-gradient(90deg, rgba(22,22,18,.58), rgba(22,22,18,.08) 52%, rgba(22,22,18,.32));
}
.hero-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
}
.eyebrow {
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: .98; }
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.05rem, 7.6vw, 7.25rem);
  letter-spacing: -.058em;
}
.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: rgba(255,255,255,.88);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 19px;
  min-height: 48px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 18px 38px rgba(60,31,21,.28); }
.btn-primary:hover { background: var(--terracotta-deep); }
.btn-secondary { border-color: rgba(255,255,255,.44); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,.18); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-stone { background: var(--stone); color: var(--ink); border-color: var(--line); }

.hero-card {
  border: 1px solid rgba(255,255,255,.26);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(28, 31, 27, .38);
  backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 32px 90px rgba(0,0,0,.26);
}
.price { font-family: var(--serif); font-size: 2.25rem; line-height: 1; }
.status { margin-top: 6px; color: rgba(255,255,255,.74); }
.price-note {
  margin: 12px 0 0;
  max-width: 34ch;
  color: rgba(255,255,255,.76);
  font-size: .9rem;
  line-height: 1.45;
}
.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-facts span { display: block; color: rgba(255,255,255,.66); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-facts strong { display: block; margin-top: 2px; font-size: 1.02rem; }

.section {
  padding: clamp(48px, 5vw, 76px) var(--gutter);
}
.section-inner { width: min(100%, var(--max)); margin-inline: auto; }
.section-kicker {
  color: var(--terracotta-deep);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
  margin: 0 0 14px;
}
.section-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.2rem, 5.2vw, 5.5rem);
  letter-spacing: -.045em;
}
.section-lede {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.32vw, 1.2rem);
}

.fact-band {
  position: relative;
  z-index: 2;
  margin: -20px var(--gutter) 0;
}
.fact-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(32,35,31,.12);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,250,242,.94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.fact {
  padding: 20px 18px;
  min-height: 96px;
  border-right: 1px solid var(--line);
}
.fact:nth-child(6n) { border-right: 0; }
.fact span { display: block; color: var(--muted); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.fact strong { display: block; margin-top: 7px; font-size: 1.08rem; line-height: 1.2; }

.intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}
.intro-panel {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,250,242,.55);
}
.intro-panel ul { margin: 0; padding: 0; list-style: none; }
.intro-panel li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.intro-panel li:last-child { border-bottom: 0; }
.intro-panel span { color: var(--muted); }
.intro-text p { margin: 0 0 14px; font-size: clamp(1rem, 1.28vw, 1.12rem); }

.editorial-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: 300px 300px;
  gap: 14px;
  margin-top: 30px;
}
.editorial-grid button {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #ddd;
  border-radius: 22px;
}
.editorial-grid button:first-child { grid-row: 1 / span 2; }
.editorial-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.editorial-grid button:hover img { transform: scale(1.04); }
.photo-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: .85rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.gallery-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.gallery-count { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}
.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--stone-2);
}
.image-card img { width: 100%; height: min(72vh, 620px); object-fit: cover; }
.copy-block h2 { margin: 0 0 18px; font-size: clamp(2.1rem, 4.4vw, 4.6rem); letter-spacing: -.04em; }
.copy-block p { color: var(--muted); margin: 0 0 12px; font-size: 1.02rem; }
.feature-list { display: grid; gap: 10px; margin-top: 20px; }
.feature-item { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.feature-dot { width: 10px; height: 10px; margin-top: 9px; border-radius: 50%; background: var(--olive); box-shadow: 0 0 0 8px rgba(104,115,90,.12); }

.outdoor { background: var(--olive-deep); color: var(--paper); }
.outdoor .section-kicker { color: #d9c0a8; }
.outdoor .section-lede, .outdoor .copy-block p { color: rgba(255,250,242,.72); }
.outdoor .btn-ghost { color: var(--paper); border-color: rgba(255,250,242,.28); }
.outdoor .feature-dot { background: #d9c0a8; box-shadow: 0 0 0 8px rgba(217,192,168,.12); }

.location-map {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,250,242,.65);
}
.location-copy { padding: clamp(26px, 4vw, 48px); }
.location-copy h3 { margin: 0 0 16px; font-size: clamp(1.8rem, 3.1vw, 3.2rem); }
.travel-list { display: grid; gap: 0; margin: 24px 0 0; }
.travel-list div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.travel-list div:last-child { border-bottom: 0; }
.map-abstract {
  background: #f6efe4;
  position: relative;
  display: grid;
  place-items: center;
}
.map-image-button {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
  font: inherit;
  color: inherit;
  align-self: center;
  background: #f6efe4;
}
.map-image-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform .5s ease, filter .5s ease;
}
.map-image-button:hover img { transform: scale(1.025); filter: saturate(1.04); }
.map-image-button span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--paper);
  background: rgba(31,35,31,.72);
  backdrop-filter: blur(12px);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,250,242,.58);
}
.card h3 { margin: 0 0 10px; font-size: 1.65rem; }
.card p { margin: 0; color: var(--muted); }

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.step {
  position: relative;
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,250,242,.58);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  color: var(--terracotta-deep);
  font-size: .78rem;
  letter-spacing: .16em;
  margin-bottom: 18px;
}
.step strong { display: block; margin-bottom: 8px; }
.step span { color: var(--muted); font-size: .95rem; }

.faq-list { margin-top: 34px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 0; }
summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.22rem, 2vw, 1.75rem);
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--terracotta); font-family: var(--sans); }
details[open] summary::after { content: "−"; }
details p { max-width: 780px; margin: 0 0 24px; color: var(--muted); }

.contact {
  background: #1f231f;
  color: var(--paper);
  padding-block: clamp(38px, 4vw, 58px);
}
.contact .section-kicker { color: #d9c0a8; }
.contact .section-lede { color: rgba(255,250,242,.72); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.contact-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,250,242,.16);
  border-radius: var(--radius);
  background: rgba(255,250,242,.06);
}
.contact-panel ul { list-style: none; padding: 0; margin: 28px 0 0; }
.contact-panel li { padding: 14px 0; border-bottom: 1px solid rgba(255,250,242,.13); color: rgba(255,250,242,.78); }
.contact-reveal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.revealed-contact {
  min-height: 0;
  color: rgba(255,250,242,.82);
}
.revealed-contact:empty { display: none; }
.revealed-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  margin: 4px 8px 4px 0;
  padding: 9px 13px;
  border: 1px solid rgba(255,250,242,.18);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255,250,242,.08);
}
.contact-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}
.whatsapp-icon path:last-child { fill: currentColor; stroke: none; }
.revealed-contact a:hover { background: rgba(255,250,242,.14); }
.form {
  display: grid;
  gap: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; color: rgba(255,250,242,.78); font-size: .9rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,250,242,.18);
  border-radius: 16px;
  background: rgba(255,250,242,.08);
  color: var(--paper);
  padding: 13px 14px;
}
select option { color: var(--ink); }
textarea { min-height: 132px; resize: vertical; }
.form-note { color: rgba(255,250,242,.58); font-size: .86rem; }
.form-message { min-height: 24px; color: #f3d4bd; }
.site-footer {
  padding: 28px var(--gutter) 100px;
  background: #1f231f;
  color: rgba(255,250,242,.58);
  border-top: 1px solid rgba(255,250,242,.1);
}
.footer-inner { width: min(100%, var(--max)); margin-inline: auto; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.mobile-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 1000;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(31,35,31,.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}
.mobile-cta a, .mobile-cta button {
  border: 0;
  border-radius: 16px;
  padding: 11px 8px;
  color: var(--paper);
  background: rgba(255,250,242,.1);
  text-align: center;
  font-size: .82rem;
}
.mobile-cta a:first-child { background: var(--terracotta); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  background: rgba(13,14,12,.94);
  color: #fff;
}
.lightbox.open { display: grid; grid-template-rows: auto 1fr auto; }
.lightbox-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--gutter);
  align-items: center;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  min-width: 46px;
  min-height: 46px;
}
.lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0 var(--gutter);
}
.lightbox-stage img {
  max-height: calc(100vh - 170px);
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: max(16px, var(--gutter)); }
.lightbox-next { right: max(16px, var(--gutter)); }
.lightbox-caption { padding: 12px var(--gutter) 22px; text-align: center; color: rgba(255,255,255,.75); }

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 3100;
  display: none;
  grid-template-rows: auto 1fr;
  gap: 12px;
  padding: 18px var(--gutter) var(--gutter);
  background: rgba(13,14,12,.94);
  color: #fff;
}
.map-modal.open { display: grid; }
.map-modal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.map-modal-bar span { color: rgba(255,255,255,.78); }
.map-modal-close {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  min-width: 46px;
  min-height: 46px;
}
.map-modal img {
  align-self: center;
  justify-self: center;
  max-width: min(100%, 1448px);
  max-height: calc(100vh - 100px);
  aspect-ratio: 4 / 3;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
/* Content stays visible without JavaScript. The is-visible class is kept for progressive enhancement only. */
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { inset: 12px 14px auto; border-radius: 26px; align-items: center; }
  .nav-toggle { display: inline-flex; border: 0; border-radius: 999px; background: var(--ink); color: var(--paper); padding: 9px 13px; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(251,247,239,.96);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .hero { padding: 104px 18px 28px; min-height: 92svh; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .fact-grid { grid-template-columns: repeat(3, 1fr); }
  .fact:nth-child(3n) { border-right: 0; }
  .fact:nth-child(6n) { border-right: 0; }
  .intro-grid, .split, .location-map, .contact-grid { grid-template-columns: 1fr; }
  .editorial-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 210px 210px; }
  .editorial-grid button:first-child { grid-column: 1 / span 2; grid-row: auto; }
  .cards, .process { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 660px) {
  :root { --gutter: 18px; --radius: 22px; }
  .site-header {
    inset: 8px 10px auto;
    gap: 8px;
    padding: 6px 7px 6px 11px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(25, 24, 20, .10);
  }
  .brand { gap: 0; }
  .brand-mark {
    font-size: .98rem;
    line-height: 1;
    letter-spacing: .01em;
  }
  .brand-place { display: none; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 5px 10px;
    font-size: .76rem;
    line-height: 1;
  }
  .nav-links {
    top: calc(100% + 5px);
    padding: 10px;
    border-radius: 18px;
  }
  .nav-links a { padding: 7px 9px; }
  .hero { padding-top: 78px; }
  h1 { font-size: clamp(2.8rem, 15.5vw, 4.35rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .hero-card { padding: 18px; }
  .fact-band { margin: -18px 12px 0; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); border-radius: 22px; }
  .fact { min-height: 86px; padding: 16px 14px; }
  .fact:nth-child(3n) { border-right: 1px solid var(--line); }
  .fact:nth-child(2n) { border-right: 0; }
  .intro-panel li { display: block; }
  .intro-panel strong { display: block; margin-top: 3px; }
  .editorial-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .editorial-grid button, .editorial-grid button:first-child { grid-column: auto; height: 260px; }
  .cards, .process, .form-row, .contact-reveal { grid-template-columns: 1fr; }
  .image-card img { height: 420px; }
  .mobile-cta {
    display: grid;
    left: 10px;
    right: 10px;
    bottom: 8px;
    gap: 6px;
    padding: 5px;
    border-radius: 17px;
  }
  .mobile-cta a,
  .mobile-cta button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 6px;
    border-radius: 13px;
    font-size: .76rem;
    line-height: 1;
  }
  .site-footer { padding-bottom: 72px; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 22px; transform: none; }
}

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