/* Gilles Vasseur — Hypnothérapeute · bleu profond + crème + doré */

:root{
  --bg:        #f9f6f0;
  --bg-2:      #f0e9db;
  --surface:   #ffffff;
  --border:    rgba(30, 58, 95, .14);
  --border-2:  rgba(30, 58, 95, .28);

  --text:      #1a1f2e;
  --text-dim:  #4d5870;
  --text-mute: #8b94a8;

  --blue:      #1e3a5f;
  --blue-d:    #14283f;
  --gold:      #c19452;
  --gold-d:    #a37a3e;

  --grad:      linear-gradient(120deg, #d4a76b, #c19452 55%, #a37a3e);
  --grad-blue: linear-gradient(120deg, #2a5384, #1e3a5f 55%, #14283f);
  --grad-soft: linear-gradient(135deg, rgba(193,148,82,.20), rgba(30,58,95,.16));

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

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

  --serif: 'Lora', '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.2;
}

em { font-style: italic; }

/* ----- ambient orbs ----- */
.orb{
  position: fixed;
  top: -20vmin; right: -20vmin;
  width: 70vmin; height: 70vmin;
  background: radial-gradient(circle, rgba(193,148,82,.30) 0%, rgba(193,148,82,0) 65%);
  filter: blur(22px);
  z-index: -2;
  animation: drift 32s ease-in-out infinite;
}
.orb--2{
  top: auto; right: auto;
  bottom: -25vmin; left: -25vmin;
  background: radial-gradient(circle, rgba(30,58,95,.25) 0%, rgba(30,58,95,0) 65%);
  animation-duration: 40s; animation-direction: reverse;
}
@keyframes drift {
  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(249,246,240,.86);
  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; flex-direction: column; gap: 0; }
.nav__mark{
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--blue);
  line-height: 1.05;
}
.nav__name{
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 500;
}
.nav__brand--logo{ padding: 2px 0; }
.nav__logo{
  height: 72px;
  width: auto;
  display: block;
}
@media (max-width: 720px){ .nav__logo{ height: 54px; } }

.nav__links{ display: flex; align-items: center; gap: 2px; }
.nav__links a{
  padding: 10px 14px; border-radius: 999px;
  color: var(--text-dim); font-size: .92rem; font-weight: 500;
  transition: color .2s, background .2s;
}
.nav__links a:hover{ color: var(--text); background: rgba(30,58,95,.06); }
.nav__cta{
  background: var(--blue); color: #fef6e8 !important; font-weight: 600;
  box-shadow: 0 10px 25px -12px rgba(30,58,95,.55);
}
.nav__cta:hover{ filter: brightness(1.08); }

.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, 9vw, 130px) 0; position: relative; }
.section--alt{
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,.55) 8%, rgba(255,255,255,.55) 92%, transparent);
}

.eyebrow, .tag{
  display: inline-block;
  font-family: var(--sans);
  font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-d); font-weight: 600;
  margin: 0 0 14px;
}
.h2{
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 12px;
  color: var(--text);
}
.sub{ color: var(--text-dim); margin: 0; max-width: 640px; }
.head{ text-align: center; max-width: 740px; margin: 0 auto 56px; }
.head .sub{ margin: 8px auto 0; }
.lede{ font-size: 1.1rem; color: var(--text-dim); }
.center { text-align: center; }

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

/* ----- HERO (asymétrique : texte gauche, déco droite) ----- */
.hero{
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
  gap: 40px;
  padding: 140px var(--pad) 90px;
  max-width: 1320px;
  margin: 0 auto;
}
.hero__inner{ position: relative; z-index: 2; max-width: 560px; text-align: left; }
.hero__title{
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -.02em; line-height: 1.1;
  margin: 0 0 24px;
  color: var(--blue);
}
.hero__title em{
  font-style: italic;
  color: var(--gold-d);
}

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

.hero__deco{
  position: relative;
  display: flex; justify-content: center; align-items: center;
  z-index: 1;
}
.hero__deco svg{
  width: clamp(260px, 36vw, 440px);
  height: auto;
  animation: pulse-soft 8s ease-in-out infinite;
}
.hero__deco g:first-of-type ellipse{
  transform-origin: 160px 160px;
  animation: spin-slow 60s linear infinite;
}
.hero__deco g:first-of-type ellipse:nth-child(2){ animation-duration: 80s; animation-direction: reverse; }
.hero__deco g:first-of-type ellipse:nth-child(3){ animation-duration: 100s; }
.hero__deco g:first-of-type ellipse:nth-child(4){ animation-duration: 120s; animation-direction: reverse; }
.hero__deco g:first-of-type ellipse:nth-child(5){ animation-duration: 140s; }
@keyframes spin-slow{ to { transform: rotate(360deg); } }
@keyframes pulse-soft{
  0%, 100% { transform: scale(1); opacity: .9; }
  50%      { transform: scale(1.03); opacity: 1; }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 110px;
  }
  .hero__inner { max-width: 100%; text-align: center; }
  .hero__lede  { margin-left: auto; margin-right: auto; }
  .hero__ctas  { justify-content: center; }
  .hero__deco svg { width: 220px; }
}

/* ----- 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(--blue); color: #fef6e8;
  box-shadow: 0 16px 30px -12px rgba(30,58,95,.6);
}
.btn--primary:hover{ box-shadow: 0 20px 38px -12px rgba(30,58,95,.75); background: var(--blue-d); }
.btn--ghost{
  border: 1px solid var(--border-2); color: var(--text);
  background: rgba(255,255,255,.6);
}
.btn--ghost:hover{ background: var(--surface); border-color: var(--blue); }
.btn--block{ width: 100%; justify-content: center; }

/* ----- prose block (Mes valeurs) ----- */
.prose{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 34px;
  box-shadow: 0 18px 36px -28px rgba(30,58,95,.22);
}
.prose p{ margin: 0 0 16px; }
.prose p:last-child{ margin-bottom: 0; }

/* ----- CARDS (applications) ----- */
.cards{
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.card{
  position: relative;
  padding: 30px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 36px -28px rgba(30,58,95,.22);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px -32px rgba(193,148,82,.4);
  border-color: var(--border-2);
}
.card__icon{
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-d);
  margin: 0 0 12px;
}
.card h3{
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: var(--text);
}
.card p{ margin: 0; color: var(--text-dim); font-size: .98rem; }

/* ----- VALEURS (photo + long quote + bio) ----- */
.values-grid{
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 36px;
  align-items: start;
}
@media (max-width: 820px){
  .values-grid{ grid-template-columns: 1fr; gap: 28px; }
  .values-portrait{ max-width: 280px; margin: 0 auto; }
}
.values-portrait{
  position: relative;
  margin: 0;
}
.values-portrait img{
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: 0 26px 50px -28px rgba(30,58,95,.5);
}
.values-portrait::after{
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold);
  border-radius: calc(var(--r-lg) + 8px);
  z-index: -1;
  opacity: .35;
  pointer-events: none;
}
.values-portrait figcaption{
  margin-top: 14px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: .98rem;
  color: var(--gold-d);
}

/* ----- VALEURS (long quote + bio) ----- */
.values-quote{
  margin: 0;
  padding: 40px 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  font-family: var(--serif);
  box-shadow: 0 24px 50px -32px rgba(30,58,95,.3);
}
.values-quote p{
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0 0 16px;
  color: var(--text);
}
.values-quote footer{
  font-family: var(--sans);
  font-style: normal;
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--gold-d);
  font-weight: 600;
  margin-top: 14px;
}
.bio-block{
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 28px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: .98rem;
}
.bio-block p{ margin: 0 0 10px; color: var(--text-dim); }
.bio-block p:last-child{ margin: 0; }
.bio-block a{ color: var(--gold-d); border-bottom: 1px dotted currentColor; }

/* "Curieux des changements" call-out */
.curious{
  margin: 40px auto 0;
  max-width: 720px;
  padding: 20px 28px;
  text-align: center;
  background: var(--blue);
  color: #f9f6f0;
  border-radius: var(--r-md);
}
.curious p{
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}
.curious a{
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  margin-left: 6px;
}
.curious a:hover{ color: #fef6e8; }

.muted{ color: var(--text-mute); font-size: .9rem; }

/* ----- STEPS (Pack légèreté) ----- */
.steps{
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.steps li{
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 14px 28px -22px rgba(30,58,95,.25);
}
.steps__n{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-d);
  letter-spacing: .04em;
}
.steps h3{
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 6px 0 10px;
  color: var(--text);
}
.steps p{ margin: 0; color: var(--text-dim); font-size: .96rem; }

/* ----- PRICES ----- */
.prices{
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin: 0 0 36px;
}
.price{
  padding: 32px 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, #ece1c8);
  border-color: var(--gold);
  box-shadow: 0 26px 60px -30px rgba(193,148,82,.45);
}
.price h3{ font-family: var(--serif); font-size: 1.3rem; margin: 0 0 8px; }
.price__amount{
  font-family: var(--serif);
  font-style: italic; font-size: 1.7rem;
  color: var(--blue);
  margin: 4px 0 12px;
}
.price p:last-child{ color: var(--text-dim); margin: 0; font-size: .95rem; }

/* ----- Cabinet photo (figure dans Tarifs) ----- */
.cabinet{
  max-width: 720px;
  margin: 40px auto;
}
.cabinet img{
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: 0 26px 50px -28px rgba(30,58,95,.45);
}
.cabinet figcaption{
  margin-top: 14px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-dim);
}

/* ----- Socials row ----- */
.socials{
  display: flex;
  gap: 10px;
  margin: 22px 0 0;
}
.social{
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--blue);
  background: var(--surface);
  border: 1px solid var(--border-2);
  transition: transform .2s, background .25s, color .25s, box-shadow .25s;
}
.social:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -14px rgba(30,58,95,.45);
}
.social--fb:hover{ background: #1877f2; color: #fff; border-color: #1877f2; }
.social--ig:hover{ background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; }
.social--wa:hover{ background: #25d366; color: #fff; border-color: #25d366; }
.social--g:hover{ background: #fff; color: #4285F4; border-color: #4285F4; }

/* ----- Google Maps embed ----- */
.map-wrap{
  margin: 28px 0 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  padding: 10px 10px 12px;
  box-shadow: 0 18px 36px -28px rgba(30,58,95,.25);
}
.map-wrap iframe{ display: block; }
.map-link{
  margin: 10px 4px 0;
  font-size: .92rem;
  text-align: right;
}
.map-link a{
  color: var(--gold-d);
  font-weight: 500;
  border-bottom: 1px dotted currentColor;
}
.map-link a:hover{ color: var(--gold); }

.infos-block{
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.infos-block h3{
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 0 0 12px;
  color: var(--text);
}
.infos-block p{ margin: 0; color: var(--text-dim); }

/* ----- TEMOIGNAGES (carrousel + Google review card) ----- */
.g-review{
  flex: 0 0 360px;
  max-width: 360px;
  scroll-snap-align: start;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 14px 28px -20px rgba(30,58,95,.22);
  display: flex; flex-direction: column;
  font-family: var(--sans);
}
@media (max-width: 600px){ .g-review{ flex-basis: 84vw; max-width: 84vw; } }
.g-review header{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
}
.g-avatar{
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.g-meta{
  display: flex; flex-direction: column;
  gap: 1px;
  flex: 1; min-width: 0;
}
.g-name{
  font-weight: 600;
  color: var(--text);
  font-size: .96rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g-time{
  font-size: .82rem;
  color: var(--text-mute);
}
.g-source{
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4 0%, #EA4335 50%, #FBBC04 75%, #34A853 100%);
  color: #fff;
  display: grid; place-items: center;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: .88rem;
  flex-shrink: 0;
}
.g-stars{
  color: #FBBC04;
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.g-text{
  color: var(--text-dim);
  font-size: .94rem;
  line-height: 1.55;
  margin: 0;
}

/* ----- TEMOIGNAGES (carrousel) ----- */
.testimonials-carousel{
  position: relative;
  margin: 0 0 32px;
}
.testimonials-track{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 24px;
}
.testimonials-track::-webkit-scrollbar{ display: none; }
.testimonials-track:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 6px;
  border-radius: var(--r-md);
}
.t-quote{
  flex: 0 0 360px;
  max-width: 360px;
  scroll-snap-align: start;
  padding: 26px;
  background: rgba(255,255,255,.85);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--serif);
  box-shadow: 0 14px 28px -20px rgba(30,58,95,.22);
  display: flex; flex-direction: column; justify-content: space-between;
}
@media (max-width: 600px){ .t-quote{ flex-basis: 84vw; max-width: 84vw; } }
.t-quote p{
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 14px;
  color: var(--text);
}
.t-quote footer{
  font-family: var(--sans);
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--text-mute);
  margin-top: auto;
}

.t-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  box-shadow: 0 10px 24px -10px rgba(30,58,95,.4);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--blue);
  cursor: pointer;
  z-index: 5;
  display: grid; place-items: center;
  transition: background .2s, color .2s, transform .15s;
}
.t-nav:hover{ background: var(--blue); color: #fff; }
.t-nav:active{ transform: translateY(-50%) scale(.94); }
.t-nav:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }
.t-nav:disabled{ opacity: .35; cursor: default; box-shadow: none; }
.t-nav:disabled:hover{ background: var(--surface); color: var(--blue); }
.t-nav--prev{ left: -8px; }
.t-nav--next{ right: -8px; }
@media (max-width: 900px){ .t-nav{ width: 40px; height: 40px; font-size: 1.5rem; } .t-nav--prev{ left: 0; } .t-nav--next{ right: 0; } }
@media (max-width: 600px){ .t-nav{ display: none; } }

/* ----- INSTAGRAM gateway (cards thématiques vers le profil) ----- */
.insta-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}
.insta-card{
  position: relative;
  display: flex; flex-direction: column;
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 36px -28px rgba(30,58,95,.22);
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  overflow: hidden;
}
.insta-card::before{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(193,148,82,.10), rgba(30,58,95,.05));
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.insta-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 50px -28px rgba(193,148,82,.4);
  border-color: var(--border-2);
}
.insta-card:hover::before{ opacity: 1; }
.insta-card:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.insta-card > *{ position: relative; z-index: 1; }

.insta-card__topic{
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-d);
  background: rgba(193,148,82,.12);
  border: 1px solid rgba(193,148,82,.3);
  padding: 4px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
  font-weight: 600;
  align-self: flex-start;
}
.insta-card__title{
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--blue);
}
.insta-card__excerpt{
  color: var(--text-dim);
  font-size: .95rem;
  margin: 0 0 16px;
  flex: 1;
}
.insta-card__cta{
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold-d);
  margin-top: auto;
}
.insta-card:hover .insta-card__cta{ color: var(--gold); }

.head .sub a{
  color: var(--gold-d);
  border-bottom: 1px dotted currentColor;
}
.head .sub a:hover{ color: var(--gold); }

/* ----- Cal.com embed ----- */
.cal-wrap{
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 22px 50px -30px rgba(30,58,95,.3);
}
.cal-wrap iframe{ border: 0; display: block; width: 100% !important; }
.cal-fallback{ margin: 24px 0 0; color: var(--text-dim); }
.cal-fallback a{ color: var(--gold-d); text-decoration: underline; }

/* ----- CONTACT ----- */
.contact{
  display: grid; gap: 40px;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
}
.contact__list{
  list-style: none; padding: 22px 24px; margin: 24px 0 0;
  display: grid; gap: 12px;
  background: var(--bg-2);
  border-radius: var(--r-md);
}
.contact__list li{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: .95rem;
}
.contact__list li > span:first-child{
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.contact__list a{
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px dotted var(--gold);
}
.contact__list a:hover{ color: var(--gold-d); }

.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(30,58,95,.22);
}
.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(--blue);
  box-shadow: 0 0 0 4px rgba(30,58,95,.15);
}
.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: #fff; background: var(--blue); font-weight: 600; }
.form__note.is-err{ color: var(--text); background: rgba(193,148,82,.12); border: 1px solid var(--border-2); }

/* ----- 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-d); }
.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(249,246,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; }
}

/* ----- DETAIL PAGES (applications) ----- */
.detail-hero{
  padding: 130px var(--pad) 60px;
  text-align: center;
}
.detail-hero__title{
  font-family: var(--serif);
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.1;
  margin: 18px auto 18px;
  max-width: 820px;
  color: var(--blue);
}
.detail-hero__title em{ color: var(--gold-d); font-style: italic; }
.detail-hero__lede{
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto;
}
.back-link{
  display: inline-block;
  margin: 0 0 28px;
  padding: 8px 16px;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--text-dim);
  background: rgba(255,255,255,.5);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.back-link:hover{
  background: var(--surface);
  color: var(--text);
}
.detail-content{ max-width: 900px; margin: 0 auto; }

.explain{
  margin: 0 0 36px;
  padding: 36px 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 36px -28px rgba(30,58,95,.22);
}
.explain__title{
  font-family: var(--serif);
  font-size: 1.55rem;
  margin: 0 0 18px;
  color: var(--blue);
  letter-spacing: -.01em;
}
.explain p{
  margin: 0 0 14px;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.65;
}
.explain p:last-child{ margin-bottom: 0; }
.explain__cta{
  margin-top: 16px !important;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text) !important;
  font-style: italic;
}

.app-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px 24px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px){ .app-list{ grid-template-columns: 1fr; } }
.app-list li{
  position: relative;
  padding-left: 22px;
  font-size: .98rem;
  color: var(--text);
}
.app-list li::before{
  content: '✦';
  position: absolute; left: 0; top: 0;
  color: var(--gold);
}
.app-list li small{
  display: block;
  color: var(--text-mute);
  font-size: .82rem;
  font-style: italic;
}

.stats-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}
.stats-list li{
  padding: 12px 16px;
  background: var(--bg-2);
  border-radius: var(--r-md);
  font-size: .98rem;
  color: var(--text);
}

.back-cta{
  text-align: center;
  margin: 24px 0 0;
}
