/* =============================================================
   Réda Chraïbi — site styles
   Palette : noir profond, ivoire crème, or chaud
   ============================================================= */

:root {
  --black: #0b0b0d;
  --black-2: #111114;
  --ink: #1a1a1c;
  --cream: #f6efe1;
  --cream-2: #efe6d2;
  --gold: #c9a25e;
  --gold-2: #d8b779;
  --gold-soft: #a8884b;
  --text: #2b2b2b;
  --text-soft: #54534f;
  --line: rgba(201, 162, 94, .35);
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, .4);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease
}

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

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--ink);
  margin: 0 0 .6em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.1
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.15
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem)
}

p {
  margin: 0 0 1.1em
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px
}

.narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px
}

/* ---------- Top social bar ---------- */
.topbar {
  background: var(--black);
  border-bottom: 1px solid rgba(201, 162, 94, .25);
}

.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.topbar a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
}

.topbar a:hover {
  background: var(--gold);
  color: var(--black)
}

/* ---------- Header / Navigation ---------- */
header.site-header {
  background: var(--black);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(201, 162, 94, .15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  display: block;
  max-height: 70px;
  width: auto;
}

.menu {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
}

.menu a {
  color: #e9e5dc;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  transition: color .25s ease, border-color .25s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--gold);
  border-bottom-color: var(--gold)
}

/* Tighten progressively as the viewport narrows */
@media (max-width:1320px) {
  .menu {
    gap: 18px
  }

  .menu a {
    font-size: .7rem;
    letter-spacing: .15em
  }
}

@media (max-width:1180px) {
  .nav {
    padding: 14px 20px
  }

  .menu {
    gap: 14px
  }

  .menu a {
    font-size: .66rem;
    letter-spacing: .12em
  }

  .nav-logo {
    max-height: 40px
  }
}

.lang {
  /* border:1px solid var(--gold);color:var(--gold); */
  padding: 8px 14px;
  font-size: .7rem;
  letter-spacing: .25em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer
}

/* ---------- Language switcher dropdown ---------- */
.lang-switcher {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  text-align: center;
  padding-top: 0px;
}

.lang-switcher .lang-trigger {
  background: transparent;
  cursor: pointer;
  border: none;
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: .22em;
  padding: 6px 8px;
  font-family: inherit;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color .25s ease;
}

.lang-switcher .lang-trigger:hover,
.lang-switcher.open .lang-trigger {
  color: var(--gold-2)
}

.lang-switcher .lang-trigger .caret {
  font-size: .6rem;
  margin-left: 2px;
  transition: transform .3s ease;
}

.lang-switcher.open .lang-trigger .caret {
  transform: rotate(180deg)
}

.lang-switcher .lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  background: #0b0b0d;
  border: 1px solid var(--gold);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  z-index: 60;
  list-style: none;
  margin: 0;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .6);
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.lang-switcher .lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 18px;
  cursor: pointer;
  color: #e9e5dc;
  letter-spacing: .18em;
  font-size: .72rem;
  text-transform: uppercase;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: background .25s ease, color .25s ease;
}

.lang-switcher .lang-option:hover {
  background: rgba(201, 162, 94, .12);
  color: var(--gold)
}

.lang-switcher .lang-option.is-active {
  color: var(--gold)
}

.lang-switcher .lang-option .lo-code {
  color: var(--gold-soft);
  font-size: .68rem;
  letter-spacing: .22em;
}

.lang-switcher .lang-option.is-active .lo-code {
  color: var(--gold)
}

@media (max-width:980px) {
  .lang-switcher .lang-menu {
    left: 10%;
    right: 0
  }
}

/* Hide Google Translate UI artifacts */
#google_translate_element {
  display: none !important
}

/* Hide the top "Google · Traduit en · Afficher l'original" banner iframe */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
iframe.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
}

/* Google forces body { top: 40px } when the banner is visible — undo it */
body {
  top: 0 !important;
  position: static !important
}

html {
  margin-top: 0 !important
}

/* Hide other Google widget bits */
.goog-te-gadget-icon,
.goog-te-gadget-simple .goog-te-menu-value span,
.goog-te-gadget,
.goog-logo-link {
  display: none !important
}

/* Kill the hover tooltip + word highlights */
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
  border: none !important
}

html[dir="rtl"] body {
  text-align: right
}

@media (max-width:1080px) {
  .menu {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .menu.open {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 24px 28px;
    border-top: 1px solid var(--line);
    z-index: 55;
  }

  .menu.open a {
    font-size: .78rem;
    letter-spacing: .22em
  }

  .menu.open .lang-switcher {
    margin-top: 8px
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  /* background:linear-gradient(160deg,#0b0b0d 0%,#1a1410 60%,#241a0e 100%); */
  background-image: ;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201, 162, 94, .15), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(201, 162, 94, .08), transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 80px 28px
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  letter-spacing: .5em;
  font-size: .72rem;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow .line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 14px
}

.hero h1 {
  color: #fff;
  font-style: italic;
  font-weight: 300
}

.hero .author {
  margin-top: 18px;
  color: var(--gold);
  letter-spacing: .4em;
  font-size: .85rem;
  text-transform: uppercase;
}

.hero p.lead {
  color: #ddd4c1;
  max-width: 720px;
  margin: 30px auto 38px;
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 300;
}

.cta-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
}

.btn:hover {
  background: var(--gold);
  color: var(--black)
}

.btn.solid {
  background: var(--gold);
  color: var(--black)
}

.btn.solid:hover {
  background: var(--gold-2)
}

.btn .arrow {
  font-size: 1rem
}

/* ---------- Section primitives ---------- */
section {
  padding: 110px 0;
  position: relative
}

.section-light {
  background: var(--cream)
}

.section-cream {
  background: var(--cream-2)
}

.section-dark {
  background: var(--black);
  color: #e9e5dc
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff
}

.section-head {
  text-align: center;
  margin-bottom: 60px
}

.section-num {
  display: block;
  letter-spacing: .4em;
  font-size: .75rem;
  color: var(--gold);
  margin-bottom: 18px
}

.section-num::before,
.section-num::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 14px;
}

.title-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0
}

/* ---------- Two services teaser ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(201, 162, 94, .25);
  padding: 60px 40px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease;
}

.section-light .service-card {
  background: #fff;
  border-color: rgba(201, 162, 94, .4);
  box-shadow: var(--shadow)
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold)
}

.service-card .icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  letter-spacing: .08em
}

.section-light .service-card h3 {
  color: var(--ink)
}

.service-card .by {
  color: var(--gold);
  letter-spacing: .3em;
  font-size: .7rem;
  text-transform: uppercase
}

.service-card .more {
  margin-top: 30px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  align-items: center;
  justify-content: center;
}

.service-card:hover .more {
  background: var(--gold);
  color: var(--black)
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.stat {
  border: 1px solid var(--line);
  text-align: center;
  padding: 46px 20px;
  background: rgba(255, 255, 255, .4);
}

.stat .n {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--gold-soft);
  font-weight: 500
}

.stat .l {
  letter-spacing: .3em;
  font-size: .78rem;
  text-transform: uppercase;
  color: var(--text-soft)
}

/* ---------- Histoire / Two-col ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center
}

@media (max-width:900px) {
  .split {
    grid-template-columns: 1fr
  }
}

.split .label {
  letter-spacing: .4em;
  font-size: .75rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.split .label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold)
}

.split h2 {
  margin-bottom: 20px
}

.portrait-wrap {
  position: relative
}

.portrait-wrap .caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(11, 11, 13, .85);
  color: #fff;
  padding: 14px 22px;
  text-align: center;
  letter-spacing: .05em;
}

.portrait-wrap .caption .role {
  color: var(--gold);
  letter-spacing: .35em;
  font-size: .7rem;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.img-portrait {
  position: absolute;
}

.portrait-box {
  background: linear-gradient(135deg, #1a1410, #0b0b0d);
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(201, 162, 94, .18), transparent 50%),
    linear-gradient(135deg, #241a0e 0%, #0b0b0d 100%);
}

/* ---------- Philosophie (dark accent) ---------- */
.philo-quote {
  color: var(--gold-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-style: italic;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 50px
}

.value {
  border: 1px solid rgba(201, 162, 94, .35);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(201, 162, 94, .04);
}

.value .ic {
  color: var(--gold);
  font-size: 1.4rem;
  width: 36px;
  text-align: center
}

.value .t {
  letter-spacing: .05em;
  color: #f0e8d6
}

/* ---------- Services detail list ---------- */
.service-detail {
  border: 1px solid rgba(201, 162, 94, .35);
  padding: 48px 44px;
  background: rgba(255, 255, 255, .02);
}

.section-light .service-detail {
  background: #fff;
  border-color: rgba(201, 162, 94, .4);
  box-shadow: var(--shadow)
}

.service-detail h3 {
  letter-spacing: .18em;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 8px
}

.section-light .service-detail h3 {
  color: var(--ink)
}

.service-detail .underline {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 30px
}

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

.service-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  color: #e9e5dc;
}

.section-light .service-list li {
  color: var(--text)
}

.service-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 600;
  font-size: .95rem;
  margin-top: 2px;
}

.service-list li .lic {
  color: var(--gold);
  margin-right: 6px
}

.service-detail .more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  margin-top: 30px;
  letter-spacing: .3em;
  font-size: .78rem;
  text-transform: uppercase;
}

/* ---------- Témoignages ---------- */
.testimonial {
  background: #fff;
  border-left: 4px solid var(--gold);
  padding: 36px 38px;
  margin: 0 0 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  left: 24px;
  top: -6px;
  line-height: 1;
  opacity: .5;
}

.testimonial p {
  font-style: italic;
  color: #3a3a38;
  padding-left: 46px
}

.testimonial .who {
  display: block;
  margin-top: 14px;
  color: var(--gold-soft);
  letter-spacing: .2em;
  font-size: .78rem;
  text-transform: uppercase;
  padding-left: 46px;
}

/* ---------- Échos médiatiques ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.press-logo {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  padding: 30px 20px;
  text-align: center;
  border-radius: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: #444;
  box-shadow: 0 6px 20px -10px rgba(0, 0, 0, .15);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: fadeInUp .6s ease-out both;
}

.press-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .25)
}

.press-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px
}

.press-card {
  background: transparent;
  border: none;
  border-radius: 8px;
  box-shadow: none;
  transition: transform .4s cubic-bezier(.34, .1, .68, 1), filter .4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  animation: fadeInUp .8s ease-out backwards;
}

.press-card:nth-child(1) {
  animation-delay: .1s
}

.press-card:nth-child(2) {
  animation-delay: .2s
}

.press-card:nth-child(3) {
  animation-delay: .3s
}

.press-card:nth-child(4) {
  animation-delay: .4s
}

.press-card:hover {
  transform: translateY(-12px) scale(1.03);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .15))
}

.press-card img {
  width: 100%;
  height: 320px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  transition: transform .4s ease;
}

.press-card:hover img {
  transform: scale(1.05)
}

.press-card .card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #f5f5f5
}

.press-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.press-card .card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.press-card .src {
  color: var(--gold-soft);
  letter-spacing: .25em;
  font-size: .7rem;
  text-transform: uppercase;
  margin-bottom: 10px
}

.press-card .ttl {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
  flex-grow: 1
}

.press-card .lnk {
  color: var(--gold-soft);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: auto
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 12px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform .3s ease;
}

.faq-item[open] summary::after {
  content: "−"
}

.faq-item .a {
  padding: 0 28px 22px;
  color: var(--text-soft)
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(201, 162, 94, .25);
  box-shadow: var(--shadow);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px)
}

.blog-card .thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #241a0e, #0b0b0d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  padding: 30px;
  text-align: center;
}

.blog-card .thumb.alt {
  background: linear-gradient(135deg, #3a2a14, #1a1410)
}

.blog-card .body {
  padding: 28px 26px
}

.blog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px
}

.blog-card .excerpt {
  color: var(--text-soft);
  font-size: .95rem
}

.blog-card .read {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  margin-top: 14px;
  letter-spacing: .25em;
  font-size: .74rem;
  text-transform: uppercase;
}

.article-body p {
  margin-bottom: 1.3em;
  color: #3a3a38;
  font-size: 1.05rem
}

.article-body h2,
.article-body h3 {
  margin-top: 1.8em
}

.article-body img {
  margin: 30px 0;
  border: 1px solid var(--line)
}

.article-meta {
  color: var(--gold-soft);
  letter-spacing: .3em;
  font-size: .78rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center
}

.article-figure {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
  margin: 36px 0 44px;
}

@media (max-width:760px) {
  .article-figure {
    grid-template-columns: 1fr
  }
}

.article-figure .ph {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #241a0e, #0b0b0d);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px
}

@media (max-width:820px) {
  .contact-grid {
    grid-template-columns: 1fr
  }
}

.contact-info p {
  color: #d9d2c2
}

.contact-info .row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #f0e8d6
}

.contact-info .row .ic {
  color: var(--gold);
  width: 24px;
  text-align: center
}

.contact-form {
  display: grid;
  gap: 16px;
  position: relative
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  color: #fff;
  padding: 14px 18px;
  font-family: inherit;
  font-size: .95rem;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold)
}

/* Inline status message under the form */
.contact-form .form-status {
  min-height: 0;
  font-size: .92rem;
  letter-spacing: .02em;
  line-height: 1.6;
  padding: 0;
  transition: padding .3s ease, background .3s ease, color .3s ease;
}

.contact-form .form-status.is-success,
.contact-form .form-status.is-error,
.contact-form .form-status.is-loading {
  padding: 14px 18px;
  border: 1px solid transparent
}

.contact-form .form-status.is-success {
  color: #d3c79d;
  background: rgba(201, 162, 94, .08);
  border-color: rgba(201, 162, 94, .4);
}

.contact-form .form-status.is-error {
  color: #f7c8c8;
  background: rgba(220, 80, 80, .08);
  border-color: rgba(220, 80, 80, .45);
}

.contact-form .form-status.is-loading {
  color: #cfc6b1;
  background: rgba(255, 255, 255, .04);
  border-color: var(--line);
}

/* Submit button states */
.contact-form button.is-loading {
  opacity: .7;
  cursor: wait;
  pointer-events: none
}

.contact-form button[disabled] {
  opacity: .7;
  cursor: not-allowed
}

/* ---------- Floating buttons ---------- */
.float-btns {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}

.float-btns a,
.float-btns button {
  left: 3%;
  pointer-events: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  /* bottom: 24px; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .5);
}

.float-btns .home {
  background: var(--gold);
  color: var(--black)
}

.float-btns .wa {
  background: #25d366;
  right: 1%;
}

.float-btns .wa .label {
  position: absolute;
  right: 64px;
  background: rgba(11, 11, 13, .9);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .78rem;
  white-space: nowrap;
  letter-spacing: .05em;
  pointer-events: none;
}

a.wa {
  position: relative;
  right: 4% !important;
  left: 96%;
}

/* =============================================================
   FLOATING BOTTOM BUTTON — reopens welcome modal (icon circle
   ============================================================= */
.services-fab {
  position: fixed;
  right: 98%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 55;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-2);
  color: #000;
  border: 1px solid var(--gold-2);
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .6), 0 0 0 0 rgba(201, 162, 94, .4);
  transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
  animation: fabPulse 2.6s ease-in-out infinite;
}

/* Hide the inner label — circle button uses the icon only */
.services-fab span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.services-fab:hover {
  background: var(--gold);
  color: #0a0a0c;
  transform: translateX(-50%) translateY(-4px) rotate(20deg);
  box-shadow: 0 22px 50px -16px rgba(201, 162, 94, .55);
  animation: none;
}

@keyframes fabPulse {

  0%,
  100% {
    box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .6), 0 0 0 0 rgba(201, 162, 94, .45)
  }

  50% {
    box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .6), 0 0 0 10px rgba(201, 162, 94, 0)
  }
}

@media (max-width:560px) {
  .services-fab {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
    bottom: 18px;
    left: 10%;
  }

  a.wa {
    position: sticky;
    right: 4% !important;
    left: 90%;
  }

  .float-btns button {
    left: 10%;
  }

}


/* ---------- Footer ---------- */
footer.site-footer {
  background: #000;
  color: #bcb4a3;
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px
}

@media (max-width:840px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:540px) {
  .footer-grid {
    grid-template-columns: 1fr
  }
}

.footer-grid h4 {
  color: #fff;
  letter-spacing: .22em;
  font-size: .85rem;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: inherit;
  font-weight: 500
}

.footer-grid a {
  color: #bcb4a3;
  display: block;
  padding: 6px 0;
  font-size: .9rem
}

.footer-grid a:hover {
  color: var(--gold)
}

.footer-grid .brand {
  color: #fff;
  margin-bottom: 18px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .8rem;
  color: #7d7669;
  letter-spacing: .05em;
}

.footer-bottom .socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

/* ---------- Anim ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fade-up {
  animation: fadeUp .9s ease both
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ---------- Utility ---------- */
.gold {
  color: var(--gold)
}

.center {
  text-align: center
}

.mt-0 {
  margin-top: 0
}

.mb-0 {
  margin-bottom: 0
}

/* =============================================================
   ROUND 2 — additional component styles
   ============================================================= */

/* ---------- Loading screen ---------- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden
}

#loader .line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto
}

#loader .brand {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  letter-spacing: .42em;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 400;
}

#loader .bar {
  width: 220px;
  height: 1px;
  background: rgba(201, 162, 94, .2);
  position: relative;
  overflow: hidden;
  margin: 30px auto 18px;
}

#loader .bar::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loadbar 1.6s ease-in-out infinite;
}

@keyframes loadbar {
  0% {
    left: -40%
  }

  100% {
    left: 100%
  }
}

#loader .ch {
  color: var(--gold);
  letter-spacing: .4em;
  font-size: .7rem;
  text-transform: uppercase
}

/* ---------- Hero with Morocco map ---------- */
.hero.hero-map {
  min-height: 100vh;
  text-align: center;
  color: #fff;
  /* Background image (hero photo) with subtle black overlay */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../assets/marrakech-home-slide.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero.hero-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 24%, rgba(255, 215, 140, .35) 1px, transparent 1.5px),
    radial-gradient(circle at 82% 32%, rgba(255, 215, 140, .25) 1px, transparent 1.5px),
    radial-gradient(circle at 68% 78%, rgba(255, 215, 140, .28) 1px, transparent 1.5px),
    radial-gradient(circle at 28% 88%, rgba(255, 215, 140, .2) 1px, transparent 1.5px),
    radial-gradient(circle at 88% 64%, rgba(255, 215, 140, .22) 1px, transparent 1.5px),
    radial-gradient(circle at 6% 60%, rgba(255, 215, 140, .18) 1px, transparent 1.5px);
  pointer-events: none;
}

.hero-map .inner {
  position: relative;
  z-index: 3;
  padding: 72px 24px;
  max-width: 900px;
  margin: 0 auto
}

.hero-map .hero-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 0
}

.hero-map .hero-logo {
  display: block;
  margin: 0 auto 28px;
  max-width: 320px;
  width: 100%;
  height: auto
}

.hero-map .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  letter-spacing: .45em;
  font-size: .78rem;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative
}

.hero-map .eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  vertical-align: middle
}

.hero-map h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin: 0 auto 22px;
  max-width: 760px;
  font-weight: 300;
  letter-spacing: .02em
}

.hero-map .lead {
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 0 auto 34px;
  max-width: 680px
}

.hero-map .cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all .3s ease
}

.btn:hover {
  background: var(--gold);
  color: var(--black)
}

.btn.solid {
  background: var(--gold);
  color: var(--black)
}

.btn.solid:hover {
  background: var(--gold-2)
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 7, 6, .85);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 120;
}

.modal-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto
}

.modal {
  width: min(100%, 720px);
  max-width: 760px;
  background: rgba(11, 9, 8, .98);
  border: 1px solid rgba(201, 162, 94, .2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .55);
  padding: 34px;
  position: relative;
  border-radius: 18px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.modal-head span {
  display: block;
  color: var(--gold);
  letter-spacing: .35em;
  font-size: .75rem;
  text-transform: uppercase;
  margin-bottom: 12px
}

.modal-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0;
  color: #fff;
  line-height: 1.1
}

.modal-body {
  margin-top: 26px
}

.modal-body .modal-copy {
  margin-top: 20px;
  color: rgba(255, 255, 255, .76);
  font-size: 1rem;
  line-height: 1.9
}

.modal-map {
  margin: 0 auto;
  max-width: 580px;
  height: auto
}

.modal-map img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45)
}

.modal-map .map-city {
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  font-style: italic
}

.map-city.fes {
  bottom: 16%;
  left: 14%
}

.map-city.mar {
  top: 24%;
  right: 10%
}

.map-city.mek {
  bottom: 26%;
  right: 8%
}

@media (max-width:720px) {
  .hero-map h1 {
    font-size: 2.6rem
  }

  .hero-map .lead {
    font-size: .98rem
  }

  .modal {
    padding: 24px
  }

  .modal-head h2 {
    font-size: 2rem
  }
}

/* ---------- Nos Services (3 numbered cards) ---------- */
.services-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.svc {
  border: 1px solid rgba(201, 162, 94, .25);
  padding: 36px 30px 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(201, 162, 94, .02));
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}

.svc:hover {
  transform: translateY(-6px);
  border-color: var(--gold)
}

.svc .num {
  color: var(--gold-soft);
  letter-spacing: .3em;
  font-size: .7rem;
  font-family: inherit;
  display: block;
  margin-bottom: 24px;
}

.svc .ic-box {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.svc h3 {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: .1em;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
}

.svc p {
  color: #cfc6b1;
  font-size: .95rem
}

.svc ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px
}

.svc ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 6px 0;
  color: #e4dcc8;
  font-size: .92rem;
}

.svc ul li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 600;
  font-size: .85rem;
  margin-top: 2px;
}

.svc .more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  letter-spacing: .3em;
  font-size: .74rem;
  text-transform: uppercase;
}

/* ---------- Philosophie pills ---------- */
.values-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201, 162, 94, .4);
  background: rgba(201, 162, 94, .04);
  padding: 13px 22px;
  color: #f0e8d6;
  font-size: .95rem;
}

.pill .ic {
  color: var(--gold)
}

.philo-after {
  margin-top: 46px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
  text-align: center;
}

.philo-after .label {
  color: var(--gold);
  letter-spacing: .3em;
  font-size: .78rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.philo-after p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: #d9d2c2;
}

/* ---------- Conciergerie photo hero card ---------- */
.cn-card {
  position: relative;
  border: 1px solid rgba(201, 162, 94, .25);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 36px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .78)),
    radial-gradient(ellipse at 20% 30%, rgba(201, 162, 94, .3), transparent 55%),
    linear-gradient(135deg, #1a1410 0%, #0b0b0d 70%, #241a0e 100%);
}

.cn-card h2 {
  color: #fff;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: .04em;
}

.cn-card .by {
  color: var(--gold);
  letter-spacing: .42em;
  font-size: .78rem;
  text-transform: uppercase;
  margin: 8px 0 24px;
}

.cn-card .underline {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 26px
}

.cn-card p {
  color: #d9d2c2;
  max-width: 600px;
  margin: 0 auto 28px
}

.cn-card .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center
}

/* ---------- Testimonial cards (star/header style) ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px
}

.testi {
  background: rgba(201, 162, 94, .04);
  border: 1px solid rgba(201, 162, 94, .3);
  padding: 30px 28px;
  color: #e9e5dc;
  transition: transform .3s ease, border-color .3s ease;
}

.testi:hover {
  transform: translateY(-4px);
  border-color: var(--gold)
}

.testi .tag {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 1.15rem;
  text-transform: uppercase;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 162, 94, .3);
  margin-bottom: 18px;
}

.testi .stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .2em;
  margin-bottom: 18px
}

.testi blockquote {
  margin: 0;
  font-style: italic;
  color: #d9d2c2;
  line-height: 1.65;
  font-size: .98rem;
}

/* ---------- Press logos (cards w/ brand color) ---------- */
.press-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px
}

.press-tile {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  padding: 10px 22px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 22px -10px rgba(0, 0, 0, .18);
  transition: transform .3s cubic-bezier(.34, .1, .68, 1), box-shadow .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  animation: fadeInUp .6s ease-out backwards;
  text-decoration: none;
}

a.press-tile {
  cursor: pointer;
  outline-offset: 3px
}

.press-tile:nth-child(1) {
  animation-delay: 0s
}

.press-tile:nth-child(2) {
  animation-delay: .1s
}

.press-tile:nth-child(3) {
  animation-delay: .15s
}

.press-tile:nth-child(4) {
  animation-delay: .2s
}

.press-tile:nth-child(5) {
  animation-delay: .25s
}

.press-tile:nth-child(6) {
  animation-delay: .3s
}

.press-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, .25)
}

.press-tile img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  transition: transform .3s ease
}

.press-tile:hover img {
  transform: scale(1.08)
}

.press-tile .lo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.lo.lematin {
  color: #222
}

.lo.lematin em {
  color: #c9a25e;
  font-style: normal;
  font-size: .85rem
}

.lo.lopinion {
  color: #162d63
}

.lo.lopinion .a {
  color: #c01a1a
}

.lo.hespress {
  color: #1f3aa6;
  font-weight: 700;
  letter-spacing: .06em;
  font-family: Arial, sans-serif
}

.lo.lesite {
  color: #222;
  font-family: Arial, sans-serif;
  font-weight: 700
}

.lo.lesite .red {
  color: #d31f1f;
  font-style: italic
}

.lo.lodj {
  color: #0a0a0a;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .08em
}

.lo.telquel {
  color: #0a0a0a;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-style: italic
}

.lo.hola {
  background: #d31f1f;
  color: #fff;
  padding: 6px 14px;
  font-style: italic;
  font-weight: 700
}

.lo.luxe {
  color: #0a0a0a;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .05em
}

.lo.luxe small {
  display: block;
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .2em;
  color: #666;
  margin-top: 2px
}

/* ---------- Mobile menu overlay ---------- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #0b0b0d;
  display: none;
  flex-direction: column;
  padding: 80px 28px 40px;
  overflow-y: auto;
}

.mobile-overlay.open {
  display: flex
}

.mobile-overlay .close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-overlay .m-label {
  text-align: center;
  color: #fff;
  letter-spacing: .45em;
  font-size: .85rem;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
}

.mobile-overlay .m-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 30px
}

.mobile-overlay a.mlink {
  display: block;
  text-align: center;
  color: #e9e5dc;
  padding: 16px 0;
  letter-spacing: .32em;
  font-size: .86rem;
  text-transform: uppercase;
}

.mobile-overlay a.mlink:hover {
  color: var(--gold)
}

.mobile-overlay .m-contact {
  margin-top: 30px;
  text-align: center
}

.mobile-overlay .m-contact a {
  display: block;
  color: #e9e5dc;
  padding: 10px 0;
  letter-spacing: .18em;
  font-size: .85rem;
}

.mobile-overlay .m-contact i {
  color: var(--gold);
  margin-right: 8px
}

.mobile-overlay .m-juri {
  margin-top: 30px;
  text-align: center;
  color: #e9e5dc
}

.mobile-overlay .m-juri .lbl {
  color: #fff;
  letter-spacing: .45em;
  font-size: .85rem;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  margin-bottom: 10px
}

.mobile-overlay .m-juri a {
  display: block;
  color: #999185;
  padding: 8px 0;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase
}

/* ---------- Quote callout ---------- */
.quote-callout {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.quote-callout .lbl {
  color: var(--gold);
  letter-spacing: .3em;
  font-size: .78rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.quote-callout p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  color: #e9e5dc;
  line-height: 1.5;
}



/* ── Philosophy ── */
.philosophy-sec {
  padding: 7rem 0;
}

.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.phil-grid.rev {
  direction: rtl
}

.phil-grid.rev>* {
  direction: ltr
}

.phil-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem
}

.phil-text p {
  font-size: .92rem;
  line-height: 1.9;
  color: var(--tm);
  margin-bottom: 1.1rem
}

.phil-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.75rem
}

.chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.1rem;
  border: 1px solid var(--border);
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--tl);
  transition: var(--t)
}

.chip:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.chip .ci {
  color: var(--gold);
  font-size: .9rem
}

.phil-img {
  position: relative
}

.phil-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(.85)
}

.phil-img::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--gold);
  z-index: -1
}

.phil-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tm);
  background: rgba(6, 6, 6, .8);
  padding: .4rem .8rem;
  font-family: var(--sans)
}



/* Cream philosophy */
.philosophy-sec.light {
  background: var(--cream);
  color: var(--tb)
}

.philosophy-sec.light .phil-text p {
  color: #585858
}

.philosophy-sec.light .chip {
  border-color: #d4c9a8;
  color: var(--tb)
}


/* =============================================================
   ÉCHOS MÉDIATIQUES — refined press section
   ============================================================= */
.echos-section {
  padding: 120px 0
}

.echos-section .section-head {
  margin-bottom: 60px
}

.echos-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: .04em;
  margin-bottom: 18px;
}

.echos-section .echos-subtitle {
  color: var(--gold);
  font-family: "Jost", sans-serif;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-size: .82rem;
  margin: 0 0 6px;
  font-weight: 400;
}

.echos-section .title-line {
  margin-top: 28px
}

.echos-section .echos-intro {
  margin: 32px auto 0;
  color: var(--text-soft);
  max-width: 680px;
  line-height: 1.85;
  font-size: 1rem;
}

/* Press logos row */
.echos-section .press-grid-v2 {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.echos-section .press-tile {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .04);
  border-radius: 12px;
  min-height: 100px;
  padding: 22px 26px;
  box-shadow: 0 10px 28px -14px rgba(0, 0, 0, .18);
  transition: transform .4s cubic-bezier(.34, .1, .68, 1),
    box-shadow .4s ease,
    border-color .4s ease;
}

.echos-section .press-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px -16px rgba(0, 0, 0, .25);
  border-color: rgba(201, 162, 94, .4);
}

.echos-section .press-tile img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  transition: transform .4s ease, filter .4s ease;
  filter: grayscale(20%);
}

.echos-section .press-tile:hover img {
  transform: scale(1.08);
  filter: grayscale(0);
}

/* Press article cards — simple image-only */
.echos-section .press-cards {
  margin-top: 70px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.echos-section .press-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: #0f0f10;
  box-shadow: 0 14px 36px -18px rgba(0, 0, 0, .28);
  transition: transform .45s cubic-bezier(.34, .1, .68, 1),
    box-shadow .45s ease;
}

.echos-section .press-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px -20px rgba(0, 0, 0, .45);
}

.echos-section .press-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  transition: transform .7s cubic-bezier(.34, .1, .68, 1), filter .5s ease;
  filter: brightness(.96);
}

.echos-section .press-card:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

@media (max-width:720px) {
  .echos-section {
    padding: 80px 0
  }

  .echos-section .press-cards {
    margin-top: 50px;
    gap: 22px
  }

  .echos-section .press-tile {
    min-height: 110px;
    padding: 18px 20px
  }

  .echos-section .press-tile img {
    max-height: 60px
  }

  .echos-section .echos-subtitle {
    font-size: .72rem;
    letter-spacing: .26em
  }
}


/* =============================================================
   WELCOME MODAL — full-screen service selector (with map)
   ============================================================= */
.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0a0a0c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .5s ease, visibility .5s ease;
}

.welcome-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.welcome-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 215, 140, .35) 1px, transparent 1.5px),
    radial-gradient(circle at 82% 26%, rgba(255, 215, 140, .25) 1px, transparent 1.5px),
    radial-gradient(circle at 68% 72%, rgba(255, 215, 140, .3) 1px, transparent 1.5px),
    radial-gradient(circle at 24% 84%, rgba(255, 215, 140, .22) 1px, transparent 1.5px),
    radial-gradient(circle at 92% 64%, rgba(255, 215, 140, .25) 1px, transparent 1.5px),
    radial-gradient(circle at 6% 60%, rgba(255, 215, 140, .2) 1px, transparent 1.5px),
    radial-gradient(circle at 50% 8%, rgba(255, 215, 140, .18) 1px, transparent 1.5px),
    radial-gradient(circle at 40% 94%, rgba(255, 215, 140, .22) 1px, transparent 1.5px);
}

.welcome-modal::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 162, 94, .12), transparent 60%),
    radial-gradient(ellipse at 50% 70%, rgba(201, 162, 94, .06), transparent 65%);
}

.welcome-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 5;
  background: none;
  border: 1px solid rgba(201, 162, 94, .4);
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.welcome-close:hover {
  background: var(--gold);
  color: #0a0a0c;
  transform: rotate(90deg)
}

.welcome-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease .15s, transform .7s ease .15s;
}

.welcome-modal.open .welcome-inner {
  opacity: 1;
  transform: none
}

.welcome-map {
  margin-bottom: 20px;
  max-width: 155px
}

.welcome-map img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(201, 162, 94, .35));
  animation: wMapFloat 6s ease-in-out infinite;
}

@keyframes wMapFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* ---- Modal map scene — wider wrapper for floating city labels ---- */
.welcome-map-scene {
  position: relative;
  width: min(380px, 96vw);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-map-scene .welcome-map {
  margin: 0
}

/* ── Modal floating city labels — per-city paths & sizes ─── */
.mcl {
  position: absolute;
  left: var(--l);
  top: var(--t);
  color: rgba(201, 162, 94, 1);
  font-family: 'Jost', sans-serif;
  font-size: .46rem;
  letter-spacing: .42em;
  font-weight: 300;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform-origin: center bottom;
}

.mcl.mcl-l {
  transform: translateX(-100%);
  transform-origin: center bottom;
}

/* Per-city: unique size + animation delay baked in */
.welcome-modal.open .mcl-tanger {
  font-size: .44rem;
  animation: mclTanger 1.9s ease-out .20s forwards
}

.welcome-modal.open .mcl-fes {
  font-size: .40rem;
  animation: mclFes 3.0s ease-out .33s forwards
}

.welcome-modal.open .mcl-rabat {
  font-size: .48rem;
  animation: mclRabat 2.2s ease-out .46s forwards
}

.welcome-modal.open .mcl-casa {
  font-size: .52rem;
  animation: mclCasa 2.0s ease-out .59s forwards
}

.welcome-modal.open .mcl-marrakech {
  font-size: .43rem;
  animation: mclMarrakech 2.3s ease-out .72s forwards
}

.welcome-modal.open .mcl-agadir {
  font-size: .41rem;
  animation: mclAgadir 2.5s ease-out .85s forwards
}

.welcome-modal.open .mcl-laayoune {
  font-size: .38rem;
  animation: mclLayoune 2.8s ease-out .98s forwards
}

.welcome-modal.open .mcl-dakhla {
  font-size: .36rem;
  animation: mclDakhla 2.6s ease-out 1.11s forwards
}

/* Tanger — Mediterranean port, drifts westward toward the Strait */
@keyframes mclTanger {
  0% {
    opacity: 0;
    transform: translateX(16px) translateY(4px) scale(.08);
    font-weight: 300;
    text-shadow: none
  }

  8% {
    opacity: 1;
    transform: translateX(0) translateY(-5px) scale(1.06);
    font-weight: 700;
    text-shadow: 0 0 12px rgba(255, 215, 100, .85), 0 0 24px rgba(201, 162, 94, .4)
  }

  22% {
    opacity: .9;
    transform: translateX(-4px) translateY(-8px) scale(1);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(201, 162, 94, .25)
  }

  60% {
    opacity: .28;
    transform: translateX(-11px) translateY(-20px) scale(1);
    font-weight: 400;
    text-shadow: none
  }

  100% {
    opacity: 0;
    transform: translateX(-18px) translateY(-34px) scale(.9);
    font-weight: 300;
    text-shadow: none
  }
}

/* Fès — ancient imperial city, dignified, barely moves */
@keyframes mclFes {
  0% {
    opacity: 0;
    transform: translateY(3px) scale(.15);
    font-weight: 300;
    text-shadow: none
  }

  15% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(210, 160, 70, .8), 0 0 20px rgba(180, 130, 50, .4)
  }

  42% {
    opacity: .82;
    transform: translateY(-7px) scale(1);
    font-weight: 500;
    text-shadow: 0 0 4px rgba(201, 162, 94, .2)
  }

  72% {
    opacity: .2;
    transform: translateY(-14px) scale(1);
    font-weight: 300;
    text-shadow: none
  }

  100% {
    opacity: 0;
    transform: translateY(-22px) scale(.96);
    font-weight: 300;
    text-shadow: none
  }
}

/* Rabat — capital city, institutional power, strong vertical thrust */
@keyframes mclRabat {
  0% {
    opacity: 0;
    transform: translateX(-100%) translateY(8px) scale(.1);
    font-weight: 300;
    text-shadow: none
  }

  9% {
    opacity: 1;
    transform: translateX(-100%) translateY(-9px) scale(1.16);
    font-weight: 800;
    text-shadow: 0 0 16px rgba(255, 220, 120, 1), 0 0 32px rgba(201, 162, 94, .7), 0 0 50px rgba(201, 162, 94, .3)
  }

  25% {
    opacity: .95;
    transform: translateX(-100%) translateY(-13px) scale(1);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(201, 162, 94, .4)
  }

  60% {
    opacity: .3;
    transform: translateX(-100%) translateY(-28px) scale(1);
    font-weight: 400;
    text-shadow: none
  }

  100% {
    opacity: 0;
    transform: translateX(-100%) translateY(-44px) scale(.86);
    font-weight: 300;
    text-shadow: none
  }
}

/* Casablanca — economic capital, explosive energy, triple-ring glow */
@keyframes mclCasa {
  0% {
    opacity: 0;
    transform: translateY(5px) scale(.05);
    font-weight: 300;
    text-shadow: none
  }

  7% {
    opacity: 1;
    transform: translateY(-8px) scale(1.22);
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 230, 130, 1), 0 0 40px rgba(201, 162, 94, .8), 0 0 70px rgba(201, 162, 94, .3)
  }

  20% {
    opacity: .95;
    transform: translateY(-12px) scale(1.06);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(201, 162, 94, .5), 0 0 22px rgba(201, 162, 94, .2)
  }

  32% {
    opacity: .9;
    transform: translateY(-14px) scale(1);
    font-weight: 600;
    text-shadow: none
  }

  60% {
    opacity: .28;
    transform: translateY(-26px) scale(1);
    font-weight: 400;
    text-shadow: none
  }

  100% {
    opacity: 0;
    transform: translateY(-42px) scale(.84);
    font-weight: 300;
    text-shadow: none
  }
}

/* Marrakech — Red City, Atlas foothills, curls eastward */
@keyframes mclMarrakech {
  0% {
    opacity: 0;
    transform: translateX(-8px) translateY(5px) scale(.1);
    font-weight: 300;
    text-shadow: none
  }

  10% {
    opacity: 1;
    transform: translateX(4px) translateY(-5px) scale(1.08);
    font-weight: 700;
    text-shadow: 0 0 14px rgba(255, 180, 90, .9), 0 0 28px rgba(210, 130, 70, .5)
  }

  28% {
    opacity: .9;
    transform: translateX(9px) translateY(-9px) scale(1);
    font-weight: 600;
    text-shadow: 0 0 6px rgba(201, 162, 94, .3)
  }

  65% {
    opacity: .28;
    transform: translateX(16px) translateY(-20px) scale(1);
    font-weight: 400;
    text-shadow: none
  }

  100% {
    opacity: 0;
    transform: translateX(24px) translateY(-33px) scale(.9);
    font-weight: 300;
    text-shadow: none
  }
}

/* Agadir — Atlantic coast, opens westward toward ocean */
@keyframes mclAgadir {
  0% {
    opacity: 0;
    transform: translateX(8px) translateY(5px) scale(.1);
    font-weight: 300;
    text-shadow: none
  }

  10% {
    opacity: 1;
    transform: translateX(0) translateY(-5px) scale(1.06);
    font-weight: 600;
    text-shadow: 0 0 12px rgba(200, 185, 140, .8), 0 0 24px rgba(160, 145, 110, .4)
  }

  30% {
    opacity: .85;
    transform: translateX(-6px) translateY(-8px) scale(1);
    font-weight: 500;
    text-shadow: 0 0 5px rgba(201, 162, 94, .2)
  }

  65% {
    opacity: .25;
    transform: translateX(-13px) translateY(-18px) scale(1);
    font-weight: 300;
    text-shadow: none
  }

  100% {
    opacity: 0;
    transform: translateX(-20px) translateY(-30px) scale(.92);
    font-weight: 300;
    text-shadow: none
  }
}

/* Laâyoune — deep Sahara, heat shimmer, slow dissolve */
@keyframes mclLayoune {
  0% {
    opacity: 0;
    transform: translateX(-100%) translateY(4px) scale(.2);
    font-weight: 300;
    text-shadow: none
  }

  18% {
    opacity: .8;
    transform: translateX(-100%) translateY(-4px) scale(1.02);
    font-weight: 500;
    text-shadow: 0 0 8px rgba(201, 162, 94, .5)
  }

  42% {
    opacity: .6;
    transform: translateX(-100%) translateY(-9px) scale(1);
    font-weight: 400;
    text-shadow: 0 0 4px rgba(201, 162, 94, .15)
  }

  75% {
    opacity: .15;
    transform: translateX(-100%) translateY(-20px) scale(1);
    font-weight: 300;
    text-shadow: none
  }

  100% {
    opacity: 0;
    transform: translateX(-100%) translateY(-30px) scale(.96);
    font-weight: 300;
    text-shadow: none
  }
}

/* Dakhla — southernmost tip, Atlantic wind, oscillates like a kite */
@keyframes mclDakhla {
  0% {
    opacity: 0;
    transform: translateX(-100%) translateY(4px) scale(.15);
    font-weight: 300;
    text-shadow: none
  }

  12% {
    opacity: .75;
    transform: translateX(calc(-100% + 7px)) translateY(-3px) scale(1);
    font-weight: 500;
    text-shadow: 0 0 7px rgba(201, 162, 94, .45)
  }

  28% {
    opacity: .65;
    transform: translateX(-100%) translateY(-7px) scale(1);
    font-weight: 400;
    text-shadow: none
  }

  44% {
    opacity: .48;
    transform: translateX(calc(-100% - 5px)) translateY(-13px)scale(1);
    font-weight: 300;
    text-shadow: none
  }

  62% {
    opacity: .3;
    transform: translateX(calc(-100% + 4px)) translateY(-20px)scale(1);
    font-weight: 300;
    text-shadow: none
  }

  100% {
    opacity: 0;
    transform: translateX(calc(-100% - 3px)) translateY(-28px)scale(.95);
    font-weight: 300;
    text-shadow: none
  }
}

/* @media(max-width:720px){.mcl{display:none}} */

/* Lang-switcher inside the welcome modal — centered dropdown */
.welcome-modal .lang-switcher {
  display: block;
  margin: 0;
  text-align: center
}

.welcome-modal .lang-switcher .lang-menu {
  right: auto;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
}

.welcome-modal .lang-switcher.open .lang-menu {
  transform: translateX(-50%) translateY(0);
}

.welcome-title {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: .32em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.welcome-tag {
  color: var(--gold);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: .12em;
  margin: 0 0 10px 0;
}

.welcome-divider {
  width: 90px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto 50px;
  opacity: .7;
}

.welcome-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width:720px) {
  .welcome-cards {
    grid-template-columns: 1fr
  }
}

.welcome-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 30px 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(201, 162, 94, .02));
  border: 1px solid rgba(201, 162, 94, .25);
  color: #fff;
  text-decoration: none;
  transition: transform .4s ease, border-color .4s ease, background .4s ease, box-shadow .4s ease;
  min-height: 250px;
  overflow: hidden;
}

.welcome-card::after {
  /* soft gold halo on hover */
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 75%;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 94, .45), transparent 70%);
  filter: blur(14px);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}

.welcome-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 162, 94, .08), rgba(201, 162, 94, .02));
  box-shadow: inset 0 0 0 1px rgba(201, 162, 94, .35), 0 30px 60px -30px rgba(201, 162, 94, .5);
}

.welcome-card:hover::after {
  opacity: 1
}

.welcome-card .wc-ic {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 32px;
  transition: background .4s ease, color .4s ease, transform .4s ease;
}

.welcome-card:hover .wc-ic {
  background: var(--gold);
  color: #0a0a0c;
  transform: scale(1.08)
}

.welcome-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: #fff;
  font-size: clamp(0.9rem, 1.3vw, 1.09rem);
  letter-spacing: .16em;
  margin: 0 0 14px;
  line-height: 1.3;
}

.welcome-card .wc-by {
  color: var(--gold);
  letter-spacing: .32em;
  font-size: .72rem;
  text-transform: uppercase;
  margin: 0;
}

.welcome-card .wc-arrow {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: background .4s ease, color .4s ease, transform .4s ease;
}

.welcome-card:hover .wc-arrow {
  background: var(--gold);
  color: #0a0a0c;
  transform: translateX(-50%) translateY(-2px);
}

.welcome-footer {
  margin: 50px 0 0;
  color: #6f6852;
  letter-spacing: .32em;
  font-size: .7rem;
  text-transform: uppercase;
}

@media (max-width:720px) {
  .welcome-modal {
    padding: 30px 18px 40px;
    align-items: flex-start
  }

  .welcome-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 1.2rem
  }

  .welcome-inner {
    justify-content: flex-start;
    padding-top: 10px
  }

  .welcome-map {
    max-width: 115px;
    margin-bottom: 18px
  }

  .welcome-title {
    font-size: 1.0rem;
    letter-spacing: .22em;
    margin-bottom: 0px;
  }

  .welcome-tag {
    font-size: .95rem;
    letter-spacing: .08em
  }

  .welcome-divider {
    width: 70px;
    margin: 18px auto 28px
  }

  .welcome-cards {
    gap: 18px
  }

  .welcome-card {
    padding: 20px 22px 65px;
    min-height: 190px;
  }

  .welcome-card .wc-ic {
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
    margin-bottom: 24px;
  }

  .welcome-card h3 {
    font-size: 0.9rem;
    letter-spacing: .14em;
    margin-bottom: 10px
  }

  .welcome-card h3 br {
    display: none
  }

  .welcome-card .wc-by {
    font-size: .65rem;
    letter-spacing: .28em;
    display: none;
  }

  .welcome-card .wc-arrow {
    width: 40px;
    height: 40px;
    font-size: .85rem;
    bottom: 22px
  }

  .welcome-footer {
    margin-top: 30px;
    font-size: .6rem;
    letter-spacing: .24em
  }


  .phil-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .phil-grid.rev {
    direction: ltr
  }
}


@media (prefers-reduced-motion:reduce) {

  .services-fab,
  .welcome-map img {
    animation: none
  }
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600&display=swap');

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

.ds-section {
  background: #0d0d0d;
  padding: 52px 48px 56px;
  font-family: 'Raleway', sans-serif;
}

/* ── séparateur ── */
.ds-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 38px;
}

.ds-divider-line {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, #C9A84C 40%, #C9A84C);
}

.ds-divider-line.right {
  --dir: left;
}

/* ── titre ── */
.ds-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(17px, 3.2vw, 30px);
  font-weight: 600;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.35;
}

.ds-title .gold {
  color: #C9A84C;
}

/* ── sous-titre ── */
.ds-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 300;
  color: #aaaaaa;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
  line-height: 1.6;
}

/* ── ligne garantie ── */
.ds-guarantee {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 400;
  color: #C9A84C;
  letter-spacing: 0.2px;
}

.ds-guarantee strong {
  font-weight: 700;
}

@media (max-width: 600px) {
  .ds-section {
    padding: 40px 20px 44px;
  }

  .ds-divider-line {
    max-width: 70px;
  }
}



.bl-grid {
  gap: 15px !important;
}

.ba-cat {
    font-size: .6rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold, #c9a55c);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}