/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("./../images/headers/header-page-accueil.png") center/cover
    no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    105deg,
    rgba(14, 50, 60, 0.58) 0%,
    rgba(14, 50, 60, 0.42) 40%,
    rgba(14, 50, 60, 0.25) 70%,
    transparent 100%
  ); */
}
.hero-glow {
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(
      circle at 25% 50%,
      rgba(46, 196, 196, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 75% 80%,
      rgba(139, 114, 184, 0.08) 0%,
      transparent 45%
    ); */
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 3rem;
  align-items: center;
  padding: clamp(120px, 12vh, 160px) 3rem clamp(80px, 8vh, 120px);
}
.hero-left {
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
  box-shadow: 0 0 8px var(--cyan);
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 5px 9px 6px rgb(0 0 0);
}
.hero h1 em {
  color: var(--cyan-bright);
  font-style: italic;
  font-weight: 400;
  text-shadow: 3px 2px #333333;
}
.hero-desc {
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px #6997aa;
}
/* Hero pills — replace redundant stats */
.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgb(51 44 44 / 70%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: 0.3s;
}
.hero-pill:hover {
  background: rgba(255, 255, 255, 0.14);
}
.hero-pill-icon {
  font-size: 14px;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-cyan {
  padding: 15px 32px;
  background: var(--cyan);
  color: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(46, 196, 196, 0.5);
  transition: 0.3s;
  display: inline-block;
}
.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(46, 196, 196, 0.55);
  background: var(--cyan-deep);
}
.btn-ghost {
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Right — tilted image */
.hero-right {
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-showcase {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-img-tilt {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(
    135deg,
    rgb(123 181 181 / 80%),
    rgb(226 235 235 / 70%)
  );
  border-radius: 1.5rem;
  transform: rotate(-3deg);
}
.hero-img-main {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.hero-img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.hero-img-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 50%);
}
.hero-img-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hero-scroll {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 3s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1.5px;
  height: 36px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

/* ═══ STATS BAR ═══ */
.stats-bar-wrap {
  position: absolute;
  z-index: 10;
  padding: 0 0.5rem;
  width: 78%;
  place-self: center;
}
.stats-bar {
  max-width: 900px;
  margin: 0 auto;
  background: var(--stone-800);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.sb-item {
  padding: 1.6rem 1.2rem;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.sb-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.sb-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.sb-icon {
  font-size: 1.3rem;
  margin-bottom: 6px;
  display: block;
  opacity: 0.7;
}
.sb-val {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan-bright);
  line-height: 1;
  margin-bottom: 4px;
}
.sb-lbl {
  font-size: 0.72rem;
  color: var(--stone-400);
  letter-spacing: 0.3px;
}

/* ═══ GITES ═══ */
.gites {
  background: var(--stone-light);
  padding: 5rem 1.5rem 6rem;
}
.gites-inner {
  max-width: 1200px;
  margin: 3rem auto;
}
.sec-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.sec-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
}
.sec-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0;
}
.sec-line {
  height: 1px;
  width: 40px;
  background: rgba(46, 196, 196, 0.35);
}
.sec-dot {
  color: var(--cyan);
  font-size: 14px;
}
.sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}
.sec-desc {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.gites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.gite-visual {
  position: relative;
  margin-bottom: 1.75rem;
}
.gite-tilt {
  position: absolute;
  inset: -1rem;
  border-radius: 1.5rem;
  transform: rotate(-3deg);
}
.gite-tilt-turq {
  background: linear-gradient(135deg, #ccebe7, #e6f5f3);
}
.gite-tilt-lav {
  background: linear-gradient(135deg, #e8d5f5, #f3e8ff);
  transform: rotate(3deg);
}
.gite-img-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(46, 196, 196, 0.15);
}
.gite-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.gite-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--cyan);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}
.gite-loc {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.gite-info {
  padding: 0 0.5rem;
}
.gite-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.7rem;
}
.gite-info > p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.gite-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.gite-chip {
  font-size: 12px;
  padding: 5px 12px;
  background: var(--cyan-soft);
  color: var(--cyan-deep);
  border-radius: 50px;
  font-weight: 500;
}

.gite-link-content {
  gap: 30px;
  display: flex;
}

.gite-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
  transition: gap 0.3s;
}
.gite-link:hover {
  gap: 10px;
}

.gite-link-cystes {
  color: var(--cyan);
  border-bottom: 1.5px solid rgba(46, 196, 196, 0.35);
}

.gite-link-soleillou {
  color: var(--lavande);
  border-bottom: 1.5px solid rgba(139, 114, 184, 0.35);
}

.gite-link-cades {
  color: var(--gold);
  border-bottom: 1.5px solid rgba(200, 169, 110, 0.35);
}

.gite-link-farigoule {
  color: var(--sage);
  border-bottom: 1.5px solid rgba(45, 83, 60, 0.35);
}
/* ═══ PARALLAX ═══ */
.parallax {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.parallax-canyon-bg {
  background-image: url("./../images/headers/header-page-canyon.png");
}
.parallax-overlay-canyon {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 107, 96, 0.65),
    rgba(139, 114, 184, 0.45)
  );
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 0 2rem;
}
.parallax-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.parallax-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.9;
}
.parallax-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.ps-num {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #7efff5;
}
.ps-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

/* ═══ REGION (interactive) ═══ */
.region {
  background: var(--stone);
  padding: 6rem 1.5rem;
}
.region-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.region-tag {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.region-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--cyan);
  flex-shrink: 0;
}
.region-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.region-title em {
  color: var(--cyan);
}
.region-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.region-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--warm-white);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}
.region-item:hover,
.region-item.active {
  background: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--cyan);
  transform: translateX(4px);
}
.ri-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ri-num {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(46, 196, 196, 0.6);
  min-width: 24px;
}
.region-item.active .ri-num {
  color: var(--cyan);
}
.ri-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}
.ri-sub {
  font-size: 12px;
  color: var(--text-mid);
}
.ri-icon {
  font-size: 22px;
}
.region-btn {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--cyan);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(46, 196, 196, 0.3);
  transition: 0.3s;
}
.region-btn:hover {
  transform: translateY(-2px);
  background: var(--cyan-deep);
}
.region-visual {
  position: relative;
  padding: 1.5rem;
}
.rv-border-1 {
  position: absolute;
  inset: -1.5rem;
  border: 2px solid rgba(46, 196, 196, 0.4);
  border-radius: 1.5rem;
  transform: rotate(3deg);
  transition: all 0.5s;
}
.rv-border-2 {
  position: absolute;
  inset: -0.75rem;
  border: 2px solid rgba(46, 196, 196, 0.25);
  border-radius: 1.25rem;
  transform: rotate(-2deg);
  transition: all 0.5s;
}

.rv-img {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(46, 196, 196, 0.18);
  transition: box-shadow 0.5s;
}
.rv-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s;
}
.rv-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 50%);
}
.rv-loc {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  z-index: 2;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.rv-circle {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 60px;
  height: 60px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(46, 196, 196, 0.45);
  border: 4px solid white;
  z-index: 3;
  transition: all 0.5s;
}
.rv-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(46, 196, 196, 0.15);
  transition: all 0.4s;
}
.rv-float-val {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  transition: color 0.4s;
}
.rv-float-lbl {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 2px;
}

/* ═══ TEMOIGNAGES ═══ */

.testi {
  background: var(--warm-white);
  background-image: 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='%23c8a96e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 6rem 1.5rem;
}
.testi-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.testi-left {
  position: sticky;
  top: 2rem;
}
.testi-tag {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lavande);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.testi-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--lavande);
  flex-shrink: 0;
}
.testi-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.testi-title em {
  color: var(--lavande);
  font-style: italic;
}
.testi-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.testi-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testi-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1.4rem;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan, #5ee8e8);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.testi-more:hover {
  opacity: 0.75;
}

.tc {
  background: white;
  border-radius: 18px;
  padding: 2rem 2.2rem;
  border-left: 3px solid var(--lavande);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.tc:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.tc::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-size: 7rem;
  color: var(--lavande);
  opacity: 0.08;
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.tc-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}
.tc-av1 {
  background: rgba(46, 196, 196, 0.15);
  color: #1a8080;
}
.tc-av2 {
  background: rgba(139, 114, 184, 0.15);
  color: var(--lavande);
}
.tc-av3 {
  background: rgba(200, 169, 110, 0.15);
  color: #9a7a3a;
}
.tc-meta {
  flex: 1;
}
.tc-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}
.tc-date {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.tc-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}
.tc-mot {
  display: inline-block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--cyan, #5ee8e8);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .testi-left {
    position: static;
  }
}

/* ═══ CTA ═══ */
.cta {
  padding: 6rem 1.5rem;
  background: var(--stone-light);
}
.cta-box {
  max-width: 1140px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--cyan-deep) 0%, var(--cyan) 100%);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.cta-left {
  position: relative;
  z-index: 2;
}
.cta-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-left > p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.cta-savings {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 50px;
  color: #b3f0ee;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--cyan-deep);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.cta-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  transition: background 0.3s;
}
.price-row:hover {
  background: rgba(255, 255, 255, 0.16);
}
.price-season {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.price-val {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}
.price-unit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 4px;
}

/* ═══ SEO ═══ */
.seo {
  background: var(--stone);
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(45, 37, 32, 0.06);
}
.seo-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.seo-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.seo-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.seo-header h2 em {
  color: var(--cyan);
}
.seo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.seo-stat {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(45, 37, 32, 0.04);
  border: 1px solid rgba(46, 196, 196, 0.1);
}
.seo-stat-icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.seo-stat-val {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.seo-stat-lbl {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 4px;
  line-height: 1.4;
}
.seo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.seo-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(45, 37, 32, 0.04);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 37, 32, 0.04);
  transition: all 0.3s;
}
.seo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 37, 32, 0.06);
}
.seo-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.6;
}
.scb-1 {
  background: var(--cyan);
}
.scb-2 {
  background: var(--cyan-deep);
}
.scb-3 {
  background: var(--lavande);
}
.seo-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 1rem;
}
.sci-1 {
  background: var(--cyan-soft);
}
.sci-2 {
  background: rgba(14, 125, 136, 0.06);
}
.sci-3 {
  background: var(--lavande-soft);
}
.seo-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.seo-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.seo-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.2s;
}
.st-1 {
  background: var(--cyan-soft);
  color: var(--cyan);
  border: 1px solid rgba(46, 196, 196, 0.14);
}
.st-2 {
  background: rgba(14, 125, 136, 0.06);
  color: var(--cyan-deep);
  border: 1px solid rgba(14, 125, 136, 0.14);
}
.st-3 {
  background: var(--lavande-soft);
  color: var(--lavande);
  border: 1px solid rgba(139, 114, 184, 0.14);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    padding: 100px 1.5rem 80px !important;
  }
  .hero-right {
    display: none !important;
  }
  .sb-item {
    padding: 0.7rem 0.6rem;
  }
  .sb-icon {
    margin-bottom: 0;
  }
  .gites-grid,
  .region-grid,
  .testi-grid {
    grid-template-columns: 1fr !important;
  }
  .cta-box {
    grid-template-columns: 1fr !important;
  }
  .seo-cards {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav-mobile {
    display: block;
  }

  .rv-border-1 {
    inset: 0.5rem;
  }
  .rv-border-2 {
    inset: 0.25rem;
  }
}

@media (max-width: 1300px) {
  .stats-bar-wrap {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .sb-val {
    font-size: 1rem;
  }
  .seo-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-scroll {
    display: none;
  }
  .hero-pills {
    gap: 6px;
  }
  .hero-pill {
    padding: 6px 12px;
    font-size: 11px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
