:root {
  --blush: #F7EEE7;
  --blush-deep: #EFDDD1;
  --rosegold: #C99A87;
  --rosegold-deep: #A8705B;
  --espresso: #241A16;
  --dustypink: #E3B8B3;
  --sauge: #8A9A7E;
  --white: #FFFFFF;
  --max-w: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--espresso);
  background: var(--blush);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
  line-height: 1.1;
  font-weight: 600;
}

a {
  color: inherit;
}

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

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

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.status-box {
  max-width: 620px;
  background: var(--white);
  padding: 48px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(36, 26, 22, 0.1);
}

.status-box h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 12px 0 18px;
}

.status-box p {
  max-width: 48ch;
  margin: 0 auto 28px;
  color: #4a352e;
}

.tag {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--rosegold-deep);
  display: inline-block;
}

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

/* NAV */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 238, 231, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(36, 26, 22, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-lockup img {
  width: 65px;
  /* Taille de l'image (au lieu de 44) */
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.7rem;
  /* Taille du texte principal (au lieu de 1.2) */
  letter-spacing: 0.2px;
  line-height: 1.15;
}

.brand small {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  /* Taille du "by Valou" (au lieu de 0.68) */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rosegold-deep);
}

nav.links {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}

nav.links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93rem;
  position: relative;
  padding-bottom: 4px;
}

nav.links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--rosegold-deep);
  transition: width .25s ease;
}

nav.links a:hover::after {
  width: 100%;
}

.cta-btn {
  background: var(--rosegold-deep);
  color: var(--white);
  border: none;
  padding: 11px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  background: #8f5b48;
  transform: translateY(-1px);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--espresso);
  display: block;
}

/* HERO */
.hero {
  padding: 56px 0 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.3rem);
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--rosegold-deep);
  font-style: italic;
}

.badge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.badge {
  background: var(--white);
  border: 1px solid var(--rosegold);
  color: var(--rosegold-deep);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero p.lead {
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 26px;
  color: #4a352e;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline {
  border: 2px solid var(--espresso);
  color: var(--espresso);
  background: transparent;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all .2s ease;
}

.btn-outline:hover {
  background: var(--espresso);
  color: var(--white);
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic .gallery-item {
  border-radius: 18px 46px 18px 46px;
  overflow: hidden;
  border: 1px solid rgba(36, 26, 22, 0.08);
  aspect-ratio: auto;
}

.scallop {
  width: 100%;
  height: 34px;
  display: block;
  margin-top: -2px;
}

section {
  padding: 76px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin-bottom: 10px;
}

.section-head p {
  color: #5a4038;
}

/* ABOUT */
.about {
  background: var(--blush-deep);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 52px;
  align-items: center;
}

.about-photo {
  aspect-ratio: 3/4;
  border-radius: 20px 60px 20px 60px;
  overflow: hidden;
  border: 1px solid rgba(36, 26, 22, 0.1);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 16px;
}

.about-text p {
  margin-bottom: 14px;
  color: #4a332c;
}

.signature-caveat {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--rosegold-deep);
  margin-top: 10px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(36, 26, 22, 0.08);
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.placeholder .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--rosegold-deep);
  background: linear-gradient(135deg, var(--blush-deep), var(--dustypink));
  border: 1px dashed var(--rosegold);
}

/* COMPOSITION SECTION */
.composition {
  background: var(--espresso);
  color: var(--blush);
}

.composition .section-head p {
  color: #d9c6bd;
}

.comp-diagram {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 28px;
}

.comp-diagram .layer-visual {
  width: 130px;
  height: 150px;
  border-radius: 8px 8px 20px 20px;
  flex-shrink: 0;
  background: repeating-linear-gradient(0deg, #F5DCC6 0 18px, #C9536B 18px 24px, #FFF6E9 24px 42px, #C9536B 42px 48px, #F5DCC6 48px 66px, #C9536B 66px 72px, #FFF6E9 72px 90px);
  border: 2px solid var(--rosegold);
}

.comp-diagram .legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.comp-diagram .legend span.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

.comp-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.comp-col h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--dustypink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.comp-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comp-col li {
  font-size: 0.9rem;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-col.supplement h3 {
  color: var(--rosegold);
}

.comp-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.9rem;
  color: #d9c6bd;
}

.allergen-box {
  margin-top: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(227, 184, 179, 0.4);
  border-left: 4px solid var(--dustypink);
  border-radius: 10px;
  padding: 16px 20px;
}

.allergen-box h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--dustypink);
}

.allergen-box p {
  font-size: 0.85rem;
  color: #d9c6bd;
  line-height: 1.6;
}

/* PRICING */
.pricing {
  background: var(--blush);
}

table.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(36, 26, 22, 0.06);
}

table.price-table th,
table.price-table td {
  padding: 16px 18px;
  text-align: center;
  font-size: 0.92rem;
}

table.price-table thead th {
  background: var(--rosegold-deep);
  color: var(--white);
  font-weight: 600;
  font-family: 'Fraunces', serif;
}

table.price-table tbody tr:nth-child(odd) {
  background: var(--blush-deep);
}

table.price-table tbody td:first-child {
  font-weight: 700;
  font-family: 'Fraunces', serif;
  text-align: left;
  padding-left: 24px;
}

.price-note {
  margin-top: 18px;
  font-size: 0.88rem;
  color: #5a4038;
}

.delivery-zones {
  margin-top: 36px;
}

.delivery-zones h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.zone-card {
  background: var(--white);
  border: 1px solid rgba(36, 26, 22, 0.08);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.zone-card .km {
  font-size: 0.82rem;
  color: #5a4038;
}

.zone-card .price {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rosegold-deep);
}

.zone-card.free .price {
  color: var(--sauge);
}

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(36, 26, 22, 0.08);
}

.step .num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--rosegold-deep);
  font-weight: 700;
}

.step h3 {
  font-size: 1.05rem;
  margin: 8px 0 6px;
}

.step p {
  font-size: 0.87rem;
  color: #6a4f45;
}

/* ORDER FORM */
.order {
  background: var(--blush-deep);
}

.order-card {
  background: var(--white);
  border-radius: 22px;
  padding: 38px;
  box-shadow: 0 20px 50px rgba(36, 26, 22, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field[hidden] {
  display: none;
}

.field.full {
  grid-column: 1 / -1;
}

.field.third {
  grid-column: span 1;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

label .req {
  color: var(--rosegold-deep);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
textarea,
select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(36, 26, 22, 0.18);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--blush);
  color: var(--espresso);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--rosegold-deep);
}

.file-drop {
  border: 2px dashed rgba(36, 26, 22, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-size: 0.88rem;
  color: #6a4f45;
  cursor: pointer;
  background: var(--blush);
  transition: border-color .2s ease;
}

.file-drop:hover {
  border-color: var(--rosegold-deep);
}

.file-drop input {
  display: none;
}

.file-name {
  font-weight: 600;
  color: var(--rosegold-deep);
  margin-top: 6px;
  font-size: 0.85rem;
}

.helper {
  font-size: 0.8rem;
  color: #7a6259;
}

.submit-row {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

fieldset {
  border: 1px solid rgba(36, 26, 22, 0.12);
  border-radius: 12px;
  padding: 16px 18px;
}

legend {
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0 6px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  border: 1.5px solid rgba(36, 26, 22, 0.18);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  background: var(--blush);
  user-select: none;
  transition: all .15s ease;
}

.chip input {
  display: none;
}

.chip.active,
.chip:has(input:checked) {
  background: var(--rosegold-deep);
  border-color: var(--rosegold-deep);
  color: var(--white);
}

.estimate-box {
  margin-top: 24px;
  padding: 20px 22px;
  background: var(--blush-deep);
  border-radius: 14px;
  border: 1.5px dashed var(--rosegold);
}

.estimate-box .estimate-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--rosegold-deep);
  margin-bottom: 6px;
}

.estimate-box .estimate-amount {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
}

.estimate-box .estimate-breakdown {
  font-size: 0.82rem;
  color: #5a4038;
  margin-top: 6px;
}

/* PRACTICAL INFO */
.practical {
  background: var(--espresso);
  color: var(--blush);
}

.practical .section-head p {
  color: #d9c6bd;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.practical-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
}

.practical-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--dustypink);
}

.practical-card p {
  font-size: 0.87rem;
  color: #d9c6bd;
}

/* FOOTER */
footer {
  background: #1a120f;
  color: #EADFD6;
  padding: 52px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

footer h4 {
  font-family: 'Fraunces', serif;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

footer p,
footer a {
  font-size: 0.88rem;
  color: #cbb9ae;
  text-decoration: none;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.78rem;
  color: #a8968c;
  text-align: center;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 26, 22, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--blush);
  border-radius: 20px;
  padding: 36px;
  max-width: 440px;
  text-align: center;
}

.modal .icon {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.modal h3 {
  margin-bottom: 10px;
}

.modal p {
  color: #5a4038;
  margin-bottom: 22px;
  font-size: 0.95rem;
}

@media (max-width: 880px) {
  nav.links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--blush);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    border-bottom: 1px solid rgba(36, 26, 22, 0.1);
    transform: translateY(-130%);
    opacity: 0;
    transition: all .25s ease;
    gap: 16px;
  }

  nav.links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mosaic {
    height: 280px;
    order: -1;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comp-cols {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .order-card {
    padding: 24px 18px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .practical-grid {
    grid-template-columns: 1fr;
  }

  .zone-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  table.price-table {
    font-size: 0.82rem;
  }

  table.price-table th,
  table.price-table td {
    padding: 10px 8px;
  }

  section {
    padding: 52px 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .zone-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand {
    font-size: 1.4rem;
  }
}

.cgv-title {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--espresso);
}

.cgv-text {
  color: #5a4038;
  font-size: 0.92rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.cgv-list {
  color: #5a4038;
  font-size: 0.92rem;
  margin: 0 0 12px 20px;
  line-height: 1.8;
}