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

:root {
  --forest: #3d5a47;
  --sage: #6b8f71;
  --teal: #4a9099;
  --teal-lt: #7fbfc5;
  --cream: #f6f2ec;
  --linen: #f0ece4;
  --sand: #e2d9cc;
  --warm: #f9f7f3;
  --dark: #1a2520;
  --muted: #6b7c72;
  --rust: #b85c3a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  background: var(--warm);
  color: var(--dark);
  overflow-x: hidden;
}

/* LANG */
.lang-toggle {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  overflow: hidden;
}

.lang-btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  transition:
    background 0.2s,
    color 0.2s;
  font-family: "DM Sans", sans-serif;
}

.lang-btn.active {
  background: var(--teal);
  color: #fff;
}

html[lang="fr"] .en {
  display: none !important;
}

html[lang="en"] .fr {
  display: none !important;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3.5rem;
  background: rgba(26, 37, 32, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(107, 143, 113, 0.2);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.nav-logo-main {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.06em;
}

.nav-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-lt);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

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

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

.nav-cta {
  padding: 0.6rem 1.6rem;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition:
    background 0.3s,
    transform 0.2s;
}

.nav-cta:hover {
  background: #3a7f87;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(170deg, rgba(16, 24, 20, 0.72) 0%, rgba(30, 48, 37, 0.5) 58%, rgba(20, 30, 24, 0.18) 100%),
    url("images/hero.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.36));
  z-index: 1;
}

.hero-stripe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: repeating-linear-gradient(to bottom, var(--forest) 0, var(--forest) 20px, #fff 20px, #fff 30px);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5rem 5rem 6rem;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 144, 153, 0.22);
  border: 1px solid rgba(74, 144, 153, 0.45);
  padding: 0.38rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-lt);
  opacity: 0;
  animation: rise 0.8s 0.3s forwards;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: rise 0.9s 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal-lt);
}

.hero-desc {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  max-width: 480px;
  opacity: 0;
  animation: rise 0.9s 0.75s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  opacity: 0;
  animation: rise 0.9s 1s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

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

.btn-teal:hover {
  background: #3a7f87;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

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

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  background: rgba(15, 22, 18, 0.48);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  max-width: fit-content;
  margin: 0 0 4rem 6rem;
  opacity: 0;
  animation: rise 0.9s 1.2s forwards;
}

.hstat {
  padding: 1rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hstat:last-child {
  border-right: none;
}

.hstat-n {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.hstat-l {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  margin-top: 0.3rem;
}

/* BANNER */
.banner {
  background: var(--forest);
  padding: 1.1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.bitem {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.bitem-icon {
  color: var(--teal-lt);
}

.bdiv {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.12);
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-img {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s;
}

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

.about-badge {
  position: absolute;
  bottom: 2rem;
  right: 0;
  background: var(--forest);
  padding: 1.1rem 1.8rem;
  border-left: 3px solid var(--teal);
}

.about-badge p {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  color: #fff;
  font-style: italic;
}

.about-badge small {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-lt);
}

.about-text {
  background: var(--linen);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 0.67rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
  font-weight: 500;
  display: block;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--forest);
}

.about-text h2 em {
  color: var(--rust);
  font-style: italic;
}

.rule {
  width: 36px;
  height: 3px;
  background: var(--teal);
  margin: 1.6rem 0;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 400px;
}

.about-text p + p {
  margin-top: 1rem;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 250px 250px;
  gap: 3px;
}

.gi {
  overflow: hidden;
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  display: block;
}

.gi:hover img {
  transform: scale(1.06);
}

.gi-1 {
  grid-column: 1/6;
  grid-row: 1/3;
}

.gi-2 {
  grid-column: 6/9;
  grid-row: 1/2;
}

.gi-3 {
  grid-column: 9/13;
  grid-row: 1/2;
}

.gi-4 {
  grid-column: 6/10;
  grid-row: 2/3;
}

.gi-5 {
  grid-column: 10/13;
  grid-row: 2/3;
}

/* FEATURES */
.features {
  background: var(--warm);
  padding: 7rem 4rem;
}

.feat-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.feat-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
}

.feat-head p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  padding-top: 1rem;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(107, 143, 113, 0.15);
}

.feat-card {
  background: var(--warm);
  padding: 2.4rem 2rem;
  transition: background 0.3s;
  position: relative;
}

.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  background: var(--cream);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
  display: block;
}

.feat-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.feat-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
}

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-img {
  overflow: hidden;
  min-height: 440px;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s;
}

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

.split-text {
  background: var(--forest);
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text .eyebrow {
  color: var(--teal-lt);
}

.split-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
}

.split-text h2 em {
  color: var(--teal-lt);
}

.split-text .rule {
  background: var(--teal-lt);
  opacity: 0.5;
}

.split-text p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
}

.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.5rem;
  margin-top: 1.8rem;
  list-style: none;
}

.amenity-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.amenity-list li::before {
  content: "✓";
  color: var(--teal-lt);
  font-weight: 600;
  flex-shrink: 0;
}

/* PLAUDREN */
.plaudren {
  background: var(--cream);
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.plaudren-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.25;
}

.plaudren-text h2 em {
  font-style: italic;
  color: var(--teal);
}

.plaudren-text .rule {
  background: var(--teal);
}

.plaudren-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
}

.poi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}

.poi {
  background: #fff;
  border: 1px solid var(--sand);
  padding: 0.9rem 1.1rem;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.poi:hover {
  border-color: var(--teal);
  background: var(--linen);
}

.poi-name {
  font-size: 0.84rem;
  color: var(--forest);
  font-weight: 500;
}

.poi-dist {
  font-size: 0.74rem;
  color: var(--teal);
  margin-top: 0.15rem;
}

.plaudren-img {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.plaudren-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.plaudren-img-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(74, 144, 153, 0.35);
  pointer-events: none;
}

/* BOOKING */
.booking {
  background: var(--linen);
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--forest) 0, var(--forest) 36px, #fff 36px, #fff 52px);
}

.booking h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.8rem;
}

.booking h2 em {
  font-style: italic;
  color: var(--rust);
}

.booking-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
}

.booking-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.bcard {
  background: #fff;
  width: 300px;
  padding: 3rem 2.5rem;
  text-align: left;
  border: 1px solid var(--sand);
  text-decoration: none;
  color: var(--dark);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: block;
}

.bcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(26, 37, 32, 0.12);
}

.bcard-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.bcard-bar.ab {
  background: #ff5a5f;
}

.bcard-bar.dir {
  background: var(--teal);
}

.bcard-icon {
  font-size: 2rem;
  margin-bottom: 1.4rem;
  display: block;
}

.bcard-title {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.7rem;
}

.bcard-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.bcard-action {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.bcard-action.ab {
  color: #ff5a5f;
}

.bcard-action.dir {
  color: var(--teal);
}

.bcard-perks {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--sand);
  list-style: none;
}

.bcard-perks li {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.22rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bcard-perks li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 600;
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 3rem 3.5rem;
}

.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.foot-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #fff;
}

.foot-brand small {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-lt);
  margin-top: 2px;
  font-weight: 400;
}

.foot-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.foot-links a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.3s;
}

.foot-links a:hover {
  color: var(--teal-lt);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.foot-bottom p {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.18);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plaudren {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(170deg, rgba(16, 24, 20, 0.72) 0%, rgba(30, 48, 37, 0.5) 58%, rgba(20, 30, 24, 0.18) 100%),
      url("images/hero-720.webp") center/cover no-repeat;
  }

  nav {
    position: static;
    padding: 1rem 1.2rem;
  }

  .nav-logo-sub {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-right {
    gap: 0.6rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    padding: 0 1.5rem 4rem 2.5rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 3rem 2.5rem;
    max-width: 260px;
  }

  .hstat {
    padding: 0.8rem 1.1rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hstat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hstat:nth-child(n + 3) {
    border-bottom: none;
  }

  .about,
  .split {
    grid-template-columns: 1fr;
  }

  .about-img,
  .split-img {
    min-height: 270px;
    order: -1;
  }

  .about-text,
  .split-text {
    padding: 4rem 2rem;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 190px);
  }

  .gi-1 {
    grid-column: 1/3;
    grid-row: 1;
  }

  .gi-2 {
    grid-column: 1/2;
    grid-row: 2;
  }

  .gi-3 {
    grid-column: 2/3;
    grid-row: 2;
  }

  .gi-4 {
    grid-column: 1/2;
    grid-row: 3;
  }

  .gi-5 {
    grid-column: 2/3;
    grid-row: 3;
  }

  .features,
  .booking {
    padding: 5rem 1.5rem;
  }

  .feat-head {
    grid-template-columns: 1fr;
  }

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

  footer {
    padding: 2.5rem 1.5rem;
  }

  .banner {
    padding: 1rem 1.2rem;
    gap: 1rem;
  }

  .plaudren {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }

  .hstat-l {
    display: block;
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    line-height: 1.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
