:root {
  --blue: #3a6fc4;
  --blue-dark: #2a5299;
  --blue-light: #6a9fd8;
  --terracotta: #b5591a;
  --terracotta-light: #c9783d;
  --cream: #f5f0e8;
  --cream-dark: #fcf7ec;
  --warm-white: #faf7f2;
  --text: #2c2118;
  --text-light: #6b5c4a;
  --gold: #a08840;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  background: var(--warm-white);
  color: var(--text);
  font-weight: 300;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(181, 89, 26, 0.12);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: "Dancing Script", cursive;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--blue) 40%, var(--terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.nav-badge {
  font-size: 0.6rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 2px 6px;
  border-radius: 20px;
  margin-top: 4px;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--terracotta);
}

.btn-nav {
  background: var(--terracotta);
  color: white !important;
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 700 !important;
  transition:
    background 0.2s,
    transform 0.15s !important;
}

.btn-nav:hover {
  background: var(--terracotta-light) !important;
  transform: translateY(-1px);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg,
      var(--cream) 0%,
      var(--cream-dark) 60%,
      #e8dfc8 100%);
  display: flex;
  align-items: center;
  padding: 100px 8% 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 580px;
  height: 580px;
  background: radial-gradient(circle,
      rgba(58, 111, 196, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
}

.hero-bg-paw {
  position: absolute;
  font-size: 9rem;
  opacity: 0.04;
  font-family: serif;
}

.hero-bg-paw:nth-child(2) {
  right: 18%;
  top: 12%;
  font-size: 5rem;
}

.hero-bg-paw:nth-child(3) {
  left: 5%;
  bottom: 15%;
  font-size: 7rem;
}

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
}

.hero-title em {
  font-style: italic;
  color: var(--blue);
}

.hero-subtitle {
  font-family: "Dancing Script", cursive;
  font-size: 1.5rem;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 500px;
}

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

.btn-primary {
  background: var(--blue);
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(58, 111, 196, 0.28);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(58, 111, 196, 0.36);
}

.btn-secondary {
  background: transparent;
  color: var(--terracotta);
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid var(--terracotta);
  letter-spacing: 0.04em;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--terracotta);
  color: white;
}

.hero-illustration {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  background: #fef7ec;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-illustration img {
  width: 80%;
  height: auto;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }

  50% {
    transform: translateY(-50%) translateY(-12px);
  }
}

.hero-dog-svg {
  width: 100%;
  height: auto;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text);
  margin-bottom: 14px;
}

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--terracotta));
  margin: 0 auto;
  border-radius: 2px;
}

.section-desc {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SERVICES ── */
#services {
  padding: 100px 6%;
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  border: 1px solid rgba(181, 89, 26, 0.08);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(44, 33, 24, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--terracotta));
  border-radius: 20px 20px 0 0;
}

.service-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
}

.service-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--blue-dark);
}

.service-desc {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(58, 111, 196, 0.1);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
}

/* ── RESERVATION ── */
#reservation {
  padding: 100px 6%;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1e3d7a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#reservation::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.reservation-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.reservation-text .section-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.reservation-text .section-title {
  color: white;
  text-align: left;
}

.reservation-text .section-line {
  margin: 0;
}

.reservation-text .section-desc {
  color: rgba(255, 255, 255);
  text-align: left;
  margin-left: 0;
}

.reservation-features {
  list-style: none;
  margin: 28px 0 36px;
}

.reservation-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255);
  margin-bottom: 14px;
}

.reservation-features li::before {
  content: "✓";
  color: var(--terracotta-light);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-book {
  background: white;
  color: var(--blue-dark);
  padding: 16px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-book:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.resa-cta {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg,
      var(--terracotta),
      var(--terracotta-light));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition:
    opacity 0.2s,
    transform 0.15s;
  font-family: "Lato", sans-serif;
}

.resa-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ── TEMOIGNAGES ── */
#temoignages {
  padding: 100px 6%;
  background: var(--cream);
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.temoignage-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  border: 1px solid rgba(181, 89, 26, 0.1);
  transition: transform 0.25s;
}

.temoignage-card:hover {
  transform: translateY(-4px);
}

.temoignage-quote {
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--blue-light);
  opacity: 0.4;
  font-family: "Playfair Display", serif;
  margin-bottom: 16px;
}

.temoignage-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
}

.temoignage-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--cream-dark);
  padding-top: 20px;
}

.temoignage-avatar {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--blue-light),
      var(--terracotta-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: white;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.temoignage-avatar img {
  width: 100%;
  height: 100%;
}

.temoignage-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.temoignage-animal {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

.stars {
  color: #f0a500;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* ── CONTACT ── */
#contact {
  padding: 100px 6%;
  background: var(--warm-white);
}

.contact-wrapper {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--text);
}

.contact-info p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--cream-dark);
}

.contact-item-text,
.contact-item-text a {
  font-size: 0.94rem;
  color: var(--text);
}

.contact-item-label {
  font-size: 0.78rem;
  color: var(--text-light);
}

.contact-form {
  background: var(--cream);
  border-radius: 24px;
  padding: 44px;
  border: 1px solid rgba(181, 89, 26, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(181, 89, 26, 0.15);
  border-radius: 12px;
  background: var(--warm-white);
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58, 111, 196, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  border: none;
  border-radius: 14px;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition:
    opacity 0.2s,
    transform 0.15s;
  margin-top: 6px;
  box-shadow: 0 6px 24px rgba(58, 111, 196, 0.3);
}

.btn-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ── SECTION : MENTIONS LÉGALES ── */
#mentions-legales {
  background: var(--text);
  padding: 80px 80px;
  border-top: 1px solid rgba(156, 122, 42, 0.2);
}

.mentions-header {
  text-align: center;
  margin-bottom: 60px;
}

.mentions-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.mentions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.mentions-block h3 {
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(156, 122, 42, 0.2);
}

.mentions-block p,
.mentions-block address {
  font-size: 0.82rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}

.mentions-block a,
.mentions-full-block a {
  color: rgba(255, 255, 255, 0.8);
}

.mentions-block a:hover {
  color: var(--gold);
}

.mentions-full {
  max-width: 1100px;
  margin: 0 auto;
}

.mentions-full-block {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 0;
}

.mentions-full-block h3 {
  font-family: "Lato", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.mentions-full-block p {
  font-size: 0.8rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
}

/* ── FOOTER ── */
footer {
  background: #1e1712;
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 6% 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-brand .nav-logo-text {
  font-size: 2rem;
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--terracotta-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-vivantia {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.vivantia-link {
  color: var(--gold) !important;
  text-decoration: none !important;
}

.disclaimer {
  background: rgba(181, 89, 26, 0.04);
  border-left: 3px solid var(--terracotta);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--terracotta);
  margin-top: 20px;
}

/* ── À PROPOS ── */
#apropos {
  padding: 100px 6%;
  background: var(--cream);
}

.apropos-wrapper {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.apropos-photo-col {
  position: relative;
}

.apropos-photo-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #d4c8b8, #c2b8a5);
  box-shadow: 0 24px 60px rgba(44, 33, 24, 0.16);
}

.apropos-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder portrait SVG quand pas de photo */
.apropos-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(145deg, var(--cream-dark), #d8cfc0);
  color: var(--text-light);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}

.apropos-photo-placeholder .placeholder-icon {
  font-size: 4rem;
  opacity: 0.35;
}

.apropos-photo-placeholder p {
  font-style: italic;
  opacity: 0.6;
  font-size: 0.8rem;
}

.apropos-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--blue-dark);
  color: white;
  border-radius: 20px;
  padding: 16px 22px;
  box-shadow: 0 8px 28px rgba(42, 82, 153, 0.35);
  text-align: center;
}

.apropos-badge-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.apropos-badge-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
  margin-top: 4px;
  text-transform: uppercase;
}

.apropos-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--terracotta);
  border-radius: 20px;
  opacity: 0.25;
  z-index: -1;
}

.apropos-text .section-title {
  text-align: left;
}

.apropos-text .section-line {
  margin: 0;
}

.apropos-text .section-eyebrow {
  text-align: left;
  display: block;
}

.apropos-intro {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--terracotta);
  margin: 24px 0 20px;
}

.apropos-body {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

.apropos-formations {
  margin: 28px 0;
  background: var(--warm-white);
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(181, 89, 26, 0.1);
}

.apropos-formations h4 {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.formation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ftag {
  font-size: 0.8rem;
  background: var(--cream);
  color: var(--text-light);
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid var(--cream-dark);
}

.ftag.blue {
  background: rgba(58, 111, 196, 0.08);
  color: var(--blue);
  border-color: rgba(58, 111, 196, 0.15);
}

.ftag.terra {
  background: rgba(181, 89, 26, 0.07);
  color: var(--terracotta);
  border-color: rgba(181, 89, 26, 0.15);
}

/* ── GALERIE ── */
#galerie {
  padding: 80px 6% 100px;
  background: var(--warm-white);
}

.galerie-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gal-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
  cursor: pointer;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-item:hover img {
  transform: scale(1.04);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gal-title {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(44, 33, 24, 0.75) 0%,
      transparent 90%);
  display: flex;
  align-items: flex-start;
  padding: 16px;
  color: white;
  font-size: 1rem;
  /* font-style: italic; */
  font-family: "Playfair Display", serif;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(44, 33, 24, 0.55) 0%,
      transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gal-caption {
  color: white;
  font-size: 0.82rem;
  font-style: italic;
  font-family: "Playfair Display", serif;
}

/* layout mosaïque */
.gal-item:nth-child(1) {
  grid-column: 1/4;
  grid-row: 1;
  aspect-ratio: 3/4;
}

.gal-item:nth-child(2) {
  grid-column: 4/10;
  grid-row: 1;
  aspect-ratio: 8/5;
}

.gal-item:nth-child(3) {
  grid-column: 10/13;
  grid-row: 1;
  aspect-ratio: 3/4;
}

.gal-item:nth-child(4) {
  grid-column: 1/6;
  grid-row: 2;
  aspect-ratio: 4/3;
}

.gal-item:nth-child(5) {
  grid-column: 6/9;
  grid-row: 2;
  aspect-ratio: 3/4;
}

.gal-item:nth-child(6) {
  grid-column: 9/12;
  grid-row: 2;
  aspect-ratio: 3/4;
}


/* Lightbox simple */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20, 12, 6, 0.92);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: serif;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  
  /* .hero-bg-circle {
    position: relative;
    
  } */
   #hero {
    flex-direction: column;
   }

   .hero-illustration {
    position: relative;
    order: 1;
    animation: none;
    top: 180px;
    right: 0;
   }

   .hero-content {
    order: 2;
   }


  .reservation-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .nav-links {
    display: none;
  }

  .apropos-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .apropos-photo-frame {
    max-width: 340px;
    margin: 0 auto;
  }

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

  .gal-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero-ctas {
    flex-direction: column;
  }

  nav {
    padding: 0 4%;
  }

  #hero {
    padding: 90px 5% 60px;
  }
}