/* ============================================================
   JCRÉATION – Style Élégant Gris Perle & Or
   ============================================================ */

/* === VARIABLES === */
:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --gold-pale: #C9A84C;
  --gold-deep: #8B6914;

  --bg-main: #F5F4F2;
  --bg-section: #EFEEEC;
  --bg-card: #FFFFFF;
  --bg-dark: #1C1C1C;
  --bg-dark-2: #252525;

  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #888888;
  --text-light: #AAAAAA;

  --border: 1px solid rgba(180,150,50,0.2);
  --border-strong: 1px solid rgba(180,150,50,0.45);
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-gold: 0 8px 32px rgba(184,134,11,0.18);

  --font-display: 'Cinzel', serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Cormorant Garamond', serif;
  --transition: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: auto;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
strong { color: var(--text-primary); }

/* === CUSTOM CURSOR === */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  /* Pas de transition left/top — géré frame par frame en JS */
  transition: transform 0.15s ease, opacity 0.2s ease;
  will-change: left, top, transform;
}
.cursor-trail {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(176,120,0,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  /* Pas de transition CSS sur position — lag géré par lerp JS */
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  will-change: left, top;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(245,244,242,0.96);
  backdrop-filter: blur(16px);
  border-bottom: var(--border);
  transition: padding var(--transition), box-shadow var(--transition);
}
header.scrolled { padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: block; }
.logo {
  height: 150px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(184,134,11,0.3);
}

/* === NAV === */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.72em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold-deep); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 150px 40px 100px;
  background: var(--bg-main);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(184,134,11,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(184,134,11,0.04) 0%, transparent 50%);
}
.marble-overlay {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-30deg, transparent, transparent 60px, rgba(184,134,11,0.025) 60px, rgba(184,134,11,0.025) 61px);
}
.gold-particles { position: absolute; inset: 0; pointer-events: none; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 950px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7em;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8em, 4vw, 3.2em);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.line-reveal { opacity: 0; animation: fadeInUp 0.9s ease forwards; }
.line-reveal.delay-1 { animation-delay: 0.3s; }
.line-reveal.delay-2 { animation-delay: 0.5s; }
.line-reveal.delay-3 { animation-delay: 0.7s; }
.line-reveal.delay-4 { animation-delay: 0.9s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.gold-text {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep), var(--gold));
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: goldShine 5s linear infinite;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.25em;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 50px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.4s;
}
.hero-scroll-indicator span {
  font-family: var(--font-display);
  font-size: 0.58em; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 38px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
  background-size: 200%;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75em; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 3px; border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(184,134,11,0.35);
}
.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,134,11,0.5);
}
.btn-primary.large { padding: 18px 52px; font-size: 0.82em; }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  background: transparent; color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 0.75em; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 3px; border: 1.5px solid rgba(184,134,11,0.4);
  cursor: pointer; transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(184,134,11,0.06);
  border-color: var(--gold); transform: translateY(-2px);
}
.btn-ghost.full { width: 100%; justify-content: center; }

/* === STATS BAND === */
.stats-band {
  background: var(--bg-card);
  border-top: var(--border); border-bottom: var(--border);
  padding: 32px 0; box-shadow: var(--shadow);
}
.stats-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center;
  justify-content: space-around; flex-wrap: wrap; gap: 20px;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9em; font-weight: 600;
  color: var(--gold-deep); line-height: 1;
}
.stat-label {
  display: block; font-size: 0.82em;
  color: var(--text-muted); margin-top: 5px; letter-spacing: 0.04em;
}
.stat-divider { width: 1px; height: 44px; background: rgba(184,134,11,0.2); }

/* === SHARED SECTION === */
.section-pad { padding: 100px 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.container.narrow { max-width: 860px; }
.section-header { text-align: center; margin-bottom: 65px; }
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.66em; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 14px;
}
.section-eyebrow.light { color: rgba(255,220,100,0.75); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7em, 3.5vw, 2.5em);
  font-weight: 600; color: var(--text-primary);
  line-height: 1.2; margin-bottom: 16px;
}
.section-desc {
  font-size: 0.95em; color: var(--text-muted);
  max-width: 620px; margin: 0 auto; line-height: 1.9;
}
.title-ornament {
  width: 55px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}
.title-ornament.left { margin: 0 0 28px 0; }

/* === GOLD SHINE === */
.gold-shine {
  background: linear-gradient(90deg, var(--text-primary) 0%, var(--gold-light) 40%, var(--text-primary) 60%, var(--gold-pale) 80%, var(--text-primary) 100%);
  background-size: 300%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: goldShine 7s linear infinite;
}
@keyframes goldShine {
  0% { background-position: 0%; }
  100% { background-position: 300%; }
}

/* === SERVICES GRID === */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.service-card {
  background: var(--bg-card); border: var(--border); border-radius: 6px;
  padding: 38px 28px; position: relative;
  transition: all 0.4s ease; box-shadow: var(--shadow);
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); border-color: rgba(184,134,11,0.4); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: rgba(184,134,11,0.4); background: linear-gradient(160deg, #fffef9, #fff); }
.service-card.featured::before { opacity: 1; }
.featured-badge {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-display); font-size: 0.58em;
  letter-spacing: 0.1em; color: #fff; background: var(--gold);
  padding: 4px 12px; border-radius: 20px;
}
.card-icon { font-size: 1.4em; color: var(--gold); margin-bottom: 18px; display: block; }
.service-card h3 {
  font-family: var(--font-display); font-size: 0.92em; font-weight: 600;
  letter-spacing: 0.04em; color: var(--text-primary); margin-bottom: 10px;
}
.service-card p { font-size: 0.9em; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.card-price {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.85em; color: var(--gold-deep); margin-bottom: 18px; font-weight: 600;
}
.card-link {
  font-family: var(--font-display); font-size: 0.68em;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); transition: color var(--transition);
}
.card-link:hover { color: var(--gold-deep); }
.section-cta { text-align: center; margin-top: 55px; }

/* === WHY SECTION === */
.why-section { background: var(--bg-section); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-intro { font-size: 1em; color: var(--text-secondary); line-height: 1.85; margin-bottom: 32px; }
.why-list { list-style: none; margin-bottom: 38px; }
.why-list li { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.why-icon { color: var(--gold); font-size: 0.75em; margin-top: 5px; flex-shrink: 0; }
.why-list strong {
  display: block; font-family: var(--font-display); font-size: 0.82em;
  letter-spacing: 0.04em; color: var(--text-primary); margin-bottom: 3px;
}
.why-list p { font-size: 0.85em; color: var(--text-muted); margin: 0; }
.why-visual { display: flex; align-items: center; justify-content: center; }
.why-card-stack { position: relative; width: 280px; height: 310px; }
.why-card {
  position: absolute; background: var(--bg-card);
  border: var(--border-strong); border-radius: 6px;
  padding: 22px 28px; text-align: center; box-shadow: var(--shadow);
}
.wc1 { top: 0; left: 0; width: 200px; }
.wc2 { top: 80px; right: 0; width: 200px; }
.wc3 { bottom: 0; left: 28px; width: 200px; }
.wc-label {
  display: block; font-family: var(--font-display);
  font-size: 0.58em; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.wc-val { display: block; font-family: var(--font-display); font-size: 1.4em; font-weight: 600; color: var(--gold-deep); }

/* === PROCESS === */
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 31px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(184,134,11,0.2), var(--gold));
}
.process-step { text-align: center; padding: 0 18px; position: relative; }
.step-number {
  font-family: var(--font-display); font-size: 0.72em; font-weight: 700;
  color: #fff; background: var(--gold);
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; z-index: 1;
  box-shadow: 0 4px 14px rgba(184,134,11,0.3);
}
.process-step h3 {
  font-family: var(--font-display); font-size: 0.85em; font-weight: 600;
  letter-spacing: 0.04em; color: var(--text-primary); margin-bottom: 10px;
}
.process-step p { font-size: 0.85em; color: var(--text-muted); line-height: 1.7; }

/* === PRICING === */
.pricing-section { background: var(--bg-section); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.pricing-card {
  background: var(--bg-card); border: var(--border); border-radius: 6px;
  padding: 42px 32px; position: relative;
  transition: all 0.4s ease; box-shadow: var(--shadow);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.pricing-card.featured {
  border-color: var(--gold); border-width: 2px;
  transform: scale(1.03);
  background: linear-gradient(175deg, #fffef5, #fff);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-5px); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-family: var(--font-display); font-size: 0.6em; letter-spacing: 0.1em;
  padding: 5px 18px; border-radius: 20px; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(184,134,11,0.35);
}
.pricing-tier { font-family: var(--font-display); font-size: 0.62em; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.price-amount { font-family: var(--font-display); font-size: 2.8em; font-weight: 700; color: var(--text-primary); line-height: 1; }
.price-note { display: block; font-size: 0.75em; color: var(--text-muted); margin-top: 5px; margin-bottom: 10px; }
.pricing-name { font-family: var(--font-display); font-size: 0.88em; color: var(--text-primary); margin-bottom: 14px; font-weight: 600; }
.pricing-desc { font-size: 0.85em; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; padding-bottom: 28px; border-bottom: var(--border); }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { font-size: 0.85em; color: var(--text-secondary); padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.pricing-features li.faded { color: var(--text-light); opacity: 0.5; }

/* === ADDONS === */
.dark-bg { background: var(--bg-dark); color: rgba(255,255,255,0.8); }
.dark-bg .section-title { color: #fff; }
.dark-bg .section-desc { color: rgba(255,255,255,0.5); }
.addons-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.addon-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 28px; background: var(--bg-dark-2); transition: background var(--transition);
}
.addon-item:hover { background: #2a2a2a; }
.addon-icon { color: var(--gold); font-size: 0.75em; margin-top: 4px; flex-shrink: 0; }
.addon-item h4 { font-family: var(--font-display); font-size: 0.8em; letter-spacing: 0.04em; color: #fff; margin-bottom: 4px; }
.addon-item p { font-size: 0.82em; color: rgba(255,255,255,0.45); line-height: 1.6; }
.addon-price { margin-left: auto; font-family: var(--font-display); font-size: 0.82em; color: var(--gold-pale); white-space: nowrap; padding-left: 20px; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 3px; }
.faq-item { background: var(--bg-card); border: var(--border); border-radius: 4px; overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 26px;
  font-family: var(--font-display); font-size: 0.8em; letter-spacing: 0.04em;
  color: var(--text-primary); cursor: pointer; transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-deep); }
.faq-toggle { font-size: 1.3em; color: var(--gold); transition: transform 0.3s ease; line-height: 1; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; padding: 0 26px;
  font-size: 0.88em; color: var(--text-muted); line-height: 1.85;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 26px 20px; }

/* === PAGE HERO === */
.page-hero {
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  padding: 160px 40px 75px;
  background: radial-gradient(ellipse at center top, rgba(184,134,11,0.06) 0%, transparent 60%), var(--bg-main);
  text-align: center; border-bottom: var(--border); position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 160px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.2em,5vw,3.8em); font-weight: 600; margin-bottom: 14px; }
.page-hero-sub { font-size: 0.95em; color: var(--text-muted); max-width: 480px; margin: 0 auto; }

/* === CTA SECTION === */
.cta-section { position: relative; padding: 110px 40px; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: var(--bg-dark); }
.cta-content { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.9em,4vw,3em); font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 18px; }
.cta-sub { font-size: 0.95em; color: rgba(255,255,255,0.45); margin-bottom: 42px; }

/* === CONTACT PAGE === */
.contact-section { background: var(--bg-main); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-intro { font-size: 0.95em; color: var(--text-secondary); line-height: 1.85; margin-bottom: 38px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { color: var(--gold); font-size: 1em; width: 28px; flex-shrink: 0; margin-top: 2px; }
.contact-detail-item strong { display: block; font-family: var(--font-display); font-size: 0.7em; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 3px; }
.contact-detail-item span { font-size: 0.88em; color: var(--text-muted); }
.contact-form-wrap { background: var(--bg-card); border: var(--border); border-radius: 6px; padding: 48px; box-shadow: var(--shadow); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-family: var(--font-display); font-size: 0.62em; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); }
.contact-form input, .contact-form textarea, .contact-form select {
  background: var(--bg-main); border: 1px solid rgba(184,134,11,0.2); border-radius: 3px;
  padding: 13px 16px; color: var(--text-primary); font-family: var(--font-body); font-size: 1em;
  outline: none; transition: border-color var(--transition), box-shadow var(--transition); appearance: none;
-webkit-appearance: none;
}
.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23B8860B'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-color: var(--bg-main);
}
.contact-form option { background: #fff; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,134,11,0.08); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-light); }
.submit-btn { margin-top: 8px; }
.btn-icon { font-size: 1.1em; }

/* === ABOUT PAGE === */
.about-section { background: var(--bg-main); }
.about-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; }
.about-frame {
  width: 240px; height: 300px;
  border: 1.5px solid rgba(184,134,11,0.3);
  position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #fffef9, #f9f8f5);
}
.about-frame::before {
  content: ''; position: absolute;
  top: 10px; left: 10px; right: -10px; bottom: -10px;
  border: 1px solid rgba(184,134,11,0.15);
}
.about-monogram { font-family: var(--font-script); font-size: 7em; color: var(--gold); filter: drop-shadow(0 0 12px rgba(184,134,11,0.25)); line-height: 1; }
.about-text p { font-size: 0.95em; color: var(--text-secondary); line-height: 1.9; margin-bottom: 16px; }
.about-text em { color: var(--gold-deep); font-style: italic; }
.about-values { display: flex; gap: 28px; flex-wrap: wrap; margin: 32px 0; }
.value-item { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 0.7em; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-primary); }
.value-icon { color: var(--gold); }

/* === SKILLS === */
.skills-section { background: var(--bg-dark); }
.skills-section .section-title { color: #fff; }
.skills-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px 60px; max-width: 800px; margin: 0 auto; }
.skill-label { font-family: var(--font-display); font-size: 0.7em; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.skill-bar { height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.skill-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); transition: width 1.5s cubic-bezier(0.22,1,0.36,1); }
.skill-fill.animated { width: var(--w); }

/* === MERCI PAGE === */
.merci-main { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 140px 40px 80px; }
.merci-content { text-align: center; }
.merci-icon { font-size: 3em; color: var(--gold); margin-bottom: 28px; display: block; animation: goldPulse 2.5s ease-in-out infinite; }
@keyframes goldPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(184,134,11,0.4)); }
  50% { filter: drop-shadow(0 0 24px rgba(184,134,11,0.8)); }
}
.merci-title { font-family: var(--font-display); font-size: clamp(1.8em,4vw,2.8em); font-weight: 600; margin-bottom: 16px; }
.merci-sub { font-size: 1em; color: var(--text-muted); margin-bottom: 38px; }

/* === FOOTER === */
footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 0; }
.footer-inner { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.footer-logo { height: 170px; width: auto; border-radius: 6px; opacity: 0.9; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-family: var(--font-display); font-size: 0.62em; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-pale); }
.footer-copy { font-size: 0.78em; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-frame { display: none; }
  .addons-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  .burger { display: flex; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(245,244,242,0.98);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 35px; z-index: 50;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1em; color: var(--text-primary); }
  .hero { padding: 130px 20px 80px; }
  .hero-title { font-size: clamp(2em, 8vw, 3em); }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-inner { gap: 15px; }
  .stat-divider { display: none; }
  .section-pad { padding: 65px 0; }
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 18px; }
  .cta-section { padding: 80px 20px; }
  .page-hero { padding: 130px 20px 60px; }
}

/* === PAGE JCREATION VISUALS / PRESETS === */
.presets-hero-clean { min-height: 92vh; }
.presets-hero-content-clean { max-width: 980px; }
.presets-intro-section { background: var(--bg-main); }
.presets-pack-section { background: var(--bg-section); }
.presets-pricing-grid .preset-price-card { min-height: 430px; display: flex; flex-direction: column; }
.presets-pricing-grid .preset-price-card .card-link,
.presets-pricing-grid .preset-price-card .btn-primary { margin-top: auto; }
.preset-price-card .card-price { display: block; font-size: 2.2rem; margin: 14px 0 24px; }
.preset-note { display: block; margin-top: 12px; color: var(--text-muted); font-size: .78rem; font-family: var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 900px) { .presets-pricing-grid { grid-template-columns: 1fr; } }
