@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/InterVariable-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Delius Swash Caps";
  src: url("/assets/fonts/DeliusSwashCaps-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f7f1e5;
  --sand: #eadfcd;
  --clay: #c48a5a;
  --olive: #5c6b5a;
  --ink: #2f2b2a;
  --muted: #6f6862;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(36, 32, 30, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff7e9 0%, #f1e4d1 45%, #eadfcd 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--clay);
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 32px 0 18px;
  border-bottom: 1px solid rgba(47, 43, 42, 0.08);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo {
  font-family: "Delius Swash Caps", "Palatino Linotype", serif;
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
  margin: 0;
  letter-spacing: 0.02em;
}

.logo span {
  display: block;
  font-size: 0.85rem;
  font-family: "Inter", sans-serif;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  border-color: var(--clay);
}

.hero {
  margin: 30px auto 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47, 43, 42, 0.55), rgba(47, 43, 42, 0.1));
  z-index: 1;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  padding: 80px clamp(24px, 6vw, 80px);
  max-width: 560px;
  color: var(--white);
  z-index: 2;
}

.hero-content h2 {
  font-family: "Delius Swash Caps", serif;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  margin: 0 0 16px;
}

.hero-content p {
  margin: 0 0 18px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--clay);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.button.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.section {
  padding: 60px 0;
}

.section h2 {
  font-family: "Delius Swash Caps", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 20px;
}

.section p {
  line-height: 1.7;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 28px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.two.intro-grid {
  align-items: center;
  justify-items: center;
  grid-template-columns: minmax(160px, 1fr) minmax(0, 4fr);
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.align-center {
  align-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(64, 52, 38, 0.12);
}

.card h3 {
  font-family: "Delius Swash Caps", serif;
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.highlight-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(35, 28, 22, 0.15);
}

.highlight-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.highlight-image--plain {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  justify-self: start;
}

.highlight-image--plain img {
  width: min(220px, 60vw);
  height: auto;
  object-fit: contain;
}

.centered-image {
  display: flex;
  justify-content: center;
}

.centered-image img {
  width: min(260px, 70vw);
  height: auto;
}

.slideshow {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  min-height: 420px;
  box-shadow: none;
}

.slideshow .slideshow-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.slideshow .slideshow-image.is-fading {
  opacity: 0;
}

.ambiance-slideshow {
  min-height: 600px;
}

.slideshow-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.45);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slideshow-button:hover {
  background: rgba(20, 18, 15, 0.6);
  transform: translateY(-50%) scale(1.05);
}

.slideshow-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.slideshow-button.prev {
  left: 12px;
}

.slideshow-button.next {
  right: 12px;
}

.slideshow-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.slideshow-thumb {
  border: 2px solid transparent;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.slideshow-thumb img {
  width: 100%;
  height: 56px;
  object-fit: cover;
  display: block;
}

.slideshow-thumb.is-active {
  border-color: var(--clay);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .slideshow-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
    gap: 8px;
  }

  .slideshow-thumb img {
    height: 46px;
  }
}

.caption {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

.tarif-cell {
  grid-column: span 2;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  border: 1px solid rgba(196, 138, 90, 0.2);
}

.tarif-cell.is-wide {
  grid-column: span 3;
}

.tarif-cell h3 {
  font-family: "Delius Swash Caps", serif;
  margin: 0 0 8px;
}

.tarif-price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--clay);
}

@media (max-width: 760px) {
  .tarifs-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .tarif-cell {
    grid-column: auto;
  }
}

.note {
  text-align: center;
  margin-top: 24px;
  color: var(--muted);
}

.payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.payment img {
  width: 140px;
  height: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

form {
  display: grid;
  gap: 16px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(47, 43, 42, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(35, 28, 22, 0.18);
  height: clamp(320px, 45vh, 520px);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

#map {
  width: 100%;
  height: 100%;
}

.map-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.button-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.site-footer {
  padding: 30px 0 50px;
  border-top: 1px solid rgba(47, 43, 42, 0.08);
  margin-top: 60px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.footer-text {
  max-width: 560px;
  text-align: right;
}

.footer-badge img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(320px, 35vw);
  max-height: 200px;
}

.site-footer a {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 760px) {
  .ambiance-slideshow {
    min-height: 360px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-badge img {
    width: min(260px, 70vw);
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 360px;
  }

  .hero-content {
    padding: 56px 26px;
  }
}
