:root {
  --color-bg: #faf3ea;
  --color-bg-alt: #f1e6d8;
  --color-text: #3b2a20;
  --color-text-muted: #6e5b4d;
  --color-wood: #8a5a3b;
  --color-terracotta: #c1623d;
  --color-terracotta-dark: #a14f30;
  --color-border: rgba(59, 42, 32, 0.15);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}

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

a { color: var(--color-terracotta-dark); text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 760px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0 0 0.5em;
  color: var(--color-text);
}

h2 { font-size: 2rem; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-terracotta-dark);
  margin: 0 0 0.5em;
}

.lead { font-size: 1.05rem; color: var(--color-text-muted); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 243, 234, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

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

.brand-font {
  font-family: 'Italianno', cursive;
  font-weight: 400;
}

.logo {
  font-size: 2.4rem;
  color: var(--color-text);
}

.main-nav { display: flex; align-items: center; gap: 28px; }

.main-nav a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.nav-cta {
  background: var(--color-terracotta);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--color-terracotta-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40, 26, 16, 0.35) 0%, rgba(40, 26, 16, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 96%;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 7.5vw, 6.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.15rem;
  margin: 0 auto 28px;
  max-width: 560px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-terracotta);
  color: #fff;
}

.btn-primary:hover { background: var(--color-terracotta-dark); }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--color-bg-alt); }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.badge i { color: var(--color-terracotta); font-size: 1.1rem; }

.review-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
}

.review-score {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-terracotta-dark);
  flex-shrink: 0;
}

.review-score span { font-size: 1.1rem; color: var(--color-text-muted); }

.review-text p { margin: 4px 0 0; color: var(--color-text-muted); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Amenities */
.amenities-grid {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.amenities-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-weight: 600;
}

.amenities-grid i { color: var(--color-terracotta); font-size: 1.4rem; }

/* Accès & sous-sections */
.subsection-title {
  font-size: 1.2rem;
  margin: 40px 0 16px;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.access-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
}

.access-card i {
  font-size: 1.8rem;
  color: var(--color-terracotta);
  display: block;
  margin-bottom: 10px;
}

.access-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.access-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.map-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: -8px 0 20px;
}

/* Distances */
.distances {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.distances li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.distances li span:last-child { color: var(--color-text-muted); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.form-row { display: flex; flex-direction: column; gap: 6px; }

.form-row label { font-weight: 700; font-size: 0.9rem; }

.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-terracotta);
}

.honeypot { position: absolute; left: -9999px; opacity: 0; }

#form-status {
  font-weight: 600;
  min-height: 1.2em;
}

#form-status.success { color: #4a7a3a; }
#form-status.error { color: var(--color-terracotta-dark); }

/* Footer */
.site-footer {
  background: var(--color-wood);
  color: #f1e6d8;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer a { color: #fff; }

@media (max-width: 768px) {
  .main-nav { display: none; }
  .logo { font-size: 2rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
}
