/* LumaAtelier — corporate beauty storefront + welcome gift */
:root {
  --bg: #f7f1ec;
  --bg2: #efe4dc;
  --ink: #2a1c22;
  --dim: #6f5a62;
  --line: rgba(92, 42, 58, .14);
  --rose: #8b3a4c;
  --rose-deep: #5c2a3a;
  --blush: #e8b4b8;
  --sand: #d9c3b4;
  --white: #fffdfb;
  --font: "DM Sans", var(--android-font);
  --display: "Cormorant Garamond", "Noto Serif", Georgia, serif;
  --shell: 1080px;
}

* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.beauty-theme {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(232, 180, 184, .35), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 10%, rgba(217, 195, 180, .4), transparent 50%),
    linear-gradient(180deg, #faf5f1 0%, var(--bg) 40%, #f3ebe4 100%);
  line-height: 1.55;
  overscroll-behavior-y: none;
}
img { max-width: 100%; display: block; }
button, a.be-btn { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; z-index: 99; padding: 8px; }
.be-shell { width: min(100% - 32px, var(--shell)); margin-inline: auto; }

.be-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(247, 241, 236, .9);
  border-bottom: 1px solid var(--line);
}
.be-nav {
  display: flex; align-items: center; gap: 16px; min-height: 68px;
}
.be-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--rose-deep);
}
.be-mark {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--blush), var(--rose));
  color: #fff; font-family: var(--font); font-size: 14px; font-weight: 700;
}
.be-links { display: none; gap: 18px; margin-inline-start: 12px; }
.be-links a { font-size: 13px; font-weight: 500; color: var(--dim); }
.be-links a:hover { color: var(--rose-deep); }
.be-actions { margin-inline-start: auto; display: flex; align-items: center; gap: 8px; }
.lang-switch {
  display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--white);
}
.be-lang-select {
  border: 0; background: transparent; font: inherit; font-size: 12px; font-weight: 700;
  color: var(--rose-deep); padding: 7px 10px; max-width: 118px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.be-menu {
  width: var(--android-tap); height: var(--android-tap); border-radius: 10px; border: 1px solid var(--line);
  display: grid; place-content: center; gap: 5px; background: var(--white);
}
.be-menu span { display: block; width: 16px; height: 2px; background: var(--ink); }
.be-mobile {
  display: grid; gap: 2px; padding: 8px 16px 14px; border-top: 1px solid var(--line);
}
.be-mobile a { padding: 12px 4px; font-weight: 600; color: var(--dim); }
.be-mobile[hidden] { display: none !important; }

.be-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 700; padding: 12px 18px;
  min-height: var(--android-tap);
}
.be-btn svg { width: 18px; height: 18px; fill: currentColor; }
.be-btn-sm { padding: 8px 14px; font-size: 12px; background: var(--rose-deep); color: #fff; min-height: 40px; }
.be-btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff; box-shadow: 0 12px 28px rgba(92, 42, 58, .28);
  padding: 14px 22px; font-size: 15px;
}
.be-btn.disabled { opacity: .45; pointer-events: none; }

.be-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 10px;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.2; font-weight: 600; }
h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; color: var(--rose-deep); }
.be-section-sub { color: var(--dim); max-width: 58ch; margin-bottom: 22px; }

/* —— Hero (restored full-bleed) —— */
.be-hero {
  position: relative; min-height: min(88vh, 88dvh, 720px);
  display: grid; align-items: end;
  color: #fff;
}
.be-hero-media {
  position: absolute; inset: 0;
  background-color: #3d1f2a;
  background-image:
    linear-gradient(180deg, rgba(42, 28, 34, .25) 0%, rgba(42, 28, 34, .72) 100%),
    var(--hero-img, linear-gradient(135deg, #8b3a4c, #3d1f2a));
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.be-hero-copy {
  position: relative; z-index: 1;
  padding: calc(32px + var(--safe-t)) 0 calc(48px + var(--safe-b));
  max-width: min(100% - 32px, 640px);
  margin-inline: auto 0;
  margin-left: max(16px, calc((100% - var(--shell)) / 2));
}
.be-hero .be-kicker { color: #f3d4d7; }
.be-hero h1 {
  font-size: clamp(42px, 8vw, 72px); margin-bottom: 8px; letter-spacing: .02em;
}
.be-lead-title {
  font-family: var(--display); font-size: clamp(22px, 3.5vw, 32px);
  margin-bottom: 12px; opacity: .95;
}
.be-lead { max-width: 40ch; opacity: .9; margin-bottom: 22px; font-size: 15px; }

/* —— Offer / download (changed area) —— */
.be-offer { padding: 28px 0 8px; }
.be-offer-card {
  display: grid;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 18px 40px rgba(92, 42, 58, .08);
  background-image:
    linear-gradient(135deg, rgba(232, 180, 184, .22), transparent 45%),
    linear-gradient(#fffdfb, #fffdfb);
}
.be-pill {
  display: inline-block; margin-bottom: 12px;
  background: rgba(139, 58, 76, .1); color: var(--rose-deep);
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px;
}
.be-offer-card h2 { font-size: clamp(24px, 3.6vw, 34px); }
.be-offer-main > p { color: var(--dim); max-width: 54ch; margin-bottom: 12px; }
.be-value-row {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-bottom: 12px;
}
.be-value {
  display: inline-block;
  background: var(--rose-deep);
  color: #fff;
  font-size: 12px; font-weight: 800;
  padding: 6px 11px; border-radius: 999px;
}
.be-limit {
  display: inline-block;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--rose-deep);
  font-size: 12px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px;
}
.be-offer-note { font-size: 13px; font-weight: 600; color: var(--rose-deep) !important; margin-bottom: 16px !important; }

.be-gift-float {
  position: relative;
  width: min(168px, 42vw);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(92, 42, 58, .2);
  animation: be-gift-bob 3.2s ease-in-out infinite;
}
.be-gift-float::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  pointer-events: none;
}
.be-gift-float img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .45s ease;
}
.be-gift-float:hover img,
.be-gift-float:focus-visible img {
  transform: scale(1.06);
}
.be-gift-float figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 10px 10px;
  background: linear-gradient(180deg, transparent, rgba(42, 28, 34, .78));
  color: #fff;
  text-align: center;
}
.be-gift-float strong {
  display: block;
  font-family: var(--font);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.be-gift-float span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  opacity: .92;
}
@keyframes be-gift-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1.2deg); }
}

.be-section { padding: 40px 0; }
.be-highlights {
  list-style: none; display: grid; gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 18px;
}
.be-highlights li {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 18px;
}
.be-num {
  display: inline-block; font-size: 12px; font-weight: 800; color: var(--rose);
  margin-bottom: 8px; letter-spacing: .08em;
}
.be-highlights strong { display: block; font-size: 17px; margin-bottom: 6px; }
.be-highlights p { color: var(--dim); font-size: 14px; }

.be-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.be-product {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; text-align: start; cursor: pointer;
}
.be-product-img {
  position: relative; aspect-ratio: 1; background: #f0e6e0; overflow: hidden;
}
.be-product-img img { width: 100%; height: 100%; object-fit: cover; }
.be-tag {
  position: absolute; left: 8px; top: 8px;
  background: rgba(92, 42, 58, .88); color: #fff;
  font-size: 10px; font-weight: 800; padding: 4px 8px; border-radius: 999px;
}
.be-product h3 {
  font-size: 16px; padding: 12px 12px 4px; min-height: 48px;
}
.be-linkish {
  display: inline-block; padding: 0 12px 14px;
  color: var(--rose); font-size: 13px; font-weight: 700;
}

.be-trust {
  display: grid; gap: 12px; margin: 18px 0 22px;
}
.be-trust article {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 16px;
}
.be-trust strong { display: block; margin-bottom: 6px; }
.be-trust p { color: var(--dim); font-size: 14px; }
.be-about {
  border-top: 1px solid var(--line); padding-top: 22px;
}
.be-about h3 { font-size: 24px; margin-bottom: 8px; color: var(--rose-deep); }
.be-about p { color: var(--dim); max-width: 70ch; }

.be-footer {
  background: #2a1c22; color: #c9b7bd; padding: 36px 0 40px; font-size: 13px;
}
.be-footer .be-brand { color: #fff; margin-bottom: 10px; }
.be-footer .be-mark { background: linear-gradient(145deg, #e8b4b8, #8b3a4c); }
.be-footer-grid { display: grid; gap: 16px; }
.be-copy { opacity: .75; font-size: 12px; }

.be-blocked { text-align: center; padding: 80px 20px; }
.be-blocked p { color: var(--dim); max-width: 420px; margin: 12px auto 0; }

.be-modal {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: end center; padding: 0;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.be-modal.open { opacity: 1; pointer-events: auto; }
.be-modal-overlay { position: absolute; inset: 0; background: rgba(42, 28, 34, .55); }
.be-modal-card {
  position: relative; width: 100%; max-width: 480px;
  background: var(--white); border-radius: 22px 22px 0 0;
  padding: 20px 18px calc(18px + var(--safe-b));
  text-align: center; box-shadow: 0 -12px 40px rgba(0,0,0,.28);
  transform: translateY(24px); transition: transform .28s cubic-bezier(.2,.8,.2,1);
  max-height: min(92vh, 92dvh); overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.be-modal.open .be-modal-card { transform: none; }
.be-modal-x {
  position: absolute; right: 8px; top: 8px; font-size: 26px; color: var(--dim); line-height: 1; z-index: 2;
  width: var(--android-tap); height: var(--android-tap); display: grid; place-items: center;
}
.be-modal-img {
  width: min(100%, 160px);
  margin: 4px auto 12px;
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(92, 42, 58, .16);
  animation: be-gift-bob 3.2s ease-in-out infinite;
}
.be-modal-card h2 { font-size: 22px; margin: 8px 0 10px; }
.be-modal-card > p { color: var(--dim); font-size: 14px; margin-bottom: 14px; }
.be-modal-list {
  list-style: none; display: grid; gap: 8px; text-align: start; margin-bottom: 16px;
}
.be-modal-list li {
  position: relative; padding: 10px 10px 10px 30px;
  background: rgba(232, 180, 184, .2); border-radius: 12px;
  font-size: 13px; font-weight: 600; color: var(--rose-deep);
}
.be-modal-list li::before {
  content: "✓"; position: absolute; left: 10px; top: 10px; color: var(--rose);
}
.be-modal-card .be-btn { width: 100%; margin-bottom: 8px; }
.be-modal-note { font-size: 11px; color: #8a7880; }

@media (min-width: 760px) {
  .be-links { display: flex; }
  .be-menu { display: none; }
  .be-highlights { grid-template-columns: 1fr 1fr; }
  .be-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .be-trust { grid-template-columns: repeat(3, 1fr); }
  .be-hero-copy { padding-bottom: 72px; }
  .be-offer-card {
    grid-template-columns: 1fr auto;
    gap: 28px;
    padding: 28px 26px;
  }
  .be-gift-float {
    width: 176px;
    margin: 0;
  }
  .be-modal { place-items: center; padding: 24px; }
  .be-modal-card {
    border-radius: 22px;
    padding: 24px 20px 18px;
    max-height: min(88vh, 720px);
    box-shadow: 0 24px 60px rgba(0,0,0,.28);
  }
}

@media (max-height: 700px) {
  .be-hero { min-height: min(72vh, 72dvh); }
  .be-hero h1 { font-size: clamp(32px, 7vw, 48px); }
  .be-gift-float { width: min(132px, 36vw); }
  .be-modal-img { width: min(100%, 120px); }
}

@media (max-width: 380px) {
  .be-grid { gap: 8px; }
  .be-product h3 { font-size: 14px; min-height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .be-gift-float, .be-modal-img { animation: none; }
  .be-gift-float img { transition: none; }
}
