:root {
  --ink: #141c16;
  --forest: #173023;
  --moss: #2c4a36;
  --leaf: #4d6b4a;
  --gold: #c9a25a;
  --gold-soft: #e8d3a0;
  --cream: #f3eee3;
  --paper: #faf7f0;
  --white: #fffdf8;
  --stone: #6d685e;
  --ash: #8c867b;
  --line: rgba(20, 28, 22, 0.12);
  --line-strong: rgba(20, 28, 22, 0.22);
  --shadow: 0 24px 60px rgba(20, 28, 22, 0.12);
  --shadow-soft: 0 10px 30px rgba(20, 28, 22, 0.08);
  --radius: 18px;
  --max: 1180px;
  --header-h: 84px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
}

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

a { color: inherit; }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--ink);
  padding: .6rem 1rem;
  z-index: 100;
}
.skip:focus { top: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  height: 52px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.brand-text span {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: absolute;
  left: 13px;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.nav a {
  text-decoration: none;
  font-size: .86rem;
  letter-spacing: .04em;
  padding: .55rem .7rem;
  border-radius: 999px;
  color: var(--ink);
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--forest);
  color: var(--cream);
}

.nav a.cta {
  background: var(--gold);
  color: var(--ink);
  font-weight: 500;
  margin-left: .4rem;
}

.nav a.cta:hover { background: var(--gold-soft); color: var(--ink); }

.nav a.nav-login {
  margin-left: .15rem;
  width: 38px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .55;
  border-radius: 50%;
}
.nav a.nav-login:hover,
.nav a.nav-login:focus {
  opacity: 1;
  background: var(--cream);
  color: var(--forest);
}

/* ---------- Banner ---------- */
.reopen {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reopen em {
  font-style: normal;
  color: var(--gold-soft);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 128px);
  min-height: 78vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  color: var(--cream);
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  animation: ken 22s ease-in-out infinite alternate;
}

@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 28, 22, .15) 0%, rgba(20, 28, 22, .35) 40%, rgba(14, 22, 16, .82) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.5rem;
}

.home .hero-copy .in-1,
.home .hero-copy .in-2,
.home .hero-copy .in-3,
.home .hero-copy .in-4 {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}
.home .hero-copy .in-1 { animation-delay: .15s; }
.home .hero-copy .in-2 { animation-delay: .35s; }
.home .hero-copy .in-3 { animation-delay: .55s; }
.home .hero-copy .in-4 { animation-delay: .75s; }

.scroll-hint {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.4rem;
  width: 26px;
  height: 42px;
  margin-left: -13px;
  border: 1.5px solid rgba(243,238,227,.55);
  border-radius: 16px;
}
.scroll-hint span {
  display: block;
  width: 5px;
  height: 5px;
  margin: 8px auto 0;
  background: var(--gold-soft);
  border-radius: 50%;
  animation: drop 1.6s ease-in-out infinite;
}
@keyframes drop {
  0% { opacity: 1; transform: translateY(0); }
  80% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 0; transform: translateY(16px); }
}

.marquee {
  overflow: hidden;
  background: var(--forest);
  color: var(--gold-soft);
  border-top: 1px solid rgba(243,238,227,.08);
  border-bottom: 1px solid rgba(243,238,227,.08);
}
.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: .85rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: .04em;
  animation: slide 28s linear infinite;
}
.marquee-track span { white-space: nowrap; }
.marquee-track span::before {
  content: "·";
  margin-right: 2.4rem;
  color: var(--gold);
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.card img {
  transition: transform .7s ease;
}
.card:hover img { transform: scale(1.06); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
  margin: .6rem 0 1rem;
  max-width: 14ch;
}

.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 42ch;
  color: rgba(243, 238, 227, .9);
  margin: 0 0 1.8rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
  border: 1px solid transparent;
  padding: .85rem 1.3rem;
  border-radius: 999px;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  background: var(--gold);
  color: var(--ink);
  font-family: inherit;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-1px); background: var(--gold-soft); }

.btn.ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 238, 227, .45);
}

.btn.ghost:hover { background: rgba(255,255,255,.08); }

.btn.dark {
  background: var(--forest);
  color: var(--cream);
}

.btn.dark:hover { background: var(--moss); }

.page-hero {
  position: relative;
  min-height: 46vh;
  display: grid;
  place-items: end start;
  color: var(--cream);
  overflow: hidden;
}

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

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,28,22,.2), rgba(14,22,16,.78));
}

.page-hero .hero-copy { padding: 5.5rem 1.25rem 2.4rem; }

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: .4rem 0 0;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 5rem 0; }

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.01em;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin: .35rem 0 .8rem;
}

.kicker {
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.5rem;
  align-items: center;
}

.split.reverse { grid-template-columns: .95fr 1.05fr; }
.split.reverse .copy { order: 2; }

.split img,
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media { min-height: 320px; }
.media img { min-height: 380px; }

.split h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin: .3rem 0 1rem;
}

.muted { color: var(--stone); }

/* ---------- Cards ---------- */
.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 1.2rem;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .7s ease;
}

.card .body { padding: 1.25rem 1.3rem 1.4rem; }

.card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin: 0 0 .45rem;
  font-weight: 600;
}

.card p { margin: 0; color: var(--stone); }

.card a.more {
  margin-top: 1rem;
  color: var(--moss);
  text-decoration: none;
  font-size: .9rem;
  letter-spacing: .04em;
}

.card a.more:hover { color: var(--forest); }

.icon-card {
  padding: 1.4rem 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.icon-card .num {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
}

.icon-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0 0 .5rem;
}

.icon-card p { margin: 0; color: var(--stone); }

/* ---------- Quote / Florian ---------- */
.portrait {
  background: var(--forest);
  color: var(--cream);
}

.portrait .split { align-items: start; }

.portrait .kicker { color: var(--gold-soft); }

.portrait h2 { color: var(--white); }

.quote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  margin: 0 0 1.2rem;
}

.sign {
  font-size: .92rem;
  letter-spacing: .04em;
}

.sign strong { display: block; color: var(--gold-soft); font-size: 1.05rem; }

.facts {
  display: grid;
  gap: 1rem;
}

.fact {
  border-top: 1px solid rgba(243,238,227,.18);
  padding-top: 1rem;
}

.fact b { display: block; font-weight: 500; }
.fact span { color: rgba(243,238,227,.75); font-size: .95rem; }

/* ---------- Band / CTA ---------- */
.band {
  background:
    linear-gradient(180deg, rgba(20,28,22,.55), rgba(20,28,22,.72)),
    url("../images/panorama-hiver.jpg") center/cover no-repeat;
  color: var(--cream);
  text-align: center;
}

.band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: .4rem auto 1rem;
  max-width: 18ch;
}

.band p { max-width: 46ch; margin: 0 auto 1.6rem; color: rgba(243,238,227,.88); }

/* ---------- Lists / tables ---------- */
.hours,
.prices {
  width: 100%;
  border-collapse: collapse;
}

.hours th,
.hours td,
.prices th,
.prices td {
  text-align: left;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.hours th,
.prices th { font-weight: 500; width: 46%; }

.note {
  background: #efe6cf;
  border-left: 4px solid var(--gold);
  padding: .9rem 1rem;
  border-radius: 0 12px 12px 0;
  color: var(--ink);
  font-size: .95rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1rem 0 0;
}

.chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: .3rem .7rem;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--moss);
}

/* ---------- Journey / scéno ---------- */
.journey {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.4rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.step:last-child { border-bottom: 1px solid var(--line); }

.step .n {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  margin: 0 0 .4rem;
}

.step p { margin: 0; color: var(--stone); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: .7rem;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.gallery img:first-child { grid-row: 1 / span 2; }

/* ---------- Form ---------- */
form {
  display: grid;
  gap: .9rem;
}

label {
  display: grid;
  gap: .35rem;
  font-size: .88rem;
  letter-spacing: .03em;
}

input,
select,
textarea {
  font: inherit;
  padding: .8rem .9rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(.15) contrast(1.05);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list b { display: block; font-weight: 500; }
.contact-list a { color: var(--moss); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(243,238,227,.82);
  padding: 3.2rem 0 1.6rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h3 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1.25rem;
  margin: 0 0 .8rem;
}

.site-footer a { color: var(--gold-soft); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: .35rem 0; }

.legal {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(243,238,227,.12);
  font-size: .82rem;
  color: rgba(243,238,227,.55);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Misc ---------- */
.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}

.partners img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(.2);
}

.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

.listing {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.4rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.listing:last-child { border-bottom: 0; }
.listing img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 14px;
  background: #ddd6c6;
}
.listing h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  margin: 0 0 .45rem;
}
.listing p { margin: 0 0 .7rem; }
.listing .meta {
  font-size: .92rem;
  color: var(--stone);
}
.listing .meta a { color: var(--moss); }
.topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin: 0 0 1.8rem;
}
.topic {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 168px;
  padding: 1.1rem 1.15rem;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  text-align: left;
  font: inherit;
  background: #1a2a1e;
}
.topic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.04);
  transition: transform .5s ease;
}
.topic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14,22,16,.15), rgba(14,22,16,.78));
}
.topic:hover img,
.topic.is-on img { transform: scale(1.1); }
.topic strong {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.15;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
.topic.is-on {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
#village-detail { scroll-margin-top: 110px; }
.panel { display: none; }
.panel.is-open {
  display: block;
  animation: fadeUp .45s ease;
}

@media (max-width: 900px) {
  .topics { grid-template-columns: 1fr 1fr; }
  .topic { min-height: 140px; }
}
@media (max-width: 560px) {
  .topics { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .listing { grid-template-columns: 1fr; }
  .listing img { height: 200px; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .8s ease forwards;
}
.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }
.reveal:nth-child(4) { animation-delay: .24s; }
.reveal:nth-child(5) { animation-delay: .32s; }
.reveal:nth-child(6) { animation-delay: .4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

.btn { transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.btn:hover { box-shadow: 0 8px 22px rgba(20,28,22,.18); }

.reopen em {
  display: inline-block;
  animation: softPulse 3.2s ease-in-out infinite;
}
@keyframes softPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .72; }
}

@media (prefers-reduced-motion: reduce) {
  .hero img.hero-bg,
  .reveal,
  .reopen em,
  .card,
  .home .hero-copy .in-1,
  .home .hero-copy .in-2,
  .home .hero-copy .in-3,
  .home .hero-copy .in-4,
  .marquee-track,
  .scroll-hint span { animation: none !important; transform: none !important; opacity: 1 !important; }
}

.small { font-size: .92rem; }

hr.soft {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}

@media (max-width: 1100px) {
  .brand-text { display: none; }
}

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split,
  .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .copy { order: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
  }
  .gallery img:first-child { grid-column: 1 / -1; grid-row: auto; height: 260px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: .6rem .8rem 1rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: .75rem .8rem; }
  .nav a.cta { margin-left: 0; text-align: center; }
  .grid-4,
  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: .4rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .brand img { height: 44px; }
}
