:root {
  --pink-50: #fff7f9;
  --pink-100: #fdeef1;
  --pink-200: #f9d7de;
  --pink-300: #f3b9c5;
  --pink-400: #eb93a5;
  --pink-500: #df7188;
  --pink-600: #bd5169;
  --rose-900: #5a2a35;
  --ink: #2f2629;
  --muted: #766a6e;
  --cream: #fffdfb;
  --line: rgba(90, 42, 53, 0.13);
  --shadow: 0 24px 65px rgba(80, 42, 52, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--pink-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--pink-500); }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; color: var(--rose-900); }
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.25rem, 4.8vw, 4rem); letter-spacing: -0.035em; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.26rem); color: var(--muted); max-width: 680px; }
.small { font-size: 0.9rem; color: var(--muted); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.topbar {
  background: var(--rose-900);
  color: white;
  text-align: center;
  font-size: 0.82rem;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 251, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; }
.brand-logo { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 24px rgba(90,42,53,0.14); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Playfair Display", Georgia, serif; font-size: 1.18rem; color: var(--rose-900); }
.brand-copy span { font-size: 0.68rem; color: var(--pink-600); margin-top: 5px; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 0.92rem; font-weight: 700; }
.nav-links a { position: relative; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--pink-500); transition: width .25s ease; }
.nav-links a:not(.btn):hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: 50%; cursor: pointer; }
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; background: var(--rose-900); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--pink-500); box-shadow: 0 12px 24px rgba(223, 113, 136, .24); }
.btn-primary:hover { background: var(--pink-600); }
.btn-secondary { color: var(--rose-900); background: white; border-color: var(--line); }
.btn-ghost { color: var(--pink-600); background: var(--pink-100); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 80% 20%, #ffdce4 0, transparent 31%), linear-gradient(135deg, #fffafb 0%, #fff1f4 100%); }
.hero::after { content: ""; position: absolute; width: 440px; height: 440px; border: 1px solid rgba(223,113,136,.22); border-radius: 50%; top: -220px; left: -190px; }
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; padding: 72px 0; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 em { color: var(--pink-500); font-style: italic; font-weight: 500; }
.hero-copy .lead { margin-top: 22px; }
.hero-visual { position: relative; }
.hero-card { position: relative; border-radius: 48px 48px 140px 48px; overflow: hidden; box-shadow: var(--shadow); background: var(--pink-200); aspect-ratio: 4 / 5; }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; left: -34px; bottom: 36px; width: 146px; height: 146px; background: white; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 16px 40px rgba(90,42,53,.16); padding: 18px; }
.hero-badge img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 34px; max-width: 560px; border-top: 1px solid var(--line); padding-top: 20px; }
.stat { padding-right: 18px; }
.stat strong { display: block; color: var(--rose-900); font-family: "Playfair Display", Georgia, serif; font-size: 1.55rem; }
.stat span { font-size: .78rem; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.soft-panel { background: var(--pink-50); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 52px; }
.photo-stack { position: relative; min-height: 560px; }
.photo-stack .photo-main { position: absolute; inset: 0 70px 60px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.photo-stack .photo-main img { width: 100%; height: 100%; object-fit: cover; }
.photo-stack .logo-float { position: absolute; width: 210px; height: 210px; right: 0; bottom: 0; background: white; padding: 16px; border-radius: 50%; box-shadow: var(--shadow); }
.photo-stack .logo-float img { border-radius: 50%; width: 100%; height: 100%; object-fit: cover; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card { background: white; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 12px 40px rgba(90,42,53,.06); }
.card-pad { padding: 28px; }
.icon-card { padding: 30px; min-height: 220px; }
.icon-chip { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: var(--pink-100); color: var(--pink-600); font-size: 1.3rem; margin-bottom: 28px; }
.icon-card p { color: var(--muted); margin-top: 12px; }

.product-card { display: flex; flex-direction: column; height: 100%; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-image { aspect-ratio: 1 / 1; overflow: hidden; background: var(--pink-100); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-title-row { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.price { color: var(--pink-600); font-weight: 900; white-space: nowrap; }
.product-body p { color: var(--muted); font-size: .92rem; margin: 10px 0 18px; }
.product-body .btn { margin-top: auto; align-self: flex-start; }
.menu-note { margin-top: 28px; padding: 18px 22px; border-radius: 16px; background: var(--pink-50); border: 1px solid var(--line); color: var(--muted); font-size: .9rem; }

.page-hero { background: linear-gradient(135deg, #fff7f9, #fde9ee); padding: 88px 0 70px; border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 64px; align-items: end; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.2rem); }
.page-hero .lead { margin-top: 18px; }
.page-kicker { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: white; border: 1px solid var(--line); color: var(--muted); font-size: .84rem; font-weight: 700; }

.steps { counter-reset: steps; }
.step { position: relative; padding: 30px 30px 30px 78px; border-top: 1px solid var(--line); }
.step::before { counter-increment: steps; content: counter(steps, decimal-leading-zero); position: absolute; left: 0; top: 28px; color: var(--pink-500); font-family: "Playfair Display", Georgia, serif; font-size: 2rem; }
.step p { color: var(--muted); margin: 8px 0 0; }

.form-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--rose-900); font-weight: 800; font-size: .86rem; }
input, select, textarea { width: 100%; border: 1px solid rgba(90,42,53,.18); border-radius: 14px; background: #fffdfd; padding: 13px 14px; color: var(--ink); outline: none; transition: border .2s ease, box-shadow .2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--pink-500); box-shadow: 0 0 0 4px rgba(223,113,136,.12); }
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); margin: 14px 0 0; }

.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 280px; gap: 18px; }
.gallery-item { overflow: hidden; border-radius: var(--radius-md); position: relative; }
.gallery-item.large { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); padding: 8px 12px; border-radius: 999px; font-size: .82rem; font-weight: 800; color: var(--rose-900); }

.founder-card { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center; padding: 38px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #fff9fa, #fde7ec); border: 1px solid var(--line); }
.founder-visual { aspect-ratio: 1 / 1; border-radius: 50%; background: white; display: grid; place-items: center; box-shadow: 0 18px 45px rgba(90,42,53,.1); padding: 22px; }
.founder-visual img { border-radius: 50%; width: 100%; height: 100%; object-fit: cover; }
.founder-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.founder-meta span { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.7); border: 1px solid var(--line); font-size: .82rem; font-weight: 700; color: var(--muted); }

.contact-list { display: grid; gap: 14px; margin-top: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.contact-item strong { display: block; color: var(--rose-900); }
.contact-item span, .contact-item a { color: var(--muted); font-size: .92rem; }

.quote { margin: 0; padding: 36px; border-radius: var(--radius-md); background: var(--rose-900); color: white; }
.quote p { font-family: "Playfair Display", Georgia, serif; font-size: 1.55rem; line-height: 1.4; }
.quote span { color: #f6cbd4; font-size: .88rem; }

.faq { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 20px 0; }
summary { cursor: pointer; list-style: none; font-weight: 800; color: var(--rose-900); display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--pink-500); font-size: 1.3rem; }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin: 12px 0 0; max-width: 820px; }

.cta { position: relative; overflow: hidden; padding: 72px; border-radius: 42px; background: linear-gradient(125deg, var(--rose-900), #7b3b49); color: white; }
.cta h2 { color: white; max-width: 720px; }
.cta p { color: #f6dce1; max-width: 640px; margin-top: 16px; }
.cta::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: rgba(255,255,255,.06); right: -70px; top: -150px; }

.footer { padding: 64px 0 28px; background: #2e2528; color: #f7eff1; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, .75fr); gap: 40px; }
.footer .brand-copy strong { color: white; }
.footer .brand-copy span { color: #f3aebe; }
.footer p { color: #c9bcc0; max-width: 400px; margin-top: 18px; }
.footer h4 { color: white; font-size: .9rem; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; color: #d6c9cd; font-size: .9rem; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: #b9abad; font-size: .8rem; }

.notice { padding: 16px 18px; border-radius: 14px; background: #fff4d8; border: 1px solid #f3dfaa; color: #7a6330; font-size: .87rem; }

@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 85px 20px auto 20px; background: white; border: 1px solid var(--line); border-radius: 24px; padding: 20px; display: none; flex-direction: column; align-items: stretch; gap: 8px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .menu-toggle { display: block; }
  .hero-grid, .split, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; gap: 50px; }
  .hero-visual { max-width: 620px; margin-inline: auto; }
  .page-kicker { justify-content: flex-start; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-row: span 1; grid-column: span 2; }
  .founder-card { grid-template-columns: 220px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 70px 0; }
  .section-sm { padding: 48px 0; }
  .nav-inner { min-height: 74px; }
  .brand-logo { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 1rem; }
  .hero-grid { padding: 48px 0 70px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-card { border-radius: 32px 32px 90px 32px; }
  .hero-badge { width: 112px; height: 112px; left: -6px; bottom: 18px; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; }
  .stat { padding-bottom: 10px; border-bottom: 1px solid var(--line); }
  .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .soft-panel, .form-card { padding: 28px; border-radius: 24px; }
  .photo-stack { min-height: 440px; }
  .photo-stack .photo-main { inset: 0 30px 46px 0; }
  .photo-stack .logo-float { width: 150px; height: 150px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gallery-item.large { grid-column: span 1; }
  .founder-card { grid-template-columns: 1fr; padding: 28px; }
  .founder-visual { width: min(250px, 100%); margin-inline: auto; }
  .cta { padding: 42px 28px; border-radius: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
