:root {
  --stone: #D8C9B4;
  --paper: #FFFDF8;
  --ink: #27251F;
  --wine: #701F2D;
  --wine-dark: #4C121D;
  --gold: #76501F;
  --gold-on-dark: #E0B66D;
  --gold-ornament: #B08A45;
  --forest: #173D35;
  --cream: #F6F0E5;
  --focus: #FFBF47;
  --line: rgba(36, 28, 23, .16);
  --shadow: 0 18px 46px rgba(36, 28, 23, .12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: clip;
}
body.is-lightbox-open,
body.is-menu-open { overflow: hidden; }
body.is-lightbox-open {
  overscroll-behavior: contain;
  touch-action: none;
}
img { display: block; max-width: 100%; height: auto; }
.breadcrumb { width: min(1180px, calc(100% - 40px)); margin: 20px auto 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; font-size: .9rem; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: #625c52; }
.breadcrumb a { color: var(--wine); }
picture { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .8rem 1rem;
  background: var(--focus);
  color: #15120d;
  font-weight: 700;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 249, 240, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  text-decoration: none;
  max-width: 10ch;
  color: var(--wine);
  line-height: .9;
  white-space: normal;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--wine);
  background: rgba(110, 31, 42, .08);
}
.header-cta,
.nav-cta,
.mobile-sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--wine);
  border-radius: 4px;
  color: var(--cream);
  background: var(--wine);
  font-weight: 700;
  text-decoration: none;
}
.header-cta:hover,
.nav-cta:hover,
.mobile-sticky-cta:hover {
  background: #591822;
}
.mobile-sticky-cta {
  transition: opacity .2s ease, transform .2s ease;
}
.js-enabled .mobile-sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 18px));
  visibility: hidden;
}
.js-enabled .mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.nav-cta,
.mobile-sticky-cta {
  display: none;
}
.header-cta {
  display: none;
}
.site-nav .nav-cta {
  display: inline-flex;
}
@media (min-width: 769px) {
  .mobile-sticky-cta,
  .js-enabled .mobile-sticky-cta,
  .js-enabled .mobile-sticky-cta.is-visible {
    display: none;
  }
  body:not(.js-enabled) {
    padding-bottom: 0;
  }
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: 0;
  height: clamp(500px, 65vh, 750px);
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: clamp(96px, 14vw, 180px) clamp(20px, 6vw, 84px) clamp(44px, 8vw, 92px);
  color: var(--cream);
  background-image: linear-gradient(90deg, rgba(36, 28, 23, .78), rgba(36, 28, 23, .34), rgba(36, 28, 23, .12)), var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-salle {
  --hero-image: url("/assets/images/1000022111.jpg");
}
.hero-evenements {
  --hero-image: url("/assets/images/1000017908.jpg");
}
.hero-hebergements {
  --hero-image: url("/assets/images/1000017905.jpg");
}
@supports (background-image: image-set(url("x.webp") type("image/webp"))) {
  .hero-salle {
    --hero-image: image-set(url("/assets/images/1000022111.webp") type("image/webp"), url("/assets/images/1000022111.jpg") type("image/jpeg"));
  }
  .hero-evenements {
    --hero-image: image-set(url("/assets/images/1000017908.webp") type("image/webp"), url("/assets/images/1000017908.jpg") type("image/jpeg"));
  }
  .hero-hebergements {
    --hero-image: image-set(url("/assets/images/1000017905.webp") type("image/webp"), url("/assets/images/1000017905.jpg") type("image/jpeg"));
  }
}
@media (max-width: 600px) {
  .hero-salle { --hero-image: url("/assets/images/1000022111-480.webp"); }
  .hero-evenements { --hero-image: url("/assets/images/1000017908-480.webp"); }
  .hero-hebergements { --hero-image: url("/assets/images/1000017905-480.webp"); }
}
.hero-inner { min-height: 0; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-carousel {
  position: relative;
  width: 100%;
  height: clamp(540px, calc(100svh - 92px), 760px);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #e9e0d4;
  touch-action: pan-y;
}
.hero-carousel::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(15, 20, 17, .78) 0%, rgba(15, 20, 17, .48) 42%, rgba(15, 20, 17, .08) 76%), linear-gradient(0deg, rgba(15, 20, 17, .46), transparent 50%);
}
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}
.hero-slide {
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--slide-position, center);
}
.hero-slide-focus-fireplace { --slide-position: 58% center; }
.hero-slide-focus-45 { --slide-position: center 48%; }
.home-hero {
  background: var(--forest);
}
.hero-introduction .hero-actions {
  margin-top: 1.75rem;
}
.hero-introduction {
  position: absolute;
  z-index: 2;
  left: clamp(4.5rem, 8vw, 8rem);
  bottom: clamp(4.5rem, 9vh, 7rem);
  max-width: min(720px, calc(100% - 9rem));
  color: #fff;
  text-align: left;
}
.hero-introduction .eyebrow {
  color: var(--gold-on-dark);
}
.hero-introduction h1 {
  margin: .5rem 0 1rem;
  max-width: 9ch;
  color: #FFFAF0;
  font-size: clamp(3rem, 6vw, 5.75rem);
  line-height: 1;
}
.hero-introduction p:not(.eyebrow) {
  max-width: 34ch;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2vw, 1.5rem);
}
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 249, 240, .48);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(20, 16, 13, .42);
  backdrop-filter: blur(4px);
  font-size: 1.85rem;
  line-height: 1;
  opacity: .84;
  cursor: pointer;
  touch-action: manipulation;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}
.hero-carousel-btn:hover {
  background: rgba(110, 31, 42, .62);
  border-color: rgba(255, 249, 240, .74);
  opacity: 1;
}
.hero-carousel-prev { left: 1rem; }
.hero-carousel-next { right: 1rem; }
.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(.8rem, 2vw, 1rem);
  z-index: 3;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}
.hero-carousel-dots button {
  position: relative;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
}
.hero-carousel-dots button::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 249, 240, .82);
  border-radius: 50%;
  background: rgba(255, 249, 240, .32);
  box-shadow: 0 1px 4px rgba(20, 16, 13, .22);
}
.hero-carousel-dots button.is-active::before {
  background: var(--cream);
  border-color: var(--cream);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
h1, h2, h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  line-height: 1.08;
  font-weight: 500;
}
h1 { font-size: clamp(3rem, 8vw, 6.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: 1.45rem; }
.hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 0 0 28px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}
.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.center-actions { justify-content: center; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.btn-primary {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}
.btn-primary:hover { background: #591822; }
.btn-light {
  background: rgba(255, 249, 240, .92);
  color: var(--ink);
}
.btn-outline {
  border-color: var(--wine);
  color: var(--wine);
  background: transparent;
}

.section,
.page-intro {
  padding: clamp(62px, 9vw, 118px) clamp(20px, 5vw, 72px);
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.card-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card,
.contact-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow);
}
.card a {
  color: var(--wine);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.wide { min-height: 240px; }
.muted { background: var(--forest); color: #fff; }
.muted .eyebrow { color: var(--gold-on-dark); }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  padding: clamp(62px, 9vw, 118px) clamp(20px, 5vw, 72px);
}
.split-copy { max-width: 720px; }
.split-section img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.split-section picture,
.room picture {
  width: 100%;
}
.gallery-preview {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-preview picture {
  width: 100%;
  height: 100%;
}
.gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-preview img {
  aspect-ratio: 1 / 1.25;
  border-radius: 6px;
}
.cta-band {
  margin: 0;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
  text-align: center;
  color: var(--cream);
  background: linear-gradient(135deg, var(--forest), var(--wine));
}
.cta-band h2 {
  max-width: 860px;
  margin-inline: auto;
}

.page-intro {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.page-intro h1 { color: var(--wine); }
body[data-page="contact"] .page-intro {
  width: min(calc(100% - 2rem), 1100px);
  max-width: none;
  padding: clamp(4rem, 8vw, 7rem) 0;
  margin-inline: auto;
}
body[data-page="contact"] .page-intro .eyebrow {
  margin-bottom: 8px;
}
body[data-page="contact"] .page-intro h1 {
  max-width: 18ch;
  margin: 0 auto clamp(1rem, 2vw, 1.25rem);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .95;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}
body[data-page="contact"] .page-intro p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
}
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 0;
}
.legal-content h2 {
  margin-top: 34px;
  color: var(--wine);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.legal-content p {
  margin: 0 0 12px;
}
.check-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.check-list li {
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 29px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
}
.room-list {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.room {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  padding: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.room img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.gallery-grid {
  width: min(1240px, calc(100% - clamp(32px, 6vw, 72px)));
  margin: 0 auto clamp(62px, 8vw, 100px);
  columns: 3;
  column-gap: clamp(.75rem, 2vw, 1.5rem);
}
.gallery-item {
  display: block;
  width: 100%;
  min-height: 0;
  min-width: 0;
  break-inside: avoid;
  margin: 0 0 clamp(.75rem, 2vw, 1.5rem);
  padding: 0;
  border: 1px solid transparent;
  border-radius: 0;
  overflow: visible;
  background: var(--cream);
  cursor: zoom-in;
  touch-action: manipulation;
}
.gallery-item picture {
  width: 100%;
  height: auto;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transition: transform .25s ease, filter .25s ease;
}
@media (hover: hover) {
  .gallery-item:hover img {
    filter: saturate(1.04) brightness(1.04);
  }
}
.gallery-item:focus-visible {
  border-color: rgba(176, 138, 69, .85);
  outline-offset: 4px;
}
.gallery-item:focus-visible img {
  filter: saturate(1.04) brightness(1.04);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding:
    calc(clamp(16px, 4vw, 52px) + env(safe-area-inset-top))
    calc(clamp(16px, 4vw, 52px) + env(safe-area-inset-right))
    calc(clamp(16px, 4vw, 52px) + env(safe-area-inset-bottom))
    calc(clamp(16px, 4vw, 52px) + env(safe-area-inset-left));
  background: rgba(20, 15, 12, .88);
  overscroll-behavior: contain;
  touch-action: none;
}
.lightbox.is-open { display: grid; }
.lightbox-frame {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  gap: 14px;
  width: min(1480px, 100%);
  max-height: calc(100dvh - 2rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
}
.lightbox img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(78dvh, calc(100dvh - 130px - env(safe-area-inset-top) - env(safe-area-inset-bottom)));
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
}
.lightbox-meta {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-height: 46px;
  color: var(--cream);
  text-align: center;
}
.lightbox-counter {
  margin: 0;
  font-weight: 700;
}
.lightbox-caption {
  max-width: min(760px, 86vw);
  margin: 0;
  color: rgba(255, 249, 240, .84);
  font-size: .95rem;
  line-height: 1.4;
}
.lightbox-caption:empty {
  display: none;
}
.lightbox button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px;
  color: var(--cream);
  background: rgba(0,0,0,.3);
  font-size: 1.6rem;
  cursor: pointer;
}
.lightbox button:hover {
  background: rgba(110, 31, 42, .72);
}
.lightbox-close {
  top: calc(16px + env(safe-area-inset-top));
  right: calc(16px + env(safe-area-inset-right));
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-prev { left: calc(16px + env(safe-area-inset-left)); }
.lightbox-next { right: calc(16px + env(safe-area-inset-right)); }

.contact-layout {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto clamp(62px, 8vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.form-honeypot { display: none; }
.form-row { display: grid; gap: 7px; }
.form-row.full,
.form-status,
.contact-form .btn,
.form-note { grid-column: 1 / -1; }
label { font-weight: 700; }
.consent-row label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
}
.consent-row input {
  width: auto;
  margin-top: .35em;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 28, 23, .24);
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--wine);
  font-weight: 700;
}
.form-note {
  margin: -4px 0 0;
  color: rgba(36, 28, 23, .72);
  font-size: .95rem;
}
.contact-side { display: grid; gap: 18px; align-content: start; }
.request-steps {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.request-steps h2 {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 1.55rem;
  line-height: 1.15;
}
.request-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: request-step;
}
.request-steps li {
  position: relative;
  min-height: 52px;
  padding: 0 0 18px 48px;
  counter-increment: request-step;
}
.request-steps li:last-child { padding-bottom: 0; }
.request-steps li::before {
  content: counter(request-step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  font-family: var(--serif);
  font-weight: 700;
}
.request-steps strong,
.request-steps span { display: block; }
.request-steps span { margin-top: 3px; font-size: .93rem; line-height: 1.45; }

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: #F8F0E4;
  background: #122D28;
  border-top: 6px solid var(--gold);
}
.site-footer p { margin: 8px 0 0; }
.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}
.site-footer a { display: flex; align-items: center; min-height: 44px; color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--gold-on-dark); }

@media (max-width: 920px) {
  .js-enabled .nav-toggle { display: block; }
  .header-cta { display: none; }
  .nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 4px;
  }
  body:not(.js-enabled) .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  body:not(.js-enabled) .site-nav {
    flex: 1 0 100%;
    flex-wrap: wrap;
    align-items: stretch;
  }
  body:not(.js-enabled) .site-nav a {
    flex: 1 1 140px;
  }
  .js-enabled .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 12px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .js-enabled .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; }
  .card-grid.three,
  .card-grid.two,
  .split-section,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .gallery-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid { columns: 2; }
  .room { grid-template-columns: 1fr; }
  .room img { aspect-ratio: 16 / 10; }
  .hero {
    height: clamp(380px, 58vh, 540px);
  }
  .hero-carousel-btn {
    top: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
  }
}

@media (max-width: 1024px) {
  .hero-slide-focus-45 { --slide-position: 48% center; }
  .hero-slide-focus-fireplace { --slide-position: 64% center; }
  .hero-carousel {
    height: clamp(520px, calc(100svh - 80px), 680px);
  }
}

@media (max-width: 768px) {
  body:not(.js-enabled) { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
  .mobile-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 55;
    display: flex;
    min-height: 52px;
    box-shadow: 0 14px 34px rgba(36, 28, 23, .24);
  }
  .home-carousel { height: clamp(520px, calc(100svh - 72px), 640px); }
  .hero-introduction {
    left: clamp(4rem, 8vw, 6rem);
    bottom: 4.5rem;
    max-width: calc(100% - 8rem);
  }
  .hero-introduction h1 {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    line-height: 1.08;
    text-wrap: balance;
  }
  .hero-carousel-btn {
    top: 50%;
    bottom: auto;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    font-size: 1.45rem;
    opacity: .92;
    transform: translateY(-50%);
  }
  .hero-carousel-btn:hover {
    background: transparent;
    border-color: transparent;
  }
  .hero-carousel-btn::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255, 249, 240, .5);
    border-radius: 50%;
    background: rgba(20, 16, 13, .38);
    backdrop-filter: blur(4px);
    pointer-events: none;
  }
  .hero-carousel-btn:hover::before {
    background: rgba(110, 31, 42, .56);
    border-color: rgba(255, 249, 240, .7);
  }
  .hero-carousel-dots {
    bottom: 12px;
  }
}

@media (max-width: 600px) {
  .hero-carousel-btn { display: none; }
  .hero-carousel-dots { bottom: 8px; gap: 0; }
  .hero-carousel-dots button {
    width: 44px;
    height: 44px;
    padding: 0;
  }
  .hero-introduction {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 4.25rem;
    max-width: none;
  }
  .hero-introduction p:not(.eyebrow) {
    font-size: clamp(1rem, 4vw, 1.08rem);
    line-height: 1.55;
  }
  .hero-introduction .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .hero-introduction .hero-actions a {
    width: 100%;
  }
  .hero-introduction .btn-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .7);
    background: rgba(20, 16, 13, .24);
  }
  .hero-introduction .btn-light:hover {
    color: var(--ink);
    border-color: #fff;
    background: #fff;
  }
}

@media (max-width: 560px) {
  .site-header { padding: 12px 16px; }
  .brand { white-space: normal; line-height: 1.05; }
  .hero,
  .hero-slide {
    min-height: 0;
  }
  .hero-carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1.42rem;
  }
  .hero-actions,
  .center-actions,
  .contact-form {
    grid-template-columns: 1fr;
  }
  .btn { width: 100%; }
  .gallery-grid { columns: 2; }
  .gallery-preview { grid-template-columns: 1fr 1fr; }
  .contact-form { display: grid; }
}

@media (max-width: 480px) {
  body[data-page="contact"] .page-intro h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }
  .hero-carousel {
    height: clamp(540px, calc(100svh - 68px), 620px);
  }
  .gallery-grid { columns: 1; }
  .hero-slide-focus-45 { --slide-position: 44% center; }
  .hero-slide-focus-fireplace { --slide-position: 68% center; }
  .hero-carousel-prev { left: .6rem; }
  .hero-carousel-next { right: .6rem; }
}

@media (max-width: 360px) {
  .site-footer nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide,
  .gallery-item img,
  .hero-carousel-btn,
  .mobile-sticky-cta {
    transition: none;
  }
}
