/* =====================================
   OISANS VACANCES — BaseCampOS
   Custom theme styles
   ===================================== */

:root {
  --bg: #f5ede4;
  --fg: #1a1a16;
  --accent: #c55a3b;
  --green: #1a3d2e;
  --cream: #f5ede4;
  --warm-stone: #d4c5b0;
  --text-muted: #6a6050;
  --border: rgba(26,61,46,0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--warm-stone); border-radius: 3px; }

/* =====================================
   TYPOGRAPHY
   ===================================== */

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
}

/* =====================================
   HERO
   ===================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0e2a1e;
}

.hero__mountain-art {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__mountain-art svg {
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 8vw 12vh;
  max-width: 680px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,228,0.6);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero__sub {
  font-size: 1rem;
  color: rgba(245,237,228,0.75);
  line-height: 1.7;
  font-weight: 300;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 8vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,237,228,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollHintPulse 2.5s ease-in-out infinite;
}

@keyframes scrollHintPulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(4px); }
}

/* =====================================
   EXPERIENCES
   ===================================== */

.experiences {
  padding: 8rem 8vw;
  background: var(--bg);
}

.experiences__header {
  margin-bottom: 4rem;
}

.experiences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.experience-card {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 20px rgba(26,61,46,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(26,61,46,0.14);
}

.experience-card__bg {
  height: 220px;
  overflow: hidden;
}

.experience-card__bg svg {
  width: 100%;
  height: 100%;
}

.experience-card__content {
  padding: 2rem;
  background: #fff;
}

.experience-card__icon {
  color: var(--green);
  margin-bottom: 0.8rem;
}

.experience-card__season {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.experience-card__title {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.experience-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.experience-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.experience-card__list li {
  font-size: 0.82rem;
  color: var(--fg);
  padding-left: 1rem;
  position: relative;
}

.experience-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* =====================================
   PROPERTIES
   ===================================== */

.properties {
  padding: 8rem 8vw;
  background: var(--green);
  color: var(--cream);
}

.properties__intro {
  margin-bottom: 4rem;
  max-width: 600px;
}

.properties .section-label { color: rgba(245,237,228,0.6); }
.properties .section-title { color: var(--cream); }

.properties__desc {
  font-size: 1rem;
  color: rgba(245,237,228,0.7);
  line-height: 1.7;
}

.properties__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.property-card {
  background: rgba(245,237,228,0.06);
  border: 1px solid rgba(245,237,228,0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.property-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,237,228,0.25);
}

.property-card__image {
  height: 200px;
  overflow: hidden;
  background: #2d3d32;
}

.property-card__image svg {
  width: 100%;
  height: 100%;
}

.property-card__info {
  padding: 1.8rem;
}

.property-card__name {
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.property-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(245,237,228,0.55);
  margin-bottom: 1rem;
}

.property-card__meta .dot { opacity: 0.4; }

.property-card__desc {
  font-size: 0.85rem;
  color: rgba(245,237,228,0.65);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.property-card__cta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid rgba(197,90,59,0.4);
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

.properties__booking-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(245,237,228,0.5);
}

/* =====================================
   MANIFESTO
   ===================================== */

.manifesto {
  padding: 8rem 8vw;
  background: #ece3d8;
  text-align: center;
}

.manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto__quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--warm-stone);
  margin-bottom: 1rem;
  display: block;
}

.manifesto__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.manifesto__attribution {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: normal;
  margin-bottom: 4rem;
}

.manifesto__attribution span:first-child {
  font-weight: 500;
  color: var(--green);
  font-size: 0.95rem;
}

.manifesto__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--warm-stone);
}

.manifesto__pillar {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.manifesto__pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.manifesto__pillar-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =====================================
   CLOSING
   ===================================== */

.closing {
  padding: 8rem 8vw;
  background: var(--cream);
  text-align: center;
}

.closing__content {
  max-width: 640px;
  margin: 0 auto;
}

.closing__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.closing__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.closing__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.closing__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

/* =====================================
   FOOTER
   ===================================== */

.footer {
  background: var(--green);
  color: rgba(245,237,228,0.6);
  padding: 2.5rem 8vw;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.footer__tagline {
  font-size: 0.78rem;
  color: rgba(245,237,228,0.4);
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__link {
  font-size: 0.82rem;
  color: rgba(245,237,228,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__link:hover { color: var(--cream); }

.footer__cert {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
}

/* =====================================
   RESPONSIVE
   ===================================== */

@media (max-width: 900px) {
  .experiences__grid,
  .properties__grid {
    grid-template-columns: 1fr;
  }
  .manifesto__pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__content {
    padding: 0 6vw 10vh;
  }
}

@media (max-width: 600px) {
  .hero__title { font-size: 2.8rem; }
  .hero__scroll-hint { display: none; }
  .experiences, .properties, .manifesto, .closing {
    padding: 5rem 6vw;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__links { flex-wrap: wrap; gap: 1rem; }
}