/* ============================================================
   LG IT — Lola Gruson · Site web
   Palette & système (cohérent avec flyer + cartes)
   ============================================================ */
:root {
  --navy:   #0E2440;
  --navy-2: #16345C;
  --red:    #B7202E;
  --red-2:  #921824;
  --gold:   #B5894A;
  --gold-2: #D9B574;
  --cream:  #F4EBDA;
  --cream-2:#EFE3CC;
  --ink:    #1A1410;
  --muted:  #6B5E4D;

  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper-grain texture */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: radial-gradient(rgba(181,137,74,.05) 1px, transparent 1.4px);
  background-size: 7px 7px;
  pointer-events: none;
  z-index: 0;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

section { position: relative; z-index: 1; }

/* ===== Section label (mono kicker) ===== */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.kicker .num {
  background: var(--navy); color: var(--cream);
  padding: 2px 8px; border-radius: 2px; font-size: 10px;
}

.serif { font-family: 'Instrument Serif', serif; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,235,218,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14,36,64,.12);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo .badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  letter-spacing: -1px;
  position: relative;
  box-shadow: inset 0 0 0 1.3px var(--gold);
  flex-shrink: 0;
}
.logo .badge .chip {
  position: absolute; bottom: -7px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--cream);
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; letter-spacing: .18em;
  padding: 1px 6px; border-radius: 99px; text-transform: uppercase;
}
.logo .word {
  display: flex; flex-direction: column; line-height: 1.05;
}
.logo .word .name {
  font-family: 'Instrument Serif', serif;
  font-size: 20px; color: var(--navy);
}
.logo .word .name em { color: var(--red); font-style: italic; }
.logo .word .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-top: 1px;
}

.nav {
  display: flex; align-items: center; gap: 30px;
}
.nav a {
  font-size: 14px; font-weight: 600;
  color: var(--navy); text-decoration: none;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-red {
  background: var(--red); color: var(--cream);
  box-shadow: 0 4px 14px rgba(183,32,46,.28);
}
.btn-red:hover { background: var(--red-2); box-shadow: 0 6px 18px rgba(183,32,46,.34); }
.btn-navy {
  background: var(--navy); color: var(--cream);
  box-shadow: 0 4px 14px rgba(14,36,64,.25);
}
.btn-navy:hover { background: var(--navy-2); }
.btn-ghost {
  background: transparent; color: var(--navy);
  box-shadow: inset 0 0 0 1.5px rgba(14,36,64,.3);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  transition: .25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 90px 0 80px;
  position: relative;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.hero .topline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.hero .topline .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 86px);
  line-height: .98;
  color: var(--navy);
  letter-spacing: -.02em;
}
.hero h1 .accent { color: var(--red); font-style: italic; position: relative; white-space: nowrap; }
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 8px; background: var(--gold-2); opacity: .5; border-radius: 2px; z-index: -1;
}

.hero .lead {
  font-size: 18px; color: var(--muted);
  margin-top: 26px; max-width: 480px;
  text-wrap: pretty;
}
.hero .lead b { color: var(--navy); font-weight: 600; }

.hero .cta {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px;
}

.hero .meta {
  display: flex; gap: 26px; margin-top: 38px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy);
}
.hero .meta .item { display: flex; align-items: center; gap: 8px; }
.hero .meta .item .b { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.hero .meta .item:nth-child(2) .b { background: var(--red); }
.hero .meta .item:nth-child(3) .b { background: var(--navy); }

/* Hero visual — big logo medallion */
.hero .visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.medallion {
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  box-shadow: inset 0 0 0 2px var(--gold), 0 30px 70px rgba(14,36,64,.35);
}
.medallion::after {
  content: ""; position: absolute; inset: -14px;
  border-radius: 50%; border: 1.5px dashed var(--gold); opacity: .5;
}
.medallion .lg {
  font-family: 'Instrument Serif', serif;
  font-size: 130px; color: var(--cream); line-height: 1; letter-spacing: -4px;
}
.medallion .chip {
  margin-top: 14px;
  background: var(--red); color: var(--cream);
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px; letter-spacing: .35em;
  padding: 5px 18px; border-radius: 99px; text-transform: uppercase;
}
.medallion .ring-txt {
  position: absolute; bottom: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-2);
}

/* floating accent dots */
.hero .visual .float {
  position: absolute; border-radius: 50%;
}
.hero .visual .f1 { width: 16px; height: 16px; background: var(--red); top: 12%; right: 14%; }
.hero .visual .f2 { width: 10px; height: 10px; background: var(--gold); bottom: 16%; left: 10%; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 80px 0; background: var(--cream-2); border-top: 1px solid rgba(14,36,64,.1); border-bottom: 1px solid rgba(14,36,64,.1); }
.section-head {
  max-width: 640px; margin-bottom: 48px;
}
.section-head h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.02;
  color: var(--navy);
  letter-spacing: -.015em;
}
.section-head h2 em { color: var(--red); font-style: italic; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; text-wrap: pretty; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--cream);
  border: 1px solid rgba(14,36,64,.14);
  border-radius: 8px;
  padding: 26px 24px 24px;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red); transform: scaleY(0); transform-origin: top;
  transition: transform .25s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(14,36,64,.12);
  border-color: rgba(14,36,64,.22);
}
.svc-card:hover::before { transform: scaleY(1); }
.svc-card .ic {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--navy); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-card .ic svg { width: 24px; height: 24px; }
.svc-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 7px;
}
.svc-card p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 88px 0; }
.pricing .panel {
  background: var(--navy);
  border-radius: 16px;
  padding: 56px 56px 50px;
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.pricing .panel::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid var(--gold); opacity: .25;
}
.pricing .panel::after {
  content: ""; position: absolute; right: -30px; top: -30px;
  width: 180px; height: 180px; border-radius: 50%;
  border: 1px solid var(--gold); opacity: .35;
}
.pricing .phead { position: relative; z-index: 1; margin-bottom: 38px; max-width: 560px; }
.pricing .phead .kicker { color: var(--gold-2); }
.pricing .phead .kicker .num { background: var(--gold); color: var(--navy); }
.pricing .phead h2 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(32px, 4vw, 48px); line-height: 1.04; color: var(--cream);
  letter-spacing: -.01em;
}
.pricing .phead h2 em { color: var(--gold-2); font-style: italic; }
.pricing .phead p { color: rgba(244,235,218,.7); margin-top: 12px; font-size: 16px; }

.price-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px; position: relative; z-index: 1;
}
.price-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  border-bottom: 1px dashed rgba(217,181,116,.4);
  padding-bottom: 16px;
}
.price-row .info .t { font-weight: 600; font-size: 17px; color: var(--cream); }
.price-row .info .d {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .08em; color: rgba(244,235,218,.55);
  margin-top: 4px; text-transform: uppercase;
}
.price-row .val {
  font-family: 'Instrument Serif', serif;
  font-size: 30px; color: var(--gold-2); white-space: nowrap; letter-spacing: -.01em;
}
.pricing .note {
  margin-top: 30px; position: relative; z-index: 1;
  font-size: 13px; color: rgba(244,235,218,.6);
  font-family: 'JetBrains Mono', monospace; letter-spacing: .06em;
}

/* ============================================================
   ZONE
   ============================================================ */
.zone { padding: 80px 0; background: var(--cream-2); border-top: 1px solid rgba(14,36,64,.1); border-bottom: 1px solid rgba(14,36,64,.1); }
.zone .grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center;
}
.zone .cities {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px;
}
.zone .city {
  font-family: 'Instrument Serif', serif;
  font-size: 26px; color: var(--navy);
  padding: 8px 22px;
  border: 1px solid rgba(14,36,64,.2);
  border-radius: 99px;
  background: var(--cream);
}
.zone .city.gold { color: var(--gold); border-color: rgba(181,137,74,.5); }
.zone .city.red  { color: var(--red); border-color: rgba(183,32,46,.4); }
.zone .radius {
  margin-top: 24px;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  letter-spacing: .12em; color: var(--muted);
}
.zone .radius b { color: var(--red); font-weight: 500; }

/* Map-ish medallion */
.zone .map {
  background: var(--navy);
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(14,36,64,.25);
  display: flex; align-items: center; justify-content: center;
}
.zone .map .rings { position: absolute; }
.zone .map .ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--gold);
  left: 50%; top: 50%; transform: translate(-50%,-50%); opacity: .3;
}
.zone .map .pin {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.zone .map .pin .dot {
  width: 18px; height: 18px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 6px rgba(183,32,46,.25);
}
.zone .map .pin .label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase; color: var(--gold-2);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 90px 0; }
.about .grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.about .portrait {
  aspect-ratio: 1; border-radius: 16px;
  background: linear-gradient(150deg, var(--navy), var(--navy-2));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 50px rgba(14,36,64,.25);
}
.about .portrait::after { content: ""; position: absolute; inset: 14px; border: 1px dashed var(--gold); border-radius: 10px; opacity: .4; }
.about .portrait .lg {
  font-family: 'Instrument Serif', serif; font-size: 110px; color: var(--cream); letter-spacing: -4px;
}
.about .portrait .chip {
  position: absolute; bottom: 30px;
  background: var(--red); color: var(--cream);
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  letter-spacing: .3em; padding: 5px 16px; border-radius: 99px; text-transform: uppercase;
}
.about h2 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(32px, 4.2vw, 50px); line-height: 1.04; color: var(--navy); letter-spacing: -.015em;
}
.about h2 em { color: var(--red); font-style: italic; }
.about p { color: var(--muted); font-size: 17px; margin-top: 18px; max-width: 560px; text-wrap: pretty; }
.about .stamps { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.about .stamp {
  display: flex; align-items: center; gap: 9px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy);
  background: var(--cream-2); border: 1px solid rgba(14,36,64,.14);
  padding: 9px 16px; border-radius: 99px;
}
.about .stamp svg { width: 15px; height: 15px; color: var(--red); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 90px 0 100px; background: var(--cream-2); border-top: 1px solid rgba(14,36,64,.1); }
.contact .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.contact .head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.contact .head h2 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(34px, 4.5vw, 54px); line-height: 1.02; color: var(--navy); letter-spacing: -.015em;
}
.contact .head h2 em { color: var(--red); font-style: italic; }
.contact .head .kicker { display: inline-flex; }
.contact .head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

.ccard {
  background: var(--cream);
  border: 1px solid rgba(14,36,64,.14);
  border-radius: 12px;
  padding: 34px 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.ccard.dark { background: var(--navy); color: var(--cream); border-color: var(--gold); }
.ccard .lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--red);
}
.ccard.dark .lbl { color: var(--gold-2); }

.crow { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.crow .ic {
  width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-2); color: var(--navy);
  border: 1px solid rgba(14,36,64,.14);
}
.ccard.dark .crow .ic { background: rgba(244,235,218,.08); color: var(--gold-2); border-color: rgba(217,181,116,.3); }
.crow .ic svg { width: 22px; height: 22px; }
.crow .meta .k {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.ccard.dark .crow .meta .k { color: rgba(244,235,218,.55); }
.crow .meta .v {
  font-family: 'Instrument Serif', serif; font-size: 23px; color: var(--navy); line-height: 1.1;
}
.ccard.dark .crow .meta .v { color: var(--cream); }
.crow:hover .meta .v { color: var(--red); }
.ccard.dark .crow:hover .meta .v { color: var(--gold-2); }

.ccard .hours { display: flex; flex-direction: column; gap: 8px; }
.ccard .hours .h-row {
  display: flex; justify-content: space-between; font-size: 14px;
  border-bottom: 1px dashed rgba(217,181,116,.4); padding-bottom: 8px;
}
.ccard .hours .h-row .d { color: rgba(244,235,218,.85); font-weight: 600; }
.ccard .hours .h-row .t { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--gold-2); }
.ccard .wa-note {
  margin-top: auto; display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(244,235,218,.75);
}
.ccard .wa-note .pill {
  background: #25D366; color: #07351b;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: .12em; padding: 3px 9px; border-radius: 99px; text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: var(--cream); padding: 50px 0 36px; }
.site-footer .top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; padding-bottom: 30px;
  border-bottom: 1px solid rgba(217,181,116,.25);
}
.site-footer .logo .word .name { color: var(--cream); }
.site-footer .logo .word .sub { color: var(--gold-2); }
.site-footer .badge { box-shadow: inset 0 0 0 1.3px var(--gold); }
.site-footer .fnav { display: flex; gap: 26px; flex-wrap: wrap; }
.site-footer .fnav a {
  color: rgba(244,235,218,.8); text-decoration: none; font-size: 14px; font-weight: 600;
}
.site-footer .fnav a:hover { color: var(--gold-2); }
.site-footer .bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 26px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .1em; color: rgba(244,235,218,.55);
}
.site-footer .bottom .stamps { display: flex; gap: 16px; }
.site-footer .bottom .stamps span { position: relative; }
.site-footer .bottom .stamps span + span::before {
  content: "·"; color: var(--gold); margin-right: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero .grid { grid-template-columns: 1fr; gap: 40px; }
  .hero .visual { order: -1; }
  .medallion { width: 240px; height: 240px; }
  .medallion .lg { font-size: 96px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .zone .grid, .about .grid { grid-template-columns: 1fr; gap: 36px; }
  .about .portrait { max-width: 340px; }
  .price-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    background: var(--cream);
    flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 1px solid rgba(14,36,64,.15);
    padding: 8px 0;
    transform: translateY(-120%); transition: transform .3s ease;
    box-shadow: 0 18px 40px rgba(14,36,64,.15);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 28px; }
  .nav a::after { display: none; }
  .nav .btn { margin: 10px 28px; justify-content: center; }
  .nav-toggle { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .contact .grid { grid-template-columns: 1fr; }
  .pricing .panel { padding: 38px 26px 34px; }
  .hero { padding: 56px 0 50px; }
  .wrap { padding: 0 20px; }
}
