html, body { overflow-x: hidden; max-width: 100vw; }
:root {
  --ink: #3A2436;
  --bg: #FFF8F6;
  --primary: #E8735A;
  --primary-dark: #C24E38;
  --accent: #4A2545;
  --white: #FFFFFF;
  --muted: #8C7A87;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Karla', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; }
h1, h2, h3 { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--accent); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.site-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 6vw; position: sticky; top: 0; background: var(--bg); z-index: 100; }
.logo { font-family: 'Fredoka', sans-serif; font-size: 24px; font-weight: 700; color: var(--accent); }
.main-nav { display: flex; gap: 32px; }
.main-nav a { font-size: 14px; font-weight: 600; }
.main-nav a:hover { color: var(--primary); }
.nav-cta { background: var(--primary); color: #fff; padding: 12px 24px; border-radius: 100px; font-weight: 700; font-size: 14px; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--accent); }

/* HERO */
.hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 5vw; padding: 6vw 6vw 8vw; max-width: 1300px; margin: 0 auto; }
.hero-eyebrow { color: var(--primary); font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.hero h1 { font-size: clamp(38px, 5vw, 60px); line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero-desc { color: var(--muted); font-size: 16px; max-width: 400px; margin-bottom: 28px; }
.hero-btn { display: inline-block; background: var(--accent); color: #fff; padding: 15px 30px; border-radius: 100px; font-weight: 700; font-size: 14px; }
.hero-arch { border-radius: 200px 200px 20px 20px; overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 20px 50px rgba(232,115,90,0.25); }
.hero-arch img { width: 100%; height: 100%; object-fit: cover; }

/* APROPOS */
.apropos-section { position: relative; padding: 8vw 6vw; max-width: 900px; margin: 0 auto; text-align: center; }
.apropos-blob { position: absolute; top: -60px; right: 10%; width: 220px; height: 220px; background: var(--primary); opacity: 0.12; border-radius: 50%; z-index: -1; }
.section-label { color: var(--primary); font-weight: 700; letter-spacing: 0.06em; font-size: 13px; text-transform: uppercase; margin-bottom: 12px; }
.section-label.center { text-align: center; }
.apropos-content h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 18px; line-height: 1.3; }
.apropos-content h2 span { color: var(--primary); }
.apropos-content p { color: var(--muted); font-size: 15.5px; }

/* PRESTATIONS */
.prestations-section { background: var(--accent); padding: 8vw 6vw; }
.prestations-section h2.center { color: #fff; text-align: center; margin-bottom: 44px; font-size: clamp(26px, 3.6vw, 36px); }
.prestations-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.prestation-pill { display: flex; align-items: center; gap: 22px; background: rgba(255,255,255,0.06); border-radius: 100px; padding: 18px 30px; }
.pill-icon { font-size: 30px; }
.prestation-pill h3 { color: #fff; font-size: 17px; margin-bottom: 4px; }
.prestation-pill p { color: #D8C8D4; font-size: 13.5px; font-family: 'Karla', sans-serif; }

/* LOOKS */
.looks-section { padding: 8vw 6vw; max-width: 1200px; margin: 0 auto; }
.looks-section h2.center { text-align: center; margin-bottom: 46px; font-size: clamp(26px, 3.6vw, 36px); }
.looks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.look-arch { border-radius: 140px 140px 16px 16px; overflow: hidden; aspect-ratio: 3/4; }
.look-arch img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.look-arch:hover img { transform: scale(1.06); }

/* QUOTE */
.quote-section { background: var(--primary); padding: 6vw; text-align: center; }
.quote-section p { font-family: 'Fredoka', sans-serif; font-size: clamp(22px, 3.2vw, 32px); color: #fff; max-width: 720px; margin: 0 auto 14px; }
.quote-section span { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; }

/* CONTACT */
.contact-section { padding: 8vw 6vw; }
.contact-card { max-width: 800px; margin: 0 auto; background: var(--white); border-radius: 40px; padding: 5vw; box-shadow: 0 14px 40px rgba(58,36,54,0.08); text-align: center; }
.contact-card h2 { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 26px; }
.contact-card h2 span { color: var(--primary); }
.contact-info-row { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-bottom: 30px; font-size: 14px; color: var(--muted); }
#contact-form { display: flex; flex-direction: column; gap: 12px; max-width: 440px; margin: 0 auto; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
#contact-form input, #contact-form textarea { border: 2px solid #F4DED8; background: var(--bg); border-radius: 16px; padding: 12px 16px; font-family: inherit; font-size: 14px; }
.checkbox-line { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--muted); }
#contact-form button { background: var(--primary); color: #fff; border: none; padding: 15px; border-radius: 100px; font-weight: 700; font-size: 14px; cursor: pointer; }
.form-message { font-size: 13px; color: var(--primary-dark); font-weight: 600; }

/* FOOTER */
.site-footer { background: var(--accent); color: #D8C8D4; padding: 40px 6vw; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: 'Fredoka', sans-serif; color: #fff; font-size: 20px; font-weight: 700; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 13px; }
.footer-legal { display: flex; gap: 16px; align-items: center; font-size: 11px; }

@media (max-width: 900px) {
  .main-nav, .nav-cta { display: none; }
  .main-nav.nav-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); padding: 20px 6vw; gap: 16px; z-index: 99; }
  .site-header { position: sticky; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .prestation-pill { border-radius: 24px; }
  .looks-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; text-align: center; }
}
