/* ==========================================================================
   Féerie de Marie — Design System
   Navy / Gold / Light Blue / White — Luxury Beach Theme
   ========================================================================== */

:root {
  --navy-dark: #102d51;
  --navy: #173d68;
  --navy-light: #1f4a7a;
  --navy-soft: #2c5488;
  --gold: #c9a961;
  --gold-light: #e6d3a3;
  --gold-deep: #a5813e;
  --blue-light: #7ec8e3;
  --blue-pale: #d7eef8;
  --white: #ffffff;
  --cream: #faf6ee;
  --sand: #f4ecd8;
  --ink: #1c2b3a;

  --font-display: 'Playfair Display', serif;
  --font-script: 'Alex Brush', cursive;
  --font-body: 'Poppins', sans-serif;

  --container: 1180px;
  --radius: 2px;
  --transition: .45s cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--navy)
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px
}

/* ---------- utility / reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(.22, .61, .36, 1), transform 1s cubic-bezier(.22, .61, .36, 1)
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1.in-view {
  transition-delay: .12s
}

.reveal-delay-2.in-view {
  transition-delay: .24s
}

.reveal-delay-3.in-view {
  transition-delay: .36s
}

.reveal-zoom {
  opacity: 0;
  transform: scale(.92);
  transition: opacity 1s ease, transform 1s cubic-bezier(.22, .61, .36, 1)
}

.reveal-zoom.in-view {
  opacity: 1;
  transform: scale(1)
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 18px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold)
}

.eyebrow.center {
  justify-content: center
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 20px
}

.section-lead {
  max-width: 640px;
  color: var(--navy-light);
  font-weight: 300;
  font-size: 1.05rem
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: var(--navy-dark);
  box-shadow: 0 8px 24px rgba(201, 169, 97, .35)
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(201, 169, 97, .5)
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .55);
  color: var(--white)
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white)
}

.btn-outline-navy {
  border: 1px solid var(--navy);
  color: var(--navy)
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white)
}

/* ---------- wave dividers ---------- */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0
}

.wave-divider svg {
  width: 100%;
  height: auto;
  display: block
}

/* ---------- floating shell decorations ---------- */
.floaty {
  animation: floaty 6s ease-in-out infinite
}

.floaty-slow {
  animation: floaty 9s ease-in-out infinite
}

.floaty-rev {
  animation: floatyRev 7s ease-in-out infinite
}

@keyframes floaty {

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

  50% {
    transform: translateY(-16px) rotate(4deg)
  }
}

@keyframes floatyRev {

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

  50% {
    transform: translateY(14px) rotate(-5deg)
  }
}

/* ---------- shimmer for gold text ---------- */
.shimmer {
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold-light) 25%, var(--gold) 50%, var(--gold-light) 75%, var(--gold-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center
  }
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 26px 0;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(23, 61, 104, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

/* logo mark — used in footer / hero only, header stays text-free like the reference design */
.logo {
  display: flex;
  align-items: center;
  gap: 14px
}

.logo-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  transition: var(--transition);
  object-fit: contain
}

.site-header.scrolled .logo-mark {
  width: 42px;
  height: 42px
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.logo-text .name {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: .02em
}

.logo-text .sub {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 46px
}

.nav-links a {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  font-weight: 400;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%
}

.nav-links a.active {
  color: var(--gold-light)
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1100
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition)
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-social a:hover {
  background: rgba(201, 169, 97, .18);
  border-color: var(--gold)
}

/* ---------- shop switcher (boutique) ---------- */
.shop-switch {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(201, 169, 97, .5);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}

.shop-switch .ss-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 24px;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  transition: var(--transition);
  font-weight: 400;
}

.shop-switch .ss-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0
}

.shop-switch .ss-item:hover {
  color: var(--white)
}

.shop-switch .ss-item.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: var(--navy-dark);
  box-shadow: 0 4px 14px rgba(201, 169, 97, .4);
}

@media (max-width:640px) {
  .shop-switch .ss-item span {
    display: none
  }

  .shop-switch .ss-item {
    padding: 9px 12px
  }

  .nav-social {
    display: none
  }
}

@media (max-width:900px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    background: linear-gradient(160deg, var(--navy), var(--navy-light));
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.22, .61, .36, 1);
  }

  .nav-links.open {
    transform: translateX(0)
  }

  .nav-links a {
    font-size: 1.1rem
  }

  .nav-toggle {
    display: flex
  }
}

/* ==========================================================================
   HERO — Ocean scene (shared photo-style background for both boutiques)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  padding: 110px 0 260px;
}

.hero.hero-small {
  min-height: 64vh
}

/* On short/wide desktop windows, 100vh alone isn't tall enough to fit the
   centered content plus the scroll cue and wave without them colliding —
   force a floor height so there's always room below the text. */
@media (min-width: 701px) {
  .hero {
    min-height: max(100vh, 900px);
  }
}

/* layered "photo" sea backdrop — drop a real photo at assets/img/hero-<page>.jpg
   and it paints on top automatically; the art-directed gradient underneath
   is the fallback (and also softly shows through as a colour wash). */
.ocean-scene {
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: center, center, center, center;
  background-size: cover, cover, cover, cover;
  background-image:
    var(--scene-photo, none),
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(255, 255, 255, .38), transparent 62%),
    radial-gradient(ellipse 60% 60% at 50% 28%, rgba(255, 255, 255, .10), transparent 65%),
    linear-gradient(to bottom,
      #102d51 0%,
      #173d68 12%,
      #1f4a7a 24%,
      #2a6996 36%,
      #2f8bab 48%,
      #3fa8bc 58%,
      #6bc4c4 67%,
      #a3dcc4 76%,
      #d9e8be 85%,
      #eee0ad 93%,
      #e7cf95 100%);
}

.ocean-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-linear-gradient(96deg, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, .07) 1px, rgba(255, 255, 255, 0) 4px, rgba(255, 255, 255, 0) 9px);
  mix-blend-mode: overlay;
  opacity: .55;
}

.ocean-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 35%, transparent 35%, rgba(2, 10, 22, .4) 100%);
}

.cliff-deco {
  position: absolute;
  top: -2%;
  left: -2%;
  width: 36%;
  max-width: 460px;
  z-index: 2;
  opacity: .96;
  pointer-events: none;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .25))
}

.cliff-deco.right {
  left: auto;
  right: -2%;
  transform: scaleX(-1)
}

@media (max-width:700px) {
  .cliff-deco {
    width: 46%
  }
}

.shell-cluster {
  position: absolute;
  bottom: -6px;
  width: 220px;
  z-index: 3;
  pointer-events: none
}

.shell-cluster.left {
  left: -16px
}

.shell-cluster.right {
  right: -16px;
  transform: scaleX(-1)
}

@media (max-width:700px) {
  .shell-cluster {
    width: 130px
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2
}

.hero-particles span {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 70%);
  opacity: .5;
  animation: rise linear infinite;
}

@keyframes rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0
  }

  10% {
    opacity: .6
  }

  100% {
    transform: translateY(-110vh) translateX(30px);
    opacity: 0
  }
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 0 24px;
  max-width: 820px
}

.hero-shell {
  width: 70px;
  margin: 0 auto 26px;
  opacity: .9
}

.hero .eyebrow {
  color: var(--gold-light)
}

.hero .eyebrow::before,
.hero .eyebrow::after {
  background: var(--gold-light)
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(2, 10, 22, .35);
}

.hero h1 .script {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.5em;
  color: var(--gold-light);
  margin-top: 8px;
}

.hero p.tagline {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--blue-pale);
  max-width: 520px;
  margin: 0 auto 40px;
  letter-spacing: .02em;
  text-shadow: 0 2px 14px rgba(2, 10, 22, .3);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 4
}

.hero-location {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.hero-waves,
.shore {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none
}

.hero-waves svg,
.shore svg {
  width: 100%;
  height: auto;
  max-height: 140px;
  display: block
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.scroll-cue .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold-light), transparent);
  animation: scrollLine 2s ease-in-out infinite
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  50.01% {
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* ---------- hero variant : bijoux ---------- */
.hero-bijoux {
  display: block;
  min-height: auto;
  padding: 120px 0 0;
  --scene-photo: none;
}

.hero-bijoux .hero-content {
  margin: 0 auto;
  max-width: 640px;
  padding-top: 10px
}

.emblem {
  position: relative;
  width: 340px;
  margin: 0 auto 28px
}

.emblem svg,
.emblem img {
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, .35));
  object-fit: contain
}

@media (max-width: 480px) {
  .emblem {
    width: 250px
  }
}

.emblem .spark {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0;
  animation: twinkle 2.6s ease-in-out infinite
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(.4)
  }

  50% {
    opacity: 1;
    transform: scale(1)
  }
}

.hero-bijoux h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .4);
  line-height: 1.3;
  margin-bottom: 34px
}

.hero-bijoux .hero-actions {
  margin-bottom: 44px
}

.hero-bijoux .welcome {
  position: relative;
  z-index: 4;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6
}

.hero-bijoux .welcome strong {
  color: var(--gold-light);
  font-weight: 600;
  font-style: normal
}

.hero-bijoux .bottom-block {
  position: relative;
  z-index: 4;
  padding: 40px 24px 70px;
  text-align: center
}

.hero-bijoux .bottom-block .eyebrow {
  color: var(--navy);
  opacity: .8
}

.hero-bijoux .bottom-block .eyebrow::before,
.hero-bijoux .bottom-block .eyebrow::after {
  background: var(--navy)
}

.hero-bijoux .bottom-block .script-name {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--gold-deep);
  margin: 6px 0 26px
}

/* ---------- hero variant : pochons ---------- */
.hero-pochon {
  --scene-photo: none
}

.hero-pochon .hero-content {
  padding-top: 60px
}

/* ==========================================================================
   GENERIC SECTIONS
   ========================================================================== */
section {
  position: relative
}

.section-pad {
  padding: 130px 0
}

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

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

.bg-navy {
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  color: var(--white)
}

.bg-navy h2,
.bg-navy h3 {
  color: var(--white)
}

.bg-sand {
  background: var(--sand)
}

.divider-gold {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 26px auto
}

.divider-gold.left {
  margin-left: 0
}

/* intro / brand statement */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center
}

.intro-visual {
  position: relative
}

.intro-visual .frame {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .25), transparent 55%),
    linear-gradient(150deg, var(--blue-light), var(--navy-soft) 55%, var(--navy) 100%);
  box-shadow: 0 30px 60px -20px rgba(10, 37, 64, .4);
}

.intro-visual .frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 2px;
}

.intro-visual .frame .motif {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.intro-visual .badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), var(--gold) 70%, var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(201, 169, 97, .4);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .08em;
  line-height: 1.4;
  padding: 14px;
}

@media (max-width:900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 60px
  }

  .intro-visual .badge {
    width: 100px;
    height: 100px;
    font-size: .65rem;
    bottom: -20px;
    right: 10px
  }
}

/* value cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 70px
}

.value-card {
  text-align: center;
  padding: 44px 30px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 20px 50px -30px rgba(10, 37, 64, .25);
  transition: var(--transition);
  position: relative;
  border-top: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--gold);
  box-shadow: 0 30px 60px -25px rgba(10, 37, 64, .35)
}

.value-card .icon-wrap {
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--blue-pale), var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(201, 169, 97, .35);
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px
}

.value-card p {
  font-size: .92rem;
  color: var(--navy-light);
  font-weight: 300
}

@media (max-width:900px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px
  }
}

/* collection cards */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 70px
}

.collection-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 25px 55px -25px rgba(10, 37, 64, .35);
}

.collection-card .visual {
  position: absolute;
  inset: 0;
  transition: transform 1.2s cubic-bezier(.22, .61, .36, 1);
}

.collection-card:hover .visual {
  transform: scale(1.08)
}

.collection-card .visual.v1 {
  background: linear-gradient(150deg, #a9dcef, #4a90c4 45%, var(--navy) 100%)
}

.collection-card .visual.v2 {
  background: linear-gradient(150deg, #e6d3a3, #c9a961 45%, var(--navy-dark) 100%)
}

.collection-card .visual.v3 {
  background: linear-gradient(150deg, var(--blue-light), var(--blue-light) 20%, var(--navy-soft) 60%, var(--navy-dark) 100%)
}

.collection-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 22, 39, .92) 0%, rgba(6, 22, 39, .15) 55%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--white);
}

.collection-card .tag {
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px
}

.collection-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 10px
}

.collection-card p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 300;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: var(--transition)
}

.collection-card:hover p {
  max-height: 120px;
  opacity: 1;
  margin-top: 4px
}

.collection-card .soon {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  padding: 6px 14px;
  border-radius: 20px
}

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

/* quote / CTA banner */
.quote-banner {
  padding: 120px 0;
  text-align: center;
  position: relative
}

.quote-banner .quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: .5;
  line-height: .5;
  margin-bottom: 10px
}

.quote-banner blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 26px;
  line-height: 1.5;
}

.quote-banner cite {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold-light);
  font-style: normal
}

.cta-banner {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white)
}

.cta-banner p {
  color: var(--blue-pale);
  max-width: 520px;
  margin: 18px auto 38px;
  font-weight: 300
}

/* ==========================================================================
   ALTERNATING FEATURE ROWS (présentation page)
   ========================================================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 110px 0
}

.feature-row.reverse {
  direction: rtl
}

.feature-row.reverse>* {
  direction: ltr
}

.feature-visual {
  position: relative
}

.feature-visual .frame {
  aspect-ratio: 1/1.1;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 35px 70px -30px rgba(10, 37, 64, .45);
}

.feature-visual .frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .45);
  pointer-events: none
}

.feature-visual .frame.f1 {
  background: linear-gradient(150deg, #cdeaf6, #7ec8e3 40%, var(--navy-soft) 85%, var(--navy-dark) 100%)
}

.feature-visual .frame.f2 {
  background: linear-gradient(150deg, #f3e6c4, var(--gold) 45%, var(--navy) 100%)
}

.feature-visual .float-tag {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  padding: 18px 26px;
  border-radius: 4px;
  box-shadow: 0 20px 40px -15px rgba(10, 37, 64, .3);
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-visual .float-tag .num {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 1.6rem
}

.feature-visual .float-tag .txt {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy)
}

.feature-text .eyebrow {
  margin-bottom: 14px
}

.feature-text h2 {
  margin-bottom: 24px
}

.feature-text p {
  color: var(--navy-light);
  margin-bottom: 18px;
  font-weight: 300
}

.feature-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .92rem;
  color: var(--navy)
}

.feature-list li .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:900px) {

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 70px 0;
    direction: ltr
  }

  .feature-visual .float-tag {
    left: 14px;
    bottom: -18px;
    padding: 14px 18px
  }
}

/* ==========================================================================
   HISTOIRE — timeline
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 90px auto 0;
  padding-left: 0
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--gold-light), var(--gold), var(--gold-light));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 60px 90px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left
}

.timeline-item .dot {
  position: absolute;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
}

.timeline-item:nth-child(odd) .dot {
  right: -8px
}

.timeline-item:nth-child(even) .dot {
  left: -8px
}

.timeline-item .year {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold-deep)
}

.timeline-item h3 {
  margin: 6px 0 12px;
  font-size: 1.25rem
}

.timeline-item p {
  color: var(--navy-light);
  font-size: .92rem;
  font-weight: 300
}

@media (max-width:820px) {
  .timeline::before {
    left: 16px
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0 0 60px 50px;
  }

  .timeline-item:nth-child(odd) .dot,
  .timeline-item:nth-child(even) .dot {
    left: 8px
  }
}

/* founder / quote portrait */
.founder-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center
}

.founder-visual .frame {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .3), transparent 55%),
    linear-gradient(150deg, var(--sand), var(--gold-light) 40%, var(--navy-soft) 110%);
  box-shadow: 0 30px 60px -25px rgba(10, 37, 64, .4);
  position: relative;
}

.founder-visual .frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .5)
}

.founder-text blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.5
}

.founder-text p {
  color: var(--navy-light);
  font-weight: 300;
  margin-bottom: 16px
}

.founder-signature {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold-deep);
  margin-top: 20px
}

@media (max-width:900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }
}

/* materials strip */
.materials-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  margin-top: 70px;
  border-radius: 4px;
  overflow: hidden
}

.materials-strip .mat {
  background: var(--navy);
  padding: 40px 24px;
  text-align: center
}

.materials-strip .mat .icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center
}

.materials-strip .mat h4 {
  color: var(--gold-light);
  font-size: .95rem;
  letter-spacing: .05em;
  margin-bottom: 8px
}

.materials-strip .mat p {
  color: rgba(255, 255, 255, .65);
  font-size: .8rem;
  font-weight: 300
}

@media (max-width:900px) {
  .materials-strip {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:520px) {
  .materials-strip {
    grid-template-columns: 1fr
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
  position: relative;
  overflow: hidden
}

.footer-top {
  padding: 90px 0 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px
}

.footer-brand .logo {
  margin-bottom: 20px
}

.footer-brand p {
  font-size: .9rem;
  font-weight: 300;
  max-width: 320px;
  color: rgba(255, 255, 255, .6)
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-weight: 500
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.footer-col a {
  font-size: .9rem;
  font-weight: 300;
  transition: color .3s
}

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

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 22px
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 97, .15);
  transform: translateY(-3px)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .03em;
}

@media (max-width:900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

/* ==========================================================================
   PAGE HERO (histoire / présentation)
   ========================================================================== */
.page-hero {
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--white);
  background:
    radial-gradient(ellipse at 20% 20%, rgba(126, 200, 227, .25), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(201, 169, 97, .18), transparent 50%),
    linear-gradient(160deg, var(--navy), var(--navy-light));
  overflow: hidden;
  padding-top: 80px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem)
}

.page-hero .script {
  display: block;
  font-family: var(--font-script);
  color: var(--gold-light);
  font-size: 1.4em;
  margin-top: 6px;
  font-weight: 400
}

.page-hero p {
  color: var(--blue-pale);
  max-width: 500px;
  margin: 20px auto 0;
  font-weight: 300
}

.breadcrumb {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 26px
}

.breadcrumb span {
  color: var(--gold-light)
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px
}

.gallery-grid .g-item {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative
}

.gallery-grid .g-item:nth-child(2) {
  aspect-ratio: 1/1.4;
  grid-row: span 2
}

.gallery-grid .g1 {
  background: linear-gradient(150deg, #cdeaf6, var(--blue-light) 60%, var(--navy) 110%)
}

.gallery-grid .g2 {
  background: linear-gradient(150deg, var(--sand), var(--gold-light) 55%, var(--navy-soft) 115%)
}

.gallery-grid .g3 {
  background: linear-gradient(150deg, var(--blue-pale), var(--navy-soft) 90%)
}

.gallery-grid .g4 {
  background: linear-gradient(150deg, var(--gold-light), var(--navy) 100%)
}

.gallery-grid .g5 {
  background: linear-gradient(150deg, #e9f6fb, var(--blue-light) 70%, var(--navy-dark) 120%)
}

@media (max-width:900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-grid .g-item:nth-child(2) {
    grid-row: auto;
    aspect-ratio: 1/1
  }
}

/* decorative shell/coral SVG placed in sections */
.deco {
  position: absolute;
  opacity: .5;
  pointer-events: none;
  z-index: 1
}

/* back to top */
.to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.to-top:hover {
  background: var(--gold);
  border-color: var(--gold)
}

::selection {
  background: var(--gold-light);
  color: var(--navy-dark)
}

/* scrollbar */
::-webkit-scrollbar {
  width: 10px
}

::-webkit-scrollbar-track {
  background: var(--cream)
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px
}