:root {
  --cream: #fbf3ec;
  --cream-2: #f6e7dc;
  --rose: #cf8f82;
  --rose-dark: #ae6d62;
  --copper: #bd765e;
  --ink: #171615;
  --muted: #6f625d;
  --white: #fffdfb;
  --line: rgba(174, 109, 98, .25);
  --shadow: 0 18px 50px rgba(80, 48, 39, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 6vw;
  background: rgba(251, 243, 236, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(174, 109, 98, .12);
}
.brand { display: inline-flex; align-items: baseline; gap: 7px; }
.brand-hello { font-family: "Italiana", serif; font-size: 30px; }
.brand-loulou { font-family: "Parisienne", cursive; font-size: 34px; color: var(--rose-dark); }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.main-nav a { transition: color .2s; }
.main-nav a:hover { color: var(--rose-dark); }
.nav-cta { padding: 11px 18px; border: 1px solid var(--rose-dark); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 24px; }

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 6vw;
  padding: 70px 7vw 90px;
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 600;
}
h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: "Italiana", serif; font-weight: 400; }
h1 { font-size: clamp(54px, 7vw, 96px); line-height: .98; letter-spacing: -.03em; margin-bottom: 28px; }
h1 em { font-family: "Parisienne", cursive; color: var(--rose-dark); font-weight: 400; }
h2 { font-size: clamp(38px, 5vw, 62px); line-height: 1.08; margin-bottom: 18px; }
.hero-text { max-width: 620px; font-size: 18px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 25px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--rose-dark);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.button.primary { background: var(--rose-dark); color: white; }
.button.primary:hover { background: #965a51; }
.button.secondary { background: transparent; }
.hero-note { display: flex; flex-wrap: wrap; gap: 9px 14px; color: var(--muted); font-size: 13px; }
.hero-note span { color: var(--rose-dark); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual img {
  width: min(620px, 100%);
  border-radius: 48% 48% 20px 20px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.visual-ring {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid var(--copper);
  border-radius: 50%;
  top: -4%;
  right: -5%;
}

.intro {
  padding: 26px 8vw;
  text-align: center;
  background: var(--rose-dark);
  color: white;
  font-family: "Italiana", serif;
  font-size: clamp(22px, 3vw, 32px);
}
.intro p { margin: 0; }

.section { padding: 105px 7vw; }
.section-heading { max-width: 740px; margin: 0 auto 55px; text-align: center; }
.section-heading > p:last-child { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  min-height: 320px;
  padding: 34px 28px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon { font-size: 34px; margin-bottom: 40px; }
.card h3 { font-family: "Italiana", serif; font-size: 28px; }
.card p { color: var(--muted); }
.card a { display: inline-block; margin-top: 18px; color: var(--rose-dark); font-weight: 600; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1150px;
  margin: 0 auto;
}
.product-card { text-align: left; }
.product-photo {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream-2);
  border: 1px dashed var(--line);
  margin-bottom: 16px;
  display: grid;
  place-items: center;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-name { font-family: "Italiana", serif; font-size: 20px; margin: 0 0 4px; }
.product-price { color: var(--rose-dark); font-weight: 600; margin: 0; }

.story {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7vw;
  align-items: center;
  background: var(--white);
}
.story-image {
  min-height: 520px;
  border-radius: 260px 260px 24px 24px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.8), transparent 25%),
    linear-gradient(145deg, #eccfc4, #c98979);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.story-monogram {
  width: 210px;
  aspect-ratio: 1;
  border: 1px solid white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font: 78px "Italiana", serif;
}
.story-copy p { color: var(--muted); font-size: 17px; }
.signature { margin-top: 30px; font: 42px "Parisienne", cursive; color: var(--rose-dark); }

.steps { background: var(--cream-2); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1050px; margin: auto; }
.step { padding: 35px; border-top: 1px solid var(--rose-dark); }
.step span { color: var(--rose-dark); letter-spacing: .18em; font-size: 12px; }
.step h3 { font: 30px "Italiana", serif; margin: 18px 0 10px; }
.step p { color: var(--muted); }

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7vw;
  align-items: start;
}
.contact-copy > p { color: var(--muted); }
.contact-details { margin-top: 36px; }
.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 7px; font-size: 14px; font-weight: 600; }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font: inherit;
}
textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--muted); margin: 0; }

footer {
  padding: 60px 7vw 35px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.footer-brand { margin-bottom: 12px; }
footer p { color: var(--muted); }
.legal { margin-top: 30px; font-size: 12px; }

@media (max-width: 980px) {
  .hero, .story, .contact { grid-template-columns: 1fr; }
  .hero { padding-top: 45px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-visual { max-width: 650px; margin: 20px auto 0; }
  .cards, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .story-image { min-height: 430px; }
}

@media (max-width: 720px) {
  .site-header { padding-inline: 20px; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 18px; right: 18px; top: 74px;
    padding: 22px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav a { text-align: center; }
  .hero { padding: 42px 22px 70px; min-height: auto; }
  h1 { font-size: 54px; }
  .section { padding: 78px 22px; }
  .cards, .step-grid, .shop-grid { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .hero-note { display: none; }
  .contact-form { padding: 24px; }
}
