/* Charlotte Manna — soft modern aesthetic */

:root{
  --bg:        #fbf6ee;          /* ivory */
  --bg-2:      #f3ead8;          /* parchment */
  --surface:   #ffffff;
  --border:    rgba(110, 78, 30, .14);
  --border-2:  rgba(110, 78, 30, .28);

  --text:      #2c2218;          /* deep warm brown */
  --text-dim:  #6b5a44;
  --text-mute: #9b8a6d;

  --gold:      #c89761;
  --gold-2:    #b3814b;
  --sage:      #7a8f6a;
  --rose:      #d8a99a;

  --grad:      linear-gradient(120deg, #e9c89a, #c89761 55%, #b3814b);
  --grad-soft: linear-gradient(135deg, rgba(233,200,154,.35), rgba(122,143,106,.18));

  --r-md: 14px;
  --r-lg: 22px;

  --max: 1180px;
  --pad: clamp(20px, 4vw, 36px);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body{
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, .h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; line-height: 1.15; }

/* ----- floating orbs (background) ----- */
.orb{
  position: fixed;
  top: -20vmin; right: -20vmin;
  width: 70vmin; height: 70vmin;
  background: radial-gradient(circle, rgba(233,200,154,.55) 0%, rgba(233,200,154,0) 65%);
  filter: blur(20px);
  z-index: -2;
  animation: float 28s ease-in-out infinite;
}
.orb--2{
  top: auto; right: auto;
  bottom: -25vmin; left: -25vmin;
  background: radial-gradient(circle, rgba(122,143,106,.32) 0%, rgba(122,143,106,0) 65%);
  animation-duration: 36s; animation-direction: reverse;
}
@keyframes float {
  0%,100% { transform: translate(0,0)    scale(1); }
  50%     { transform: translate(40px,-30px) scale(1.08); }
}

/* ----- NAV ----- */
.nav{
  position: fixed; inset: 0 0 auto 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 14px var(--pad);
  z-index: 20;
  background: transparent;
  transition: background .35s, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled{
  background: rgba(251,246,238,.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom-color: var(--border);
}
.nav__brand{ display: inline-flex; align-items: baseline; gap: 12px; }
.nav__mark{
  font-family: var(--serif); font-weight: 600;
  font-size: 1.6rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em;
}
.nav__name{ font-family: var(--serif); font-size: 1.1rem; color: var(--text); }

.nav__links{ display: flex; align-items: center; gap: 4px; }
.nav__links a{
  padding: 10px 14px; border-radius: 999px;
  color: var(--text-dim); font-size: .95rem; font-weight: 500;
  transition: color .2s, background .2s;
}
.nav__links a:hover{ color: var(--text); background: rgba(110,78,30,.06); }
.nav__cta{
  background: var(--grad); color: #2c2218 !important; font-weight: 600;
  box-shadow: 0 10px 25px -12px rgba(200,151,97,.55);
}
.nav__cta:hover{ filter: brightness(1.05); }

.nav__burger{ display: none; width: 40px; height: 40px; position: relative; }
.nav__burger span{
  position: absolute; left: 8px; right: 8px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .25s, opacity .25s, top .25s;
}
.nav__burger span:nth-child(1){ top: 12px } .nav__burger span:nth-child(2){ top: 19px } .nav__burger span:nth-child(3){ top: 26px }

/* ----- shared bits ----- */
.container{ width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section{ padding: clamp(70px, 10vw, 140px) 0; position: relative; }
.section--alt{
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,.5) 8%, rgba(255,255,255,.5) 92%, transparent);
}

.eyebrow, .tag{
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 500;
  margin: 0 0 14px;
}
.h2{
  font-size: clamp(1.85rem, 3.6vw, 2.8rem);
  margin: 0 0 12px;
  color: var(--text);
}
.sub{ color: var(--text-dim); margin: 0; max-width: 640px; }
.head{ text-align: center; max-width: 720px; margin: 0 auto 60px; }
.head .sub{ margin: 8px auto 0; }
.lede{ font-size: 1.1rem; color: var(--text-dim); }

.two{
  display: grid; gap: 40px;
  grid-template-columns: 1fr 1.15fr;
  align-items: start;
}

/* ----- HERO ----- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 130px var(--pad) 90px;
}
.hero__inner{ position: relative; z-index: 2; max-width: 720px; text-align: center; }
.hero__title{
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -.02em; line-height: 1.02;
  margin: 0 0 24px;
}
.hero__title em{
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shimmer 9s linear infinite;
}
@keyframes shimmer{ 0%{ background-position: 0% 50%; } 100%{ background-position: 200% 50%; } }

.hero__lede{
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 32px;
}
.hero__ctas{
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

.hero__deco{
  position: absolute;
  width: clamp(320px, 50vw, 520px);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 1;
  opacity: .9;
  animation: pulse 10s ease-in-out infinite;
}
.hero__rays circle{
  transform-origin: 110px 110px;
  animation: spin 60s linear infinite;
}
.hero__rays circle:nth-child(2){ animation-duration: 80s; animation-direction: reverse; }
.hero__rays circle:nth-child(3){ animation-duration: 100s; }
@keyframes spin{ to{ transform: rotate(360deg); } }
@keyframes pulse{
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.04); }
}

/* ----- BUTTONS ----- */
.btn{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 500; font-size: 1rem; font-family: var(--sans);
  transition: transform .15s, box-shadow .25s, background .25s, color .25s;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: var(--grad); color: #2c2218;
  box-shadow: 0 16px 30px -12px rgba(200,151,97,.55);
}
.btn--primary:hover{ box-shadow: 0 20px 38px -12px rgba(200,151,97,.7); }
.btn--ghost{
  border: 1px solid var(--border-2); color: var(--text);
  background: rgba(255,255,255,.6);
}
.btn--ghost:hover{ background: var(--surface); }
.btn--block{ width: 100%; justify-content: center; }

/* ----- CARDS ----- */
.cards{
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.card{
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 36px -28px rgba(110, 78, 30, .25);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px -32px rgba(200, 151, 97, .45);
  border-color: var(--border-2);
}
.card__num{
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--gold-2);
  margin: 0 0 12px;
  letter-spacing: .05em;
}
.card h3{
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.card p{ margin: 0 0 16px; color: var(--text-dim); }
.chips{
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; padding: 0; margin: 0;
}
.chips li{
  font-size: .78rem;
  padding: 4px 11px; border-radius: 999px;
  background: var(--bg-2);
  color: var(--text-dim);
  border: 1px solid var(--border);
}

/* ----- STAGES ----- */
.stages{
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.stage{
  padding: 30px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.4));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.stage::before{
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.stage:hover::before{ opacity: 1; }
.stage h3{
  font-size: 1.3rem; margin: 0 0 10px; position: relative; z-index: 1;
}
.stage p{ margin: 0 0 14px; color: var(--text-dim); position: relative; z-index: 1; }
.stage__meta{
  font-family: var(--sans); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold-2);
  position: relative; z-index: 1;
}

/* ----- BOUTIQUE ----- */
.boutique{
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.bcard{
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.bcard:hover{ transform: translateY(-3px); box-shadow: 0 22px 50px -30px rgba(200,151,97,.4); }
.bcard__visual{
  width: 96px; height: 96px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--bg-2), var(--surface));
  border-radius: 50%; border: 1px solid var(--border);
  display: grid; place-items: center;
}
.bcard__visual svg{ width: 60%; height: 60%; }
.bcard h3{ margin: 0 0 8px; font-size: 1.2rem; }
.bcard p{ margin: 0; color: var(--text-dim); font-size: .95rem; }

/* ----- TEMOIGNAGES ----- */
.quotes{
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.quotes blockquote{
  margin: 0;
  padding: 30px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.55);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--serif);
}
.quotes blockquote p{
  font-size: 1.15rem; font-style: italic;
  margin: 0 0 12px;
  color: var(--text);
}
.quotes blockquote footer{
  font-family: var(--sans);
  font-size: .9rem; color: var(--text-mute);
  font-style: normal;
}

/* ----- PRICES ----- */
.prices{
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  align-items: stretch;
}
.price{
  padding: 34px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.price:hover{ transform: translateY(-3px); }
.price--feat{
  background: linear-gradient(160deg, #fff, #faedd2);
  border-color: var(--gold);
  box-shadow: 0 26px 60px -30px rgba(200,151,97,.5);
}
.price h3{ font-size: 1.3rem; margin: 0 0 8px; }
.price__amount{
  font-family: var(--serif); font-style: italic; font-size: 1.55rem;
  color: var(--gold-2);
  margin: 4px 0 12px;
}
.price p:last-child{ color: var(--text-dim); margin: 0; font-size: .95rem; }

/* ----- CONTACT ----- */
.contact{
  display: grid; gap: 40px;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
}
.form{
  display: grid; gap: 14px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 28px 50px -32px rgba(110,78,30,.25);
}
.form label{ display: grid; gap: 6px; font-size: .92rem; color: var(--text-dim); }
.form label small{ color: var(--text-mute); }
.form input, .form textarea{
  font: inherit; width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,151,97,.18);
}
.form textarea{ resize: vertical; min-height: 120px; }
.form__note{
  margin: 4px 0 0; font-size: .92rem;
  padding: 10px 12px; border-radius: 10px;
}
.form__note.is-ok{ color: #2c2218; background: var(--gold); font-weight: 600; }
.form__note.is-err{ color: var(--text); background: rgba(216,169,154,.25); border: 1px solid var(--rose); }

/* ----- FOOTER ----- */
.foot{
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--text-mute);
  font-size: .9rem;
  background: rgba(255,255,255,.4);
}
.foot__inner{ display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.foot a{ color: var(--gold-2); }
.foot a:hover{ text-decoration: underline; }

/* ----- REVEAL ----- */
[data-reveal]{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in{ opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  [data-reveal]{ opacity: 1; transform: none; }
}

/* ----- MOBILE ----- */
@media (max-width: 860px){
  .two{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .nav__links{
    position: fixed; inset: 64px 12px auto 12px;
    flex-direction: column; align-items: stretch;
    padding: 14px; gap: 4px;
    background: rgba(255,250,240,.97);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s, opacity .25s;
  }
  .nav__links.is-open{ transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a{ padding: 12px 14px; }
  .nav__burger{ display: block; }
  .nav__name{ display: none; }
  .hero__title{ font-size: clamp(2.6rem, 11vw, 4.2rem); }
}
