@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
}

:root {
  --color-ink: #171b1f;
  --color-ink-soft: #30363b;
  --color-paper: #f5f3ee;
  --color-paper-deep: #e9e4da;
  --color-accent: #c4a36a;
  --color-accent-dark: #806439;
  --color-white: #fff;
  --color-line: rgba(23, 27, 31, 0.17);
  --content: 78rem;
  --header-height: 5rem;
  --radius: 0.25rem;
  --shadow: 0 1.5rem 4rem rgba(4, 9, 12, 0.18);
}



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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: 'Urbanist', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.home {
  background: #101418;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 0.19rem solid var(--color-accent);
  outline-offset: 0.22rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--color-white);
  color: var(--color-ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  z-index: 75;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(228, 198, 142, 0.85);
  /* border-radius: 50%; */
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(24, 35, 51, 0.92);
  color: #fff;
  box-shadow: 0 0.45rem 1.2rem rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.65rem);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.back-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

body.menu-open .back-to-top,
body.lightbox-open .back-to-top {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(26, 35, 50, 0.96);
  color: var(--color-white);
  backdrop-filter: blur(14px);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.home .site-header {
  position: fixed;
  right: 0;
  left: 0;
  border-bottom-color: transparent;
  /* background: transparent; */
  backdrop-filter: none;
}

.home .site-header.is-scrolled,
.home.menu-open .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: rgba(26, 35, 50, 0.96);
  backdrop-filter: blur(14px);
}

body.menu-open .site-header {
  border-bottom-color: transparent;
  background: #182333;
  backdrop-filter: none;
}

.nav-shell {
  width: min(100% - 2.5rem, var(--content));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(10rem, 17vw, 13.2rem);
  height: auto;
  filter: brightness(0) invert(1);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.6rem;
  height: 2px;
  margin: 0;
  background: currentColor;
  content: "";
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-toggle span {
  transform: translate(-50%, -50%);
}

.nav-toggle::before {
  transform: translate(-50%, calc(-50% - 0.45rem));
}

.nav-toggle::after {
  transform: translate(-50%, calc(-50% + 0.45rem));
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2rem);
}

.mobile-menu-content {
  display: none;
}

.primary-nav a {
  position: relative;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--color-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-call {
  padding: 0.55rem 0.88rem;
  border: 1px solid var(--color-accent);
  color: #f3dba9;
}

.container {
  width: min(100% - 2.5rem, var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2.5rem, 52rem);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--color-accent-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.on-dark .eyebrow,
.home .eyebrow {
  color: #ecd19f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 0.98;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 8vw, 7.4rem);
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 600;
}

.lede {
  max-width: 44rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.45;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.button {
  min-height: 3.15rem;
  padding: 0.72rem 1.25rem;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-ink);
}

.button-primary:hover {
  border-color: #d6bb86;
  background: #d6bb86;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(15, 18, 21, 0.16);
  color: var(--color-white);
}

.button-secondary:hover {
  background: var(--color-white);
  color: var(--color-ink);
}

.button-ink {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-white);
}

.button-ink:hover {
  background: var(--color-ink-soft);
}

.text-link {
  font-weight: 600;
}

.page-hero {
  min-height: 29rem;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6.5rem);
  display: flex;
  align-items: end;
  background: var(--color-ink);
  color: var(--color-white);
}

.page-hero h1 {
  max-width: 65rem;
  font-size: clamp(3.5rem, 8vw, 7.1rem);
}

.page-hero .lede {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-compact {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-head > p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--color-ink-soft);
}

.surface-dark {
  background: var(--color-ink);
  color: var(--color-white);
}

.surface-deep {
  background: var(--color-paper-deep);
}

.home-backdrop {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 100svh;
  overflow: hidden;
  background: #101418;
}

.home-backdrop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--desktop-position, center);
}

.home-backdrop .slide-a,
.home-backdrop .slide-b {
  opacity: 0;
  transition: opacity 1s linear;
  /* transition: opacity 1s ease; */
}

.home-backdrop .slide-a {
  z-index: 1;
}

/* ========================= DEZOOM DES PHOTOS ========================= */
.home-backdrop .is-visible { 
  opacity: 1;
  animation: home-photo-zoom 6s linear;
   /* animation: home-photo-zoom 6s ease-out; */
}

@keyframes home-photo-zoom { 
  0% { 
    transform: scale(1.2);
  } 

  100% { 
    transform: scale(1); 
  } 
}


.home-backdrop::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 20%,
    rgba(0, 0, 0, 0) 100%
  );
  content: "";
  pointer-events: none;
}

.home-main {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.home-hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + 3.5rem) 0 4rem;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(100%, 48rem);
  padding: clamp(1.2rem, 3vw, 2rem) 0;
  /* text-shadow: 0 0.15rem 1.2rem rgba(199, 26, 26, 0.72); */
}

.home-hero h1 {
  max-width: 44rem;
  margin-bottom: 1rem;
  font-size: clamp(3.4rem, 8.5vw, 7.5rem);
}

.hero-service {
  margin-bottom: 0.55rem;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
}

.hero-price {
  margin: 1.3rem 0 0.1rem;
  color: #f0d6a5;
  font-family: 'Urbanist', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.home .hero-price a,
.home .hero-price a:visited,
.home .hero-price a:hover,
.home .hero-price a:focus-visible,
.home .hero-price a:active {
  color: inherit;
  text-decoration: none;
}

.hero-eligibility {
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
}

.hero-text-line {
  margin: 1rem 0 0;
}

.hero-phone {
  margin-left: 0.55rem;
  font-weight: 600;
  text-decoration: none;
}

.home-panel {
  margin-bottom: clamp(2rem, 7vw, 6rem);
}

.home-gallery-section {
  width: 100%;
  margin-bottom: clamp(2rem, 7vw, 6rem);
  background: var(--color-paper);
}

.home-gallery-surface {
  width: 100%;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 4vw, 5rem);
  background: var(--color-paper);
  box-shadow: none;
  backdrop-filter: none;
}

.panel-surface {
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(245, 243, 238, 0.94);
  color: var(--color-ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(7px);
}

.panel-surface.dark {
  background: rgba(19, 23, 27, 0.91);
  color: var(--color-white);
}

.panel-surface.dark .section-head > p:not(.eyebrow),
.panel-surface.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

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

.home-gallery-surface > .portfolio-grid + .button-row {
  margin-top: 3.875rem;
}

.portfolio-card {
  position: relative;
  aspect-ratio: 3 / 2;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #d8d4cb;
  cursor: zoom-in;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.portfolio-card:hover img {
  transform: scale(1.025);
}

.services-grid,
.pricing-grid {
  display: grid;
  gap: 1px;
  background: var(--color-line);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.contact-panel h2 {
  max-width: 45rem;
}

.contact-list {
  display: grid;
  gap: 0.4rem;
  justify-items: end;
}

.contact-list a {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

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

.gallery-item {
  aspect-ratio: 3 / 2;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #d8d4cb;
  cursor: zoom-in;
}

.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: 100%;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-container {
  width: calc(100% - clamp(2rem, 10vw, 9.5rem));
  max-width: none;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  padding: 1.25rem;
  border: 0;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 10, 0.94);
  color: var(--color-white);
}

.lightbox[open] {
  display: flex;
}

.lightbox::backdrop {
  background: rgba(5, 8, 10, 0.94);
}

.lightbox-figure {
  max-width: min(88rem, 94vw);
  max-height: 90vh;
  margin: 0;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 84vh;
  margin-inline: auto;
  object-fit: contain;
}

.lightbox-figure figcaption {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: var(--color-white);
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.6rem;
}

.lightbox-nav {
  top: 50%;
  font-size: 2rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

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

.service-card {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--color-paper);
}

.service-card .number {
  color: var(--color-accent-dark);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.service-card p {
  max-width: 32rem;
}

.service-card .quote-note {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
  font-weight: 600;
}

.delivery-band {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.6fr);
  gap: 2rem;
  align-items: center;
  background: var(--color-ink);
  color: var(--color-white);
}

.delivery-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  padding: clamp(1.6rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  background: var(--color-white);
}

.price-card.featured {
  box-shadow: inset 0 0 0 2px var(--color-accent);
}

#vacant-apartments {
  scroll-margin-top: 96px;
}

.price-card .price {
  margin: 0.8rem 0 0.3rem;
  font-family: 'Urbanist', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.price-card .standard-rate {
  color: var(--color-ink-soft);
}

.price-card ul {
  margin: 1.25rem 0 2rem;
  padding-left: 1.15rem;
}

.price-card .button {
  margin-top: auto;
}

.fine-note {
  margin-top: 1rem;
  font-size: 0.98rem;
}

.fee-list {
  margin: 0;
  border-top: 1px solid var(--color-line);
}

.fee-row {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
}

.fee-row dt {
  font-weight: 600;
}

.fee-row dd {
  margin: 0;
  text-align: right;
}

.policy-layout {
  display: grid;
  grid-template-columns: 17rem minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.policy-nav h2 {
  font-family: 'Urbanist', 'Arial Narrow', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.policy-nav ol {
  margin: 0;
  padding-left: 1.25rem;
}

.policy-nav a {
  display: inline-block;
  padding: 0.18rem 0;
  font-size: 1rem;
}

.policy-sections {
  min-width: 0;
}

.policy-section {
  padding: 0 0 2.6rem;
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 2.6rem;
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.policy-section h2 {
  font-family: 'Urbanist', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}

.policy-section p:last-child,
.policy-section ul:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 4rem 0 5.5rem;
  background: #101417;
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 1.6fr) repeat(2, minmax(10rem, 0.7fr));
  gap: 3rem;
}

.footer-brand {
  margin-bottom: 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.footer-grid p {
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-col h2 {
  margin-bottom: 0.8rem;
  color: #e4c68e;
  font-family: 'Urbanist', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.footer-col a {
  width: fit-content;
  margin: 0.3rem 0;
  display: block;
  text-decoration: none;
}

.footer-meta {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

@media (max-width: 68rem) {
  .nav-shell {
    gap: 1rem;
  }

  .primary-nav {
    gap: 1rem;
  }

  .primary-nav a {
    font-size: 0.83rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 52rem) {
  :root {
    --header-height: 4.25rem;
  }

  .nav-toggle {
    display: block;
  }

  .back-to-top {
    display: flex;
  }

  .brand,
  .nav-toggle {
    position: relative;
    z-index: 100;
  }

  .primary-nav {
    position: fixed;
    z-index: 90;
    inset: 0;
    width: 100%;
    height: 100svh;
    max-height: none;
    margin: 0;
    padding: calc(var(--header-height) + 2rem) 1.5rem 2rem;
    display: block;
    overflow-y: auto;
    background: #182333;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav > a {
    display: none;
  }

  .primary-nav a::after {
    display: none;
  }

  .mobile-menu-content {
    width: min(100%, 34rem);
    margin-inline: auto;
    display: block;
  }

  .mobile-menu-divider {
    height: 1px;
    margin: 0 0 2.55rem;
    background: rgba(255, 255, 255, 0.16);
  }

  .mobile-menu-label {
    margin: 0 0 1.15rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-menu-links {
    margin-bottom: 1.65rem;
  }

  .mobile-menu-links a {
    width: fit-content;
    min-height: 0;
    padding: 0;
    border: 0;
    display: block;
    color: #fff;
    font-size: clamp(2rem, 10vw, 2.9rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.22;
    text-decoration: none;
    text-transform: none;
  }

  .mobile-menu-links a[aria-current="page"] {
    color: #fff;
  }

  .mobile-menu-book {
    width: fit-content;
    min-height: 3.45rem;
    margin: 0 0 2.55rem;
    padding: 0.75rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-menu-book + .mobile-menu-divider {
    margin-bottom: 1.7rem;
  }

  .mobile-menu-company {
    margin-bottom: 1.8rem;
  }

  .mobile-menu-company .mobile-menu-label,
  .mobile-menu-contact .mobile-menu-label {
    margin-bottom: 0.55rem;
  }

  .mobile-menu-company-name {
    margin: 0 0 0.15rem;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.65rem, 8vw, 2.4rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.05;
  }

  .mobile-menu-company p:not(.mobile-menu-label):not(.mobile-menu-company-name) {
    margin: 0.15rem 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.35;
  }

  .mobile-menu-contact a {
    width: fit-content;
    margin: 0.25rem 0;
    padding: 0;
    border: 0;
    display: block;
    color: #fff;
    font-size: clamp(1rem, 5vw, 1.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.35;
    text-decoration: none;
    text-transform: none;
  }

  .home-backdrop img {
    object-position: var(--mobile-position, var(--desktop-position, center));
  }

  .home-hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 2.25rem);
    align-items: end;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .panel-surface {
    padding-inline: 1.25rem;
  }

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

  .portfolio-card,
  .portfolio-card:nth-child(n),
  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 1;
  }

  .contact-panel,
  .delivery-band {
    grid-template-columns: 1fr;
  }

  .contact-list {
    justify-items: start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
    padding: 1.25rem;
    background: var(--color-paper-deep);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 2rem;
  }

}

@media (max-width: 35rem) {
  .container,
  .narrow,
  .nav-shell {
    width: min(100% - 2rem, var(--content));
  }

  .button-row .button {
    flex: 1 1 10rem;
  }

  .hero-phone {
    display: block;
    margin: 0.3rem 0 0;
  }

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

  .fee-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .fee-row dd {
    text-align: left;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    transform: none;
  }
}

/* ================================================================
   HOMEPAGE MOBILE - ZONE A MODIFIER
   Ce bloc agit uniquement sur la homepage entre 0 et 832 pixels.
   Les dimensions modifiables sont volontairement ecrites en pixels.
   ================================================================ */
@media (max-width: 480px) {
  /* PAGE ENTIERE */
  body.home {
    --header-height: 68px;
    background: #101418;
    color: #fc0000;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 1px;
    line-height: 1.5;
  }

  .home .container,
  .home .nav-shell {
    width: calc(100% - 40px); /* 20px a gauche + 20px a droite */
    max-width: none;
  }

  /* ENTETE ET MENU MOBILE */
  .home .site-header {  
    height: 68px;
    /* background: #0000000c; */
  }

  .home .site-header.is-scrolled,
  .home.menu-open .site-header {
    border-bottom-color: rgba(255, 255, 255, 0.16);
    background: rgba(24, 35, 51, 0.96);

  }

  .home .brand img {
    width: 190px;
  }

  .home .nav-toggle {
    width: 44px;
    height: 44px;
    color: #ffffff;
  }

  .home .primary-nav {
    padding: 100px 24px 30px;
    background: #182333;
    color: #ffffff;
  }

  .home .mobile-menu-links a {
    color: #ffffff;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  /* PHOTO DE FOND ET VOILE SOMBRE */
  .home .home-backdrop {
    height: 100svh;
    background: #101418;
  }

  .home .home-backdrop img {
    object-position: 50% 50%; /* horizontal puis vertical */
    transform-origin: 50% 35%; /* point fixe du dezoom place au niveau du carre rouge */
  }

  .home .home-backdrop::after {

    /* background: linear-gradient(  to bottom,  rgba(0, 0, 0, 0.2) 0%,  rgba(0, 0, 0, 0) 100%); */
    /* background:
  linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  ),
  linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  ); */

  /* gris der */

    
  }

  /* PREMIER ECRAN */
  .home .home-hero {
    min-height: 100svh;
    padding: 108px 0 20px;
    align-items: flex-end;
  }

  .home .hero-copy {
    width: 100%;
    max-width: 620px;
    padding: 0;
    color: #ffffff;
    /* text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72); */
  }

  .home .home-hero .eyebrow {
    margin: 0 0 0px;
    color: #d6be90;
    /* color: #ecd19f; */
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
    /* text-shadow: 0 2px 10px rgba(0,0,0,1); */
  }

  .home .home-hero h1 {
    max-width: 620px;
    margin: 0 0 50px;
    color: #e9e9e9;
    font-family: "Fraunces", Georgia, serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -3px;
    text-wrap: wrap;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .home .hero-service {
    margin: 0 0 0px;
    color: #ffffff;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.05em
  }

  .home .hero-price {
    margin: 0px 0 0px;
    color: #c4a36a;
    /* color: #f0d6a5; */
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.05em
  }

  .home .hero-eligibility {
    margin: 0 0 15px;
    color: #ffffff;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.05em
  }

  .home .home-hero .button-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* remplacer par 1fr pour empiler */
    gap: 10px;
  }

  .home .home-hero .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 10px;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .home .home-hero .button-primary {
    border-color: #c4a36a;
    background: #c4a36a;
    color: #171b1f;
  }

  .home .home-hero .button-secondary {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(17, 21, 24, 0.28);
    color: #ffffff;
  }

  .home .hero-text-line {
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
  }

  .home .hero-phone {
    display: inline;
    margin: 0 0 0 8px;
    color: #ffffff;
  }

  /* SECTION PHOTOGRAPHIES */
  .home .home-gallery-section {
    margin: 0 0 32px;
    background: #f5f3ee;
  }

  .home .home-gallery-surface {
    padding: 56px 20px;
    background: #f5f3ee;
    color: #171b1f;
  }

  .home .home-gallery-surface .section-head {
    margin: 0 0 32px;
  }

  .home .home-gallery-surface .eyebrow {
    margin: 0 0 12px;
    color: #806439;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
  }

  .home .home-gallery-surface h2 {
    margin: 0 0 16px;
    color: #171b1f;
    font-family: "Fraunces", Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    text-wrap: wrap;
  }

  .home .home-gallery-surface .section-head > p:not(.eyebrow) {
    margin: 0;
    color: #30363b;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.05em
  }

  .home .portfolio-grid {
    grid-template-columns: 1fr; /* remplacer par 1fr 1fr pour 2 colonnes */
    gap: 12px;
  }

  .home .portfolio-card {
    background: #d8d4cb;
    aspect-ratio: 3 / 2;
  }

  .home .home-gallery-surface > .portfolio-grid + .button-row {
    margin-top: 32px;
  }

  .home .home-gallery-surface > .button-row .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 14px;
    background: #182333;
  }

  /* SECTION CONTACT */
  .home #contact {
    margin: 0 0 32px;
  }

  .home #contact .contact-panel {
    padding: 44px 20px;
    gap: 30px;
    background: rgba(19, 23, 27, 0.94);
    background: #182333;
    color: #ffffff;
  }

  .home #contact .eyebrow {
    margin: 0 0 12px;
    color: #ecd19f;
    font-size: 13px;
    letter-spacing: 2px;
  }

  .home #contact h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: "Fraunces", Georgia, serif;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -1px;
    text-wrap: wrap;
  }

  .home #contact .lede {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .home #contact .button-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .home #contact .button {
    min-height: 48px;
    padding: 12px 10px;
    font-size: 14px;
  }

  .home #contact .contact-list {
    gap: 8px;
  }

  .home #contact .contact-list a {
    color: #ffffff;
    font-size: 17px;
    line-height: 1;
  }

  /* FOOTER */
  .home .site-footer {
    padding: 48px 0 72px;
    background: #101417;
    color: #ffffff;
  }

  .home .footer-grid {
    gap: 30px;
  }

  .home .footer-brand {
    margin: 0 0 12px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 28px;
    line-height: 1.1;
  }

  .home .footer-grid p,
  .home .footer-col a {
    font-size: 16px;
    line-height: 1.5;
  }

  .home .footer-col h2 {
    margin: 0 0 12px;
    color: #e4c68e;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
  }

  .home .footer-meta {
    margin-top: 36px;
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
  }

  /* FLECHES DE LA VISIONNEUSE SANS CERCLE */
  .home .lightbox-nav {
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  /* BOUTON RETOUR EN HAUT */
  .home .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-color: #e4c68e;
    background: rgba(24, 35, 51, 0.94);
    color: #ffffff;
  }
}

/* ==================================================================
   PRICING MOBILE - ZONE A MODIFIER
   Ce bloc agit uniquement sur la page Pricing entre 0 et 480 pixels.
   Toutes les dimensions modifiables sont ecrites en pixels.
   ================================================================== */
@media (max-width: 480px) {
  /* PAGE ENTIERE */
  body.pricing-page {
    --header-height: 68px;
    background: #f5f3ee;
    color: #171b1f;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
  }

  .pricing-page .container,
  .pricing-page .narrow,
  .pricing-page .nav-shell {
    width: calc(100% - 40px); /* 20px a gauche + 20px a droite */
    max-width: none;
  }

  /* ENTETE */
  .pricing-page .site-header {
    height: 68px;
    border-bottom-color: rgba(255, 255, 255, 0.16);
    background: #182333;
    color: #ffffff;
  }

  .pricing-page .brand img {
    width: 190px;
  }

  .pricing-page .nav-toggle {
    width: 44px;
    height: 44px;
    color: #ffffff;
  }

  /* MENU MOBILE OUVERT */
  .pricing-page .primary-nav {
    padding: 100px 24px 30px;
    background: #182333;
    color: #ffffff;
  }

  .pricing-page .mobile-menu-label {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 4px;
  }

  .pricing-page .mobile-menu-links {
    margin-bottom: 26px;
  }

  .pricing-page .mobile-menu-links a {
    color: #ffffff;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .pricing-page .mobile-menu-book {
    min-height: 52px;
    margin: 0 0 34px;
    padding: 12px 24px;
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 2px;
  }

  .pricing-page .mobile-menu-company-name {
    font-family: "Fraunces", Georgia, serif;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .pricing-page .mobile-menu-company p:not(.mobile-menu-label):not(.mobile-menu-company-name),
  .pricing-page .mobile-menu-contact a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.4;
  }

  /* INTRODUCTION PRICING */
  .pricing-page .page-hero {
    min-height: 0;
    padding: 56px 0 60px;
    background: #182333;
    color: #ffffff;
    align-items: flex-end;
  }

  .pricing-page .page-hero .eyebrow {
    margin: 0 0 12px;
    color: #ecd19f;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
  }

  .pricing-page .page-hero h1 {
    max-width: none;
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Fraunces", Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3px;
    
    text-wrap: wrap;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .pricing-page .page-hero .lede {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1;
    letter-spacing: -1px;

  }

  /* SECTION DES TARIFS */
  .pricing-page main > .section:first-of-type {
    padding: 25px 0;
    background: #f5f3ee;
    color: #171b1f;
  }

  .pricing-page main > .section:first-of-type .section-head {
    margin: 0 0 32px;
  }

  .pricing-page main > .section:first-of-type .section-head .eyebrow {
    margin: 0 0 12px;
    color: #806439;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
  }

  .pricing-page main > .section:first-of-type .section-head h2 {
    margin: 0 0 16px;
    color: #171b1f;
    font-family: "Fraunces", Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    text-wrap: wrap;
  }

  .pricing-page main > .section:first-of-type .section-head > p:not(.eyebrow) {
    margin: 0;
    color: #30363b;
    font-size: 16px;
    line-height: 1;
    /* letter-spacing: -1px; */
  }

  /* GRILLE ET CARTES DE PRIX */
  .pricing-page .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(23, 27, 31, 0.17);
  }

  .pricing-page .price-card {
    padding: 30px 20px;
    background: #ffffff;
    color: #171b1f;
  }

  .pricing-page .price-card.featured {
    box-shadow: inset 0 0 0 2px #c4a36a;
    margin: 10px;
  }

  .pricing-page #vacant-apartments {
    scroll-margin-top: 84px;
  }

  .pricing-page .price-card .eyebrow {
    margin: 0 0 10px;
    color: #806439;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
  }

  .pricing-page .price-card h3 {
    margin: 0 0 0px;
    color: #171b1f;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .pricing-page .price-card .price {
    margin: 1px 0 8px;
    color: #171b1f;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .pricing-page .price-card p {
    margin-bottom: 16px;
    color: #30363b;
    font-size: 16px;
    line-height: 1.2;
  }

  .pricing-page .price-card .standard-rate {
    color: #596168;
  }

  .pricing-page .price-card ul {
    margin: 18px 0 18px;
    padding-left: 20px;
    color: #30363b;
    font-size: 16px;
    line-height: 1.55;
  }

  .pricing-page .price-card li {
    margin-bottom: 6px;
  }

  .pricing-page .price-card .button {
    width: 100%;
    min-height: 48px;
    margin-top: auto;
    padding: 12px 18px;
    border-color: #171b1f;
    background: #182333;
    color: #ffffff;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .pricing-page .fine-note {
    margin: 20px 0 0;
    color: #30363b;
    font-size: 15px;
    line-height: 1;
  }

  /* SECTION SERVICES ET FRAIS */
  .pricing-page .surface-deep {
    padding: 56px 0;
    background: #e9e4da;
    color: #171b1f;
  }

  .pricing-page .surface-deep .section-head {
    margin: 0 0 32px;
  }

  .pricing-page .surface-deep .eyebrow {
    margin: 0 0 12px;
    color: #806439;
    font-size: 13px;
    letter-spacing: 2px;
  }

  .pricing-page .surface-deep h2 {
    margin: 0 0 16px;
    color: #171b1f;
    font-family: "Fraunces", Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    text-wrap: wrap;
  }

  .pricing-page .surface-deep .section-head > p:not(.eyebrow) {
    margin: 0;
    color: #30363b;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .pricing-page .fee-list {
    margin: 0;
    border-top: 1px solid rgba(23, 27, 31, 0.17);
  }

  .pricing-page .fee-row {
    padding: 18px 0;
    border-bottom: 1px solid rgba(23, 27, 31, 0.17);
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pricing-page .fee-row dt {
    color: #171b1f;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
  }

  .pricing-page .fee-row dd {
    margin: 0;
    color: #596168;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
  }

  /* APPEL A L'ACTION FINAL */
  .pricing-page .section-compact {
    padding: 48px 0;
    background: #f5f3ee;
    color: #171b1f;
  }

  .pricing-page .section-compact .contact-panel {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }

  .pricing-page .section-compact .eyebrow {
    margin: 0 0 12px;
    color: #806439;
    font-size: 13px;
    letter-spacing: 2px;
  }

  .pricing-page .section-compact h2 {
    margin: 0 0 16px;
    color: #171b1f;
    font-family: "Fraunces", Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    text-wrap: wrap;
  }

  .pricing-page .section-compact p {
    margin: 0 0 14px;
    color: #30363b;
    font-size: 16px;
    line-height: 1.5;
  }

  .pricing-page .section-compact .text-link {
    color: #171b1f;
    font-size: 16px;
  }

  .pricing-page .section-compact .button-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* remplacer par 1fr pour empiler */
    gap: 10px;
  }

  .pricing-page .section-compact .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 10px;
    border-color: #171b1f;
    background: #182333;
    color: #ffffff;
    font-size: 14px;
  }

  /* FOOTER */
  .pricing-page .site-footer {
    padding: 48px 0 72px;
    background: #182333;
    color: #ffffff;
  }

  .pricing-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-page .footer-brand {
    margin: 0 0 12px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 28px;
    line-height: 1.1;
  }

  .pricing-page .footer-grid p,
  .pricing-page .footer-col a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.5;
  }

  .pricing-page .footer-col h2 {
    margin: 0 0 12px;
    color: #e4c68e;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
  }

  .pricing-page .footer-meta {
    margin-top: 36px;
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
  }

  /* BOUTON RETOUR EN HAUT */
  .pricing-page .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-color: #e4c68e;
    background: rgba(24, 35, 51, 0.94);
    color: #ffffff;
  }
}

/* ==================================================================
   GALLERY MOBILE - ZONE A MODIFIER
   Ce bloc agit uniquement sur la page Gallery entre 0 et 480 pixels.
   Toutes les dimensions modifiables sont ecrites en pixels.
   ================================================================== */
@media (max-width: 480px) {
  /* PAGE ENTIERE */
  body.gallery-page {
    --header-height: 68px;
    background: #f5f3ee;
    color: #171b1f;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
  }

  .gallery-page .container,
  .gallery-page .nav-shell {
    width: calc(100% - 40px); /* 20px a gauche + 20px a droite */
    max-width: none;
  }

  /* ENTETE */
  .gallery-page .site-header {
    height: 68px;
    border-bottom-color: rgba(255, 255, 255, 0.16);
    background: #182333;
    color: #ffffff;
  }

  .gallery-page .brand img {
    width: 190px;
  }

  .gallery-page .nav-toggle {
    width: 44px;
    height: 44px;
    color: #ffffff;
  }

  /* MENU MOBILE OUVERT */
  .gallery-page .primary-nav {
    padding: 100px 24px 30px;
    background: #182333;
    color: #ffffff;
  }

  .gallery-page .mobile-menu-label {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 4px;
  }

  .gallery-page .mobile-menu-links {
    margin-bottom: 26px;
  }

  .gallery-page .mobile-menu-links a {
    color: #ffffff;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .gallery-page .mobile-menu-book {
    min-height: 52px;
    margin: 0 0 34px;
    padding: 12px 24px;
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 2px;
  }

  .gallery-page .mobile-menu-company-name {
    font-family: "Fraunces", Georgia, serif;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .gallery-page .mobile-menu-company p:not(.mobile-menu-label):not(.mobile-menu-company-name),
  .gallery-page .mobile-menu-contact a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.4;
  }

  /* INTRODUCTION GALLERY */
  .gallery-page .page-hero {
    min-height: 0;
    padding: 56px 0 60px;
    color: #ffffff;
    background: #182333;
    
    align-items: flex-end;
  }

  .gallery-page .page-hero .eyebrow {
    margin: 0 0 12px;
    color: #ecd19f;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
  }

  .gallery-page .page-hero h1 {
    max-width: none;
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Fraunces", Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -1px;
    text-wrap: wrap;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none; 
    line-height: 1;
  }

  .gallery-page .page-hero .lede {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1;
  }

  /* SECTION PRINCIPALE DE LA GALERIE */
  .gallery-page main > .section {
    padding: 56px 0;
    background: #f5f3ee;
    color: #171b1f;
  }

  .gallery-page .gallery-container {
    width: calc(100% - 40px); /* 20px a gauche + 20px a droite */
    max-width: none;
  }

  .gallery-page .gallery-container .section-head {
    margin: 0 0 32px;
  }

  .gallery-page .gallery-container .section-head .eyebrow {
    margin: 0 0 12px;
    color: #806439;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
  }

  .gallery-page .gallery-container .section-head h2 {
    margin: 0 0 16px;
    color: #171b1f;
    font-family: "Fraunces", Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    text-wrap: wrap;
  }

  .gallery-page .gallery-container .section-head > p:not(.eyebrow) {
    margin: 0;
    color: #30363b;
    font-size: 16px;
    line-height: 1;
  }

  /* GRILLE ET PHOTOGRAPHIES */
  .gallery-page .gallery-page-grid {
    grid-template-columns: 1fr; /* remplacer par 1fr 1fr pour 2 colonnes */
    gap: 12px;
  }

  .gallery-page .gallery-item {
    border-radius: 0;
    background: #d8d4cb;
    aspect-ratio: 3 / 2;
  }

  .gallery-page .gallery-item img {
    object-fit: cover;
  }

  /* VISIONNEUSE DES PHOTOS */
  .gallery-page .lightbox {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 16px;
    border: 0;
    background: rgba(5, 8, 10, 0.96);
    color: #ffffff;
  }

  .gallery-page .lightbox::backdrop {
    background: rgba(5, 8, 10, 0.96);
  }

  .gallery-page .lightbox-figure {
    width: 100%;
    max-width: none;
    max-height: calc(100svh - 120px);
    margin: 0;
  }

  .gallery-page .lightbox-figure img {
    max-width: 100%;
    max-height: calc(100svh - 150px);
    margin: 0 auto;
    object-fit: contain;
  }

  .gallery-page .lightbox-figure figcaption {
    margin-top: 10px;
    color: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }

  .gallery-page .lightbox-close,
  .gallery-page .lightbox-nav {
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
  }

  .gallery-page .lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 28px;
  }

  .gallery-page .lightbox-nav {
  border: 0;
  border-radius: 0;
  background: transparent;
}

  .gallery-page .lightbox-prev {
    left: 16px;
  }

  .gallery-page .lightbox-next {
    right: 16px;
  }

  /* APPEL A L'ACTION */
  .gallery-page .section-compact {
    padding: 48px 0;
    background: #e9e4da;
    color: #171b1f;
  }

  .gallery-page .section-compact .contact-panel {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }

  .gallery-page .section-compact .eyebrow {
    margin: 0 0 12px;
    color: #806439;
    font-size: 13px;
    letter-spacing: 2px;
  }

  .gallery-page .section-compact h2 {
    margin: 0 0 16px;
    color: #171b1f;
    font-family: "Fraunces", Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    text-wrap: wrap;
  }

  .gallery-page .section-compact p {
    margin: 0;
    color: #30363b;
    font-size: 16px;
    line-height: 1;
  }

  .gallery-page .section-compact .button-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* remplacer par 1fr pour empiler */
    gap: 10px;
  }

  .gallery-page .section-compact .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 10px;
    border-color: #171b1f;
    background: #182333;
    color: #ffffff;
    font-size: 14px;
  }

  /* FOOTER */
  .gallery-page .site-footer {
    padding: 48px 0 72px;
    background: #182333;
    color: #ffffff;
  }

  .gallery-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-page .footer-brand {
    margin: 0 0 12px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 28px;
    line-height: 1.1;
  }

  .gallery-page .footer-grid p,
  .gallery-page .footer-col a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.5;
  }

  .gallery-page .footer-col h2 {
    margin: 0 0 12px;
    color: #e4c68e;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
  }

  .gallery-page .footer-meta {
    margin-top: 36px;
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
  }

  /* BOUTON RETOUR EN HAUT */
  .gallery-page .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-color: #e4c68e;
    background: rgba(24, 35, 51, 0.94);
    color: #ffffff;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-backdrop .is-visible {
    animation: none;
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .policy-nav,
  .site-footer,
  .button-row {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .page-hero {
    min-height: 0;
    padding: 1rem 0;
    background: #fff;
    color: #000;
  }

  .page-hero h1 {
    font-size: 30pt;
  }

  .policy-layout {
    display: block;
  }

  .policy-section {
    break-inside: avoid;
  }
}
