:root {
  --bg: #f6f1e7;
  --surface: rgba(255, 251, 244, 0.8);
  --surface-strong: #fffaf2;
  --surface-dark: #203229;
  --surface-dark-soft: #2b4438;
  --text: #18211d;
  --text-soft: #44544d;
  --line: rgba(24, 33, 29, 0.12);
  --accent: #c9752d;
  --accent-soft: #eabf8b;
  --shadow: 0 24px 60px rgba(24, 33, 29, 0.12);
  --radius: 28px;
  --radius-small: 16px;
  --container: min(1160px, calc(100% - 2rem));
  --font-body: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  --font-heading: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(234, 191, 139, 0.45), transparent 30%),
    linear-gradient(180deg, #f4ecdf 0%, #f7f2e9 40%, #fbf7f0 100%);
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
}

.skip-link {
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--surface-dark);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5.4rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(246, 238, 227, 0.8));
}

.section-contrast {
  background: linear-gradient(180deg, var(--surface-dark), #17261f);
  color: #f5efe4;
}

.section-heading {
  margin-bottom: 2.35rem;
}

.split-heading {
  display: grid;
  gap: 1.25rem 3rem;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  letter-spacing: -0.04em;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.35rem;
}

p,
li,
dd,
dt,
summary,
label,
input,
textarea {
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(247, 242, 233, 0.82);
  border-bottom: 1px solid rgba(24, 33, 29, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 5.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--surface-dark), var(--surface-dark-soft));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  font-size: 0.98rem;
}

.brand-text span:last-child {
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.header-cta {
  min-height: 2.9rem;
  padding-inline: 1.05rem;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.1rem, 5vw, 4.4rem) 0 clamp(4.2rem, 7vw, 5.1rem);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}

.hero-glow-a {
  top: 5%;
  right: -10%;
  width: 24rem;
  height: 24rem;
  background: rgba(201, 117, 45, 0.18);
}

.hero-glow-b {
  bottom: -10%;
  left: -10%;
  width: 22rem;
  height: 22rem;
  background: rgba(32, 50, 41, 0.14);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 29rem);
  align-items: start;
}

.hero-copy {
  padding-top: 0.45rem;
  max-width: 42rem;
}

.hero-text,
.section-intro {
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 1.12rem;
}

.hero-text {
  max-width: 31rem;
  font-size: clamp(1.06rem, 1.3vw, 1.18rem);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.hero-trust span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 246, 235, 0.92);
  border: 1px solid rgba(201, 117, 45, 0.16);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-actions,
.map-actions,
.status-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(145deg, var(--surface-dark), #325143);
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary {
  background: rgba(255, 250, 242, 0.9);
  color: var(--text);
  border-color: var(--line);
}

.button-full {
  width: 100%;
}

.hero-facts {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

.hero-facts li {
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid var(--line);
  font-size: 0.98rem;
}

.hero-panel {
  display: block;
}

.hero-image-card,
.detail-card,
.price-card,
.info-panel,
.contact-card,
.booking-form,
.legal-card,
.status-shell {
  background: var(--surface);
  border: 1px solid rgba(24, 33, 29, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-image-card {
  overflow: hidden;
  width: min(100%, 29rem);
}

.hero-lightbox-trigger {
  cursor: pointer;
}

.hero-lightbox-trigger:focus-visible {
  outline: 3px solid rgba(201, 117, 45, 0.34);
  outline-offset: 4px;
}

.hero-lightbox-trigger:hover img,
.hero-lightbox-trigger:focus-visible img {
  transform: scale(1.02);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5.1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.hero-image-card figcaption {
  padding: 1rem 1.2rem 1.25rem;
  color: var(--text-soft);
}

.apartment-layout,
.price-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-card,
.price-card,
.info-panel,
.contact-card,
.legal-card {
  padding: 1.6rem;
}

.detail-card p,
.info-panel p,
.contact-copy p,
.legal-card p {
  font-size: 1.02rem;
}

.gallery-shell {
  margin-top: 3rem;
}

.gallery-intro {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.2rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.03);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tag {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(16, 22, 19, 0.72);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.price-grid {
  width: 100%;
  justify-content: center;
  grid-template-columns: repeat(3, minmax(17rem, 18rem));
}

.two-column,
.travel-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.monteur-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.monteur-copy h2 {
  max-width: 10.5ch;
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
  margin-bottom: 1.1rem;
}

.monteur-copy > p {
  max-width: 35rem;
  color: var(--text);
  font-size: 1.08rem;
}

.monteur-points {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.monteur-point {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(24, 33, 29, 0.08);
  box-shadow: 0 14px 34px rgba(24, 33, 29, 0.08);
}

.monteur-point-label {
  display: block;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
}

.monteur-point strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

.check-list,
.price-card ul,
.footer-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.price-section-inner {
  display: grid;
  justify-items: center;
}

.price-heading {
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}

.price-heading .eyebrow,
.price-heading .section-intro-contrast {
  margin-inline: auto;
}

.price-heading h2 {
  max-width: 15ch;
  margin-inline: auto;
}

.price-card {
  color: var(--text);
  background: rgba(255, 251, 244, 0.18);
  border-color: rgba(255, 255, 255, 0.12);
}

.price-card-highlight {
  background: linear-gradient(145deg, rgba(255, 247, 235, 0.98), rgba(255, 236, 214, 0.94));
}

.price-card-secondary {
  background: linear-gradient(145deg, rgba(228, 239, 233, 0.95), rgba(212, 228, 220, 0.92));
}

.price-card-neutral {
  background: linear-gradient(145deg, rgba(244, 243, 238, 0.82), rgba(221, 227, 223, 0.78));
}

.price-label,
.price-meta {
  margin: 0;
}

.price-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.price-value {
  margin: 0.35rem 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
}

.price-card ul li {
  font-size: 0.98rem;
}

.section-intro-contrast {
  color: rgba(245, 239, 228, 0.82);
  max-width: 40rem;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 35rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1.08fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-copy h2 {
  max-width: 10.5ch;
  font-size: clamp(2.6rem, 4.7vw, 4.4rem);
  margin-bottom: 1rem;
}

.contact-copy > p {
  max-width: 33rem;
  font-size: 1.06rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  margin-top: 1.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 5.3rem;
  justify-content: center;
  gap: 0.2rem;
}

.contact-label {
  display: inline-block;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--text-soft);
}

.contact-value {
  display: block;
  max-width: 100%;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-value-muted {
  color: var(--text);
}

.contact-note {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.booking-form {
  padding: 1.6rem;
}

.required-note {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.required-marker {
  color: #b1461f;
  font-weight: 700;
}

.form-alert {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(177, 70, 31, 0.08);
  border: 1px solid rgba(177, 70, 31, 0.18);
  color: #8f3415;
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-message {
  grid-column: 1 / -1;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.booking-form span {
  font-weight: 700;
  font-size: 0.98rem;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 0.98rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1rem;
}

.booking-form input.is-invalid,
.booking-form textarea.is-invalid {
  border-color: rgba(177, 70, 31, 0.42);
  outline: 2px solid rgba(177, 70, 31, 0.16);
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(201, 117, 45, 0.3);
  border-color: rgba(201, 117, 45, 0.4);
}

.booking-form label.consent {
  margin: 1rem 0;
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  align-items: flex-start;
}

.booking-form label.consent input {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.22rem 0 0;
  accent-color: var(--accent);
}

.booking-form label.consent > span {
  display: block;
  font-weight: 400;
  line-height: 1.55;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.field-error {
  min-height: 1rem;
  color: #a03d19;
  font-size: 0.84rem;
  line-height: 1.35;
}

.field-error-consent {
  display: block;
  margin-top: -0.35rem;
  margin-bottom: 0.8rem;
}

.turnstile-wrap {
  margin: 0 0 1rem;
  display: grid;
  justify-items: center;
  text-align: center;
}

.turnstile-wrap .cf-turnstile {
  display: flex;
  justify-content: center;
}

.turnstile-note {
  display: block;
  margin-top: 0.45rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.honeypot {
  display: none;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 251, 244, 0.7);
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  font-size: 1.02rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.site-footer {
  background: #18261f;
  color: #f2ebdf;
  padding: 3.2rem 0 6rem;
}

.footer-brand,
.footer-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-address {
  color: rgba(242, 235, 223, 0.74);
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li + li {
  margin-top: 0.5rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1.1rem;
  z-index: 40;
  padding: 0.88rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(32, 50, 41, 0.96), #315144);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
}

body.has-sticky-cta .sticky-cta {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.gallery-dialog {
  width: min(94vw, 62rem);
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
}

.gallery-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.gallery-dialog-shell {
  position: relative;
  padding: 1rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(16, 22, 19, 0.96), rgba(16, 22, 19, 0.98));
}

.gallery-dialog-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dialog-image);
  background-position: center;
  background-size: cover;
  filter: blur(24px);
  opacity: 0.18;
  transform: scale(1.04);
  pointer-events: none;
}

.gallery-dialog-shell:fullscreen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  padding:
    max(1rem, calc(env(safe-area-inset-top) + 0.75rem))
    max(1rem, calc(env(safe-area-inset-right) + 0.75rem))
    max(1rem, calc(env(safe-area-inset-bottom) + 0.75rem))
    max(1rem, calc(env(safe-area-inset-left) + 0.75rem));
  border-radius: 0;
}

.gallery-dialog-shell:fullscreen .dialog-stage {
  min-height: calc(100vh - 11rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
}

.gallery-dialog-shell:fullscreen .dialog-stage img {
  max-height: calc(100vh - 15rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
}

.gallery-dialog figure {
  margin: 0;
  position: relative;
  z-index: 1;
  background: transparent;
  color: #fff;
}

.dialog-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(72vh, 46rem);
  padding: 0.5rem 3.75rem;
  border-radius: 22px;
  background: rgba(16, 22, 19, 0.78);
  overflow: hidden;
}

.gallery-dialog img {
  width: auto;
  max-width: 100%;
  max-height: min(68vh, 42rem);
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.gallery-dialog figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem 1.3rem;
}

.dialog-counter {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  white-space: nowrap;
}

.dialog-caption-text {
  flex: 1;
}

.dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  border: 0;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(16, 22, 19, 0.8);
  color: #fff;
}

.dialog-fullscreen {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(16, 22, 19, 0.8);
  color: #fff;
}

.dialog-fullscreen.is-active {
  background: rgba(201, 117, 45, 0.92);
}

.dialog-top-icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.dialog-nav {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  z-index: 2;
  border: 0;
  width: 3.4rem;
  height: 3.4rem;
  padding: 0;
  border-radius: 999px;
  background: rgba(16, 22, 19, 0.76);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.dialog-nav-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.dialog-nav-prev {
  left: 1rem;
}

.dialog-nav-next {
  right: 1rem;
}

.dialog-thumbs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(8rem, 9.5rem);
  gap: 0.7rem;
  margin-top: 0.35rem;
  padding: 0 0 0.25rem;
  overflow-x: auto;
}

.dialog-thumb {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-align: left;
}

.dialog-thumb img {
  width: 100%;
  height: 5.6rem;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.dialog-thumb span {
  display: block;
  padding: 0.55rem 0.65rem 0.7rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.86);
}

.dialog-thumb.is-active {
  border-color: rgba(234, 191, 139, 0.72);
  box-shadow: 0 0 0 2px rgba(234, 191, 139, 0.18);
}

.legal-page {
  min-height: 100vh;
}

.legal-nav {
  gap: 1.2rem;
}

.legal-shell {
  max-width: 52rem;
}

.legal-shell > h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin-bottom: 1rem;
}

.legal-card + .legal-card {
  margin-top: 1rem;
}

.status-shell {
  max-width: 42rem;
  margin: 10vh auto;
  padding: 2.2rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(251, 247, 240, 0.94));
}

.status-page {
  background:
    radial-gradient(circle at top left, rgba(234, 191, 139, 0.4), transparent 32%),
    radial-gradient(circle at bottom right, rgba(32, 50, 41, 0.08), transparent 25%),
    linear-gradient(180deg, #f4ecdf 0%, #f7f2e9 40%, #fbf7f0 100%);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-shell-error .status-pill {
  background: rgba(177, 70, 31, 0.1);
  color: #9c3f1b;
  border: 1px solid rgba(177, 70, 31, 0.16);
}

.status-shell-success .status-pill {
  background: rgba(32, 50, 41, 0.08);
  color: #274034;
  border: 1px solid rgba(32, 50, 41, 0.14);
}

.status-shell h1 {
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
  max-width: 12ch;
  margin-bottom: 1rem;
}

.status-shell p {
  max-width: 36rem;
  font-size: 1.06rem;
  color: var(--text-soft);
}

.status-list {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
}

.status-list li {
  color: var(--text);
  font-size: 0.98rem;
}

.status-shell-error {
  border-color: rgba(177, 70, 31, 0.1);
}

.status-shell-success {
  border-color: rgba(32, 50, 41, 0.1);
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-heading,
  .two-column,
  .monteur-grid,
  .travel-grid,
  .contact-grid,
  .footer-grid,
  .apartment-layout {
    grid-template-columns: 1fr;
  }

  .price-grid {
    justify-content: center;
    grid-template-columns: repeat(2, minmax(17rem, 18rem));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 251, 244, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .travel-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .price-grid {
    justify-content: center;
    grid-template-columns: minmax(17rem, 24rem);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 0;
  }

  .header-inner {
    min-height: 4.7rem;
  }

  .hero {
    padding-top: 2.35rem;
  }

  .hero-panel {
    display: grid;
    justify-items: center;
  }

  .hero-image-card {
    width: min(100%, 23rem);
  }

  .hero-image-card img {
    height: 17rem;
    aspect-ratio: auto;
  }

  .hero-image-card figcaption {
    text-align: center;
  }

  .hero-trust {
    display: none;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .form-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: auto;
  }

  .sticky-cta {
    left: 1rem;
    right: 1rem;
    bottom: 0.85rem;
    text-align: center;
    padding-block: 0.82rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 1rem;
  }

  .hero {
    padding-top: 1.9rem;
  }

  .hero-image-card img {
    height: 15rem;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .hero-text,
  .section-intro {
    font-size: 1.04rem;
  }

  .hero-trust {
    gap: 0.45rem;
  }

  .hero-trust span,
  .hero-facts li {
    font-size: 0.9rem;
  }

  .detail-card,
  .price-card,
  .info-panel,
  .contact-card,
  .legal-card,
  .booking-form {
    padding: 1.2rem;
  }

  .monteur-points,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .gallery-tag {
    left: 1rem;
    bottom: 1rem;
  }

  .status-shell {
    margin: 5vh auto;
    padding: 1.4rem;
  }

  .status-shell h1 {
    max-width: none;
    font-size: clamp(2.1rem, 12vw, 3.3rem);
  }

  .gallery-dialog figcaption {
    flex-direction: column;
    align-items: flex-start;
  }

  .dialog-stage {
    min-height: auto;
    padding: 2.35rem 0.4rem 0.8rem;
  }

  .dialog-nav {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 2.9rem;
    height: 2.9rem;
  }

  .dialog-nav-prev {
    left: 0.6rem;
  }

  .dialog-nav-next {
    right: 0.6rem;
  }

  .dialog-close {
    top: 0.75rem;
    right: 0.75rem;
    bottom: auto;
  }

  .dialog-fullscreen {
    padding: 0.62rem 0.82rem;
  }

  .dialog-fullscreen-label {
    display: none;
  }

  .dialog-thumbs {
    grid-auto-columns: minmax(7.2rem, 8.5rem);
  }
}
