/* Sections : padding mobile 48px / desktop 80px */
section { padding: 48px 0; }
@media (min-width: 768px) { section { padding: 80px 0; } }

/* ===== HERO-EDITORIAL-CENTRE (titre serif centre + bande photo dessous) ===== */
.hero-centre {
  padding: calc(var(--header-h-mobile) + 36px) 0 28px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-centre { padding: calc(var(--header-h) + 56px) 0 48px; }
}
.hero-centre .container { max-width: 1040px; }
.hero-centre__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-centre__eyebrow::before,
.hero-centre__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.hero-centre__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  color: var(--text);
  margin: 0 auto;
  max-width: 16ch;
  letter-spacing: -0.012em;
}
.hero-centre__title em { font-style: italic; color: var(--accent); font-weight: 500; }
.hero-centre__sub {
  margin: 22px auto 0;
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  color: var(--text-2);
  line-height: 1.6;
  max-width: 58ch;
}
.hero-centre__cta {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.hero-centre__cta .btn { width: 100%; }
@media (min-width: 560px) {
  .hero-centre__cta { flex-direction: row; max-width: none; justify-content: center; align-items: center; }
  .hero-centre__cta .btn { width: auto; }
}
.hero-centre__badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-centre__band {
  width: 100%;
  max-width: var(--container);
  margin: clamp(28px, 5vw, 56px) auto 0;
  padding: 0 20px;
}
@media (min-width: 768px) { .hero-centre__band { padding: 0 32px; } }
.hero-centre__band-inner {
  width: 100%;
  aspect-ratio: 21 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 50px -20px rgba(18, 42, 35, 0.35);
}
@media (max-width: 768px) {
  .hero-centre__band-inner { aspect-ratio: 16 / 11; }
}
.hero-centre__band-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-centre__band-cap {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  font-weight: 600;
  border: 1px solid var(--border);
}

/* ===== STATS strip ===== */
.stats-strip {
  background: var(--surface-deep);
  color: var(--text-on-dark);
  padding: 44px 0;
}
.stats-strip .container { padding-top: 0; padding-bottom: 0; }
.stats-strip, .stats-strip :where(span, p, strong) { color: var(--text-on-dark); }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 560px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
@media (min-width: 560px) {
  .stat-item + .stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(255, 255, 255, 0.14);
  }
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--accent-on-dark);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-on-dark-2);
  font-weight: 600;
}

/* ===== SERVICES (LAY-4 list-sep) ===== */
.services-section { background: var(--bg); }
.svc-list {
  display: flex;
  flex-direction: column;
}
.svc-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
}
.svc-list__item:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
}
.svc-list__num {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  min-width: 2.2ch;
}
.svc-list__title {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 500;
  line-height: 1.2;
}
.svc-list__text {
  font-family: var(--ff-body);
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 60ch;
}
.svc-list__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-ui);
  font-size: 0.92rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  padding-bottom: 2px;
  white-space: nowrap;
  font-weight: 600;
}
.svc-list__cta:hover {
  color: var(--accent-2);
  border-bottom-color: var(--accent);
}
@media (max-width: 560px) {
  .svc-list__item { grid-template-columns: auto 1fr; gap: 16px; }
  .svc-list__cta {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 6px;
  }
}

/* ===== A PROPOS ===== */
.apropos-section { background: var(--surface); }
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .apropos-grid { grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 64px); }
}
.apropos-text p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.apropos-text p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 0.9;
  float: left;
  color: var(--accent);
  margin: 6px 10px 0 0;
  font-style: italic;
}
.apropos-checks {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) { .apropos-checks { grid-template-columns: 1fr; } }
.apropos-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 0.94rem;
  color: var(--text);
}
.apropos-checks svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}
.apropos-signature {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
}
.apropos-signature::before {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--accent);
}
.apropos-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 14px 14px 0 -3px color-mix(in srgb, var(--accent) 32%, var(--bg));
}
.apropos-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.apropos-photo-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  font-weight: 700;
}

/* ===== REALISATIONS (LAY-4 gallery=slider) ===== */
.realisations-section { background: var(--bg); }
.realisations-section .container { max-width: var(--container); }
.gal-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 36px, #000 calc(100% - 36px), transparent);
          mask-image: linear-gradient(to right, transparent, #000 36px, #000 calc(100% - 36px), transparent);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .gal-slider {
    margin: 0 -32px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.gal-item {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: clamp(240px, 70vw, 380px);
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  display: block;
  position: relative;
  background: var(--bg-alt);
  cursor: zoom-in;
  padding: 0;
  border: 0;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gal-item:hover img { transform: scale(1.04); }
.gal-item__tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  font-weight: 700;
  pointer-events: none;
}
.gal-slider::-webkit-scrollbar { height: 6px; }
.gal-slider::-webkit-scrollbar-track { background: transparent; }
.gal-slider::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.realisations-more {
  margin-top: 28px;
  text-align: center;
}

/* ===== AVIS (LAY-4 carousel + card=row) ===== */
.avis-section { background: var(--bg-alt); }
.avis-link {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.avis-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .avis-carousel {
    margin: 0 -32px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.avis-carousel::-webkit-scrollbar { height: 6px; }
.avis-carousel::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.avis-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: min(88vw, 420px);
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 16px;
  align-items: start;
}
.avis-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 14%, var(--bg));
  color: var(--accent);
  flex-shrink: 0;
}
.avis-card__icon svg { width: 22px; height: 22px; }
.avis-card__body { min-width: 0; }
.avis-card__stars { margin-bottom: 8px; }
.avis-card__text {
  font-family: var(--ff-body);
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.avis-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.86rem;
  color: var(--text-2);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  flex-wrap: wrap;
}
.avis-card__author strong { color: var(--text); font-weight: 600; }
.avis-card__date {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: 2px;
  display: block;
}

/* ===== FAQ accordion ===== */
.faq-section { background: var(--bg); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
  font-weight: 500;
}
.faq-chevron {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: transform var(--t-base);
}
.faq-chevron::before, .faq-chevron::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq-chevron::before { width: 14px; height: 1.5px; }
.faq-chevron::after { width: 1.5px; height: 14px; transition: transform var(--t-base); }
.faq-trigger[aria-expanded="true"] .faq-chevron::after { transform: rotate(90deg); }
.faq-answer { padding: 0 4px 22px; }
.faq-answer p {
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ===== ZONE (intervention + carte) ===== */
.zone-section { background: var(--surface); }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) {
  .zone-grid { grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
}
.zone-info h3 {
  font-size: 1.2rem;
  margin: 22px 0 12px;
  font-family: var(--ff-display);
  color: var(--text);
  font-weight: 500;
}
.zone-info h3:first-child { margin-top: 0; }
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zone-list li {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--ff-ui);
  font-size: 0.86rem;
  color: var(--text);
  font-weight: 600;
}
.horaires-table {
  margin-top: 8px;
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.horaires-table .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 11px 16px;
  border-top: 1px solid var(--border);
  font-family: var(--ff-ui);
  font-size: 0.92rem;
}
.horaires-table .row:first-child { border-top: 0; }
.horaires-table .row.is-today {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  font-weight: 700;
  color: var(--text);
}
.horaires-table .row.is-closed { color: var(--text-mute); }
.horaires-table .day { text-transform: capitalize; }
.dispo-line {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
}
.dispo-line .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text-mute);
  flex-shrink: 0;
  position: relative;
}
.dispo-line.is-open .dot {
  background: #2EAA53;
  box-shadow: 0 0 0 0 rgba(46, 170, 83, 0.6);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(46, 170, 83, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(46, 170, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 170, 83, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .dispo-line.is-open .dot { animation: none; }
}
.map-wrapper {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}
.map-wrapper iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
@media (min-width: 900px) {
  .map-wrapper iframe { height: 460px; }
}

/* ===== METHODE (comment ca se passe) ===== */
.method-section { background: var(--bg-alt); }
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) {
  .method-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.method-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}
.method-card__step {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.method-card__title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.2;
}
.method-card__text {
  color: var(--text-2);
  font-size: 0.96rem;
  line-height: 1.55;
}
.method-card__icon {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  color: var(--accent);
}
.method-card__icon svg { width: 18px; height: 18px; }

/* ===== CONTACT (fond fonce) ===== */
.contact-section { background: var(--surface-deep); color: var(--text-on-dark); }
.contact-section, .contact-section :where(h1, h2, h3, h4, p, li, span, a, small, label, blockquote, strong) {
  color: var(--text-on-dark);
}
.contact-section .sec-head .eyebrow { color: var(--accent-on-dark); }
.contact-section .sec-head .eyebrow::before { background: var(--accent-on-dark); }
.contact-section .sec-head h2 em { color: var(--accent-on-dark); }
.contact-section .sec-head .lede { color: var(--text-on-dark-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
}
.contact-row:hover { background: rgba(255, 255, 255, 0.09); }
.contact-row__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(143, 189, 174, 0.16);
  border-radius: 50%;
  color: var(--accent-on-dark);
}
.contact-row__icon svg { width: 18px; height: 18px; }
.contact-row__txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-row__label {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-on-dark-2);
  font-weight: 600;
}
.contact-row__val {
  font-family: var(--ff-ui);
  font-size: 1.02rem;
  color: var(--text-on-dark);
  font-weight: 600;
  word-break: break-word;
}
.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.contact-cta .btn { width: 100%; }
@media (min-width: 560px) {
  .contact-cta { flex-direction: row; }
  .contact-cta .btn { width: auto; flex: 1; }
}
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 16px;
}
.contact-form h3 {
  font-size: 1.2rem;
  color: var(--text-on-dark);
  margin-bottom: 4px;
  font-family: var(--ff-display);
  font-weight: 500;
}
.contact-form .form-field label { color: var(--text-on-dark-2); }
.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text-on-dark);
}
.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder {
  color: rgba(199, 210, 203, 0.55);
}
.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
  border-color: var(--accent-on-dark);
  box-shadow: 0 0 0 3px rgba(143, 189, 174, 0.22);
}
.contact-form .form-row-2 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .contact-form .form-row-2 { grid-template-columns: 1fr 1fr; }
}
.contact-form .form-action { margin-top: 6px; }
.contact-form .form-action .btn { width: 100%; }
@media (min-width: 560px) { .contact-form .form-action .btn { width: auto; } }
.form-msg {
  display: none;
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(143, 189, 174, 0.18);
  border-radius: var(--r-md);
  font-family: var(--ff-ui);
  font-size: 0.92rem;
  color: var(--text-on-dark);
}
.form-msg.is-visible { display: block; }

/* ===== Realisations page ===== */
.real-hero { padding: calc(var(--header-h-mobile) + 36px) 0 32px; }
@media (min-width: 768px) {
  .real-hero { padding: calc(var(--header-h) + 56px) 0 40px; }
}
.breadcrumb {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-bottom: 18px;
  font-weight: 600;
}
.breadcrumb a {
  color: var(--text-mute);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumb a:hover { color: var(--accent); }
.real-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  max-width: 22ch;
  margin-bottom: 18px;
}
.real-hero h1 em { font-style: italic; color: var(--accent); }
.real-hero .lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-2);
  max-width: 60ch;
  line-height: 1.6;
}
.gal-masonry {
  column-count: 1;
  column-gap: 14px;
}
@media (min-width: 560px) { .gal-masonry { column-count: 2; } }
@media (min-width: 900px) { .gal-masonry { column-count: 3; } }
.gal-masonry .gal-item {
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  aspect-ratio: auto;
  height: auto;
  display: block;
}
.gal-masonry .gal-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.real-cta {
  background: var(--surface-deep);
  color: var(--text-on-dark);
  text-align: center;
  padding: clamp(48px, 6vw, 80px) 0;
}
.real-cta, .real-cta :where(h2, p, a, span) { color: var(--text-on-dark); }
.real-cta h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  max-width: 22ch;
  margin: 0 auto 14px;
  line-height: 1.1;
}
.real-cta h2 em { font-style: italic; color: var(--accent-on-dark); }
.real-cta p {
  color: var(--text-on-dark-2);
  max-width: 56ch;
  margin: 0 auto 24px;
}
.real-cta__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.real-cta__cta .btn { width: 100%; }
@media (min-width: 560px) {
  .real-cta__cta { flex-direction: row; max-width: none; justify-content: center; }
  .real-cta__cta .btn { width: auto; }
}
