/* ==========================================================================
   Elystia — Design tokens
   ========================================================================== */
:root {
  --bordeaux: #6B2334;
  --bordeaux-dark: #4A1826;
  --gold: #B8862B;
  --gold-light: #E4C77A;
  --cream: #FAF6F1;
  --cream-deep: #F1E9DF;
  --ink: #2E2A28;
  --muted: #756F6A;
  --white: #FFFFFF;
  --line: #E4DAD0;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Atkinson Hyperlegible", Arial, sans-serif;

  --max-width: 1120px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--bordeaux);
  line-height: 1.15;
  margin: 0 0 0.5em 0;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1.1em 0; max-width: 68ch; }

a {
  color: var(--bordeaux);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--bordeaux);
  color: var(--white);
}
.btn-primary:hover { background: var(--bordeaux-dark); }

.btn-secondary {
  background: transparent;
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}
.btn-secondary:hover { background: var(--bordeaux); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: #a5761f; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--bordeaux);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.main-nav a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding: 0.25em 0;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.2s ease;
}
.main-nav a:not(.btn):hover::after,
.main-nav a:not(.btn).active::after {
  right: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle svg { width: 28px; height: 28px; color: var(--bordeaux); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a:not(.btn) { font-size: 1.3rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 280px; margin: 0 auto; }
}

.hero-copy {
  animation: rise 0.7s ease both;
}
.hero-photo {
  animation: rise 0.7s ease 0.15s both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 { margin-bottom: 0.4em; }

.hero .lede {
  font-size: 1.2rem;
  color: var(--ink);
  max-width: 46ch;
}

.hero .highlight {
  background: linear-gradient(transparent 60%, var(--gold-light) 60%);
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-note {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.photo-frame {
  position: relative;
  background: var(--white);
  border: 2px solid var(--bordeaux);
  border-radius: var(--radius);
  padding: 0.6rem;
  box-shadow: 0 18px 34px -18px rgba(74, 24, 38, 0.35);
}
.photo-frame .inner {
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bordeaux);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption {
  text-align: center;
  margin-top: 0.7rem;
  font-weight: 700;
  color: var(--ink);
}
.photo-caption span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ==========================================================================
   Quote / humour aside
   ========================================================================== */
.aside-quote {
  border-left: 6px solid var(--bordeaux);
  background: var(--cream-deep);
  padding: 1.4rem 1.8rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: clamp(2rem, 5vw, 3rem) 0;
}
.aside-quote p { margin: 0; max-width: none; }
.aside-quote p:first-child { color: var(--ink); }
.aside-quote p:last-child { color: var(--bordeaux); font-weight: 700; margin-top: 0.3em; }

/* ==========================================================================
   Sections
   ========================================================================== */
section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section-head { max-width: 60ch; margin-bottom: 2.2rem; }
.section-head p { color: var(--muted); }

.section-alt { background: var(--cream-deep); }

/* Services list (editorial, not cards) */
.service-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.service-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.service-list .icon {
  flex: none;
  width: 44px; height: 44px;
  color: var(--bordeaux);
}
.service-list .icon svg { width: 100%; height: 100%; }
.service-list h3 { margin-bottom: 0.2em; }
.service-list p { margin: 0; color: var(--muted); }

/* Pricing */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 780px) {
  .pricing-row { grid-template-columns: 1fr; }
}
.price-tile {
  padding: 2rem 1.6rem;
  background: var(--white);
  border-left: 1px solid var(--line);
}
.price-tile:first-child { border-left: none; }
@media (max-width: 780px) {
  .price-tile { border-left: none; border-top: 1px solid var(--line); }
  .price-tile:first-child { border-top: none; }
}
.price-tile.featured {
  background: var(--bordeaux);
  color: var(--white);
}
.price-tile .label {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.price-tile.featured .label { color: var(--gold-light); }
.price-tile .amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--bordeaux);
  margin: 0.25em 0 0.35em;
}
.price-tile.featured .amount { color: var(--white); }
.price-tile .desc { color: var(--muted); font-size: 0.98rem; margin: 0; }
.price-tile.featured .desc { color: rgba(255,255,255,0.85); }
.price-note {
  text-align: left;
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1rem;
}

/* Reassurance strip */
.reassurance {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) 0;
}
.reassurance .heart { width: 26px; height: 26px; color: var(--bordeaux); margin: 0 auto 0.6rem; }
.reassurance p { margin: 0 auto; color: var(--ink); font-style: italic; font-size: 1.15rem; }

/* CTA band */
.cta-band {
  background: var(--bordeaux);
  color: var(--white);
}
.cta-band h2 { color: var(--white); }
.cta-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-band p { color: rgba(255,255,255,0.85); margin: 0.3em 0 0; }
.cta-band .btn-gold:hover { background: var(--gold-light); }

/* Footer */
.site-footer {
  background: var(--bordeaux-dark);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 2rem;
}
.site-footer a { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 { color: var(--gold-light); font-family: var(--font-body); font-size: 1rem; margin-bottom: 0.8em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.5em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.4rem;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-header {
  padding: clamp(2.2rem, 5vw, 3.5rem) 0 1rem;
}
.page-header p.lede { color: var(--muted); font-size: 1.15rem; max-width: 60ch; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  padding: 1.3rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question .plus {
  flex: none;
  width: 22px; height: 22px;
  color: var(--bordeaux);
  transition: transform 0.2s ease;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { color: var(--muted); padding-bottom: 1.3rem; margin: 0; }
.faq-item.open .faq-answer { max-height: 400px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-list {
  list-style: none;
  margin: 1.5rem 0 0; padding: 0;
}
.contact-info-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.contact-info-list .icon { width: 26px; height: 26px; color: var(--bordeaux); flex: none; }

.form-field { margin-bottom: 1.3rem; }
.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4em;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 0.75em 0.9em;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 130px; }

/* ==========================================================================
   Booking modal (placeholder — will host Cal.com embed later)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 42, 40, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 100;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 2.2rem;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px; height: 32px;
  color: var(--muted);
}
.modal-close svg { width: 100%; height: 100%; }
.modal-box h3 { margin-bottom: 0.4em; }
.modal-box p { color: var(--muted); }
.modal-actions { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.4rem; }

/* Mentions légales / à propos text pages */
.prose h2 { margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.5em; }
