:root{
  --c1: #C2DC80;
  --c2: #EA9CAF;
  --c3: #D56989;
  --c4: #F3EEF1;

  --ink: #171717;
  --muted: rgba(0,0,0,.62);
  --shadow: 0 18px 45px rgba(0,0,0,.12);
  --radius: 22px;

  --heading: #7c2f46;     /* visible + aesthetic */
  --beige: #f4efe7;

  --max: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--ink);
  background: var(--c4);
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

h1, h2, h3, h4{
  font-family: "Playfair Display", serif;
}
h1, h2, h3, h4{
  color: var(--heading);
}

/* Sticky social dock */
.social-dock{
  position: fixed;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 10px;
  z-index: 999;
}
.social-btn{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(243, 238, 241, .82);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  transition: transform .2s ease;
}
.social-btn:hover{ transform: translateY(-2px); }
.social-btn svg{
  width: 22px;
  height: 22px;
  fill: rgba(0,0,0,.75);
}

/* HERO */
.hero{
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  background: url("../assets/BG.jpg") center/cover no-repeat;
  transform: scale(1.02);
}
.hero::after{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243,238,241,.90), rgba(243,238,241,.62), rgba(243,238,241,.35));
}
.hero-inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 14px;
  padding: 56px 0;
}

h1{
  margin: 0 0 10px;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.05;
}
.subtitle{
  margin: 0 0 10px;
  font-size: 18px;
  opacity: .95;
}
.lead{
  margin: 0 0 18px;
  max-width: 46ch;
  color: rgba(0,0,0,.68);
  font-size: 18px;
  line-height: 1.7;
}

.cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn{
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0,0,0,.08);
  transition: transform .18s ease;
}
.btn:hover{ transform: translateY(-2px); }

.btn.primary{
  background: var(--c3);
  color: white;
  border-color: rgba(0,0,0,.05);
}
.btn.ghost{
  background: rgba(255,255,255,.70);
}

.scroll-hint{
  margin-top: 22px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(0,0,0,.72);
}
.scroll-hint .chev{ transform: translateY(1px); }

/* HERO photo smaller + square */
.hero-photo{
  width: min(330px, 100%);
  margin-left: auto;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.5);
  aspect-ratio: 1 / 1;
}
.hero-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */
.section{ padding: 70px 0; }

.section-head{ margin-bottom: 18px; }
.section-head h2{
  margin: 0;
  font-size: 40px;
  letter-spacing: .2px;
  text-align: left;
}
.muted{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

/* wall background sections */
.wall{
  position: relative;
  overflow: hidden;
}
.wall::before{
  content:"";
  position: absolute;
  inset: 0;
  background: url("../assets/wall.jpg") center/cover no-repeat;
  filter: saturate(1.02);
  transform: scale(1.02);
  opacity: .95;
}
.wall > .container{ position: relative; z-index: 2; }

/* ABOUT */
.about-grid{
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 26px;
  align-items: center;
}

/* circle + glow */
.about-photo{
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 0;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.35);
  box-shadow:
    0 18px 45px rgba(0,0,0,.14),
    0 0 50px rgba(234,156,175,.45);
}
.about-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card{
  background: rgba(243,238,241,.86);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px;
  line-height: 1.75;
  font-size: 16.5px;
}
.about-card p{ margin: 0 0 14px; }
.about-card p:last-child{ margin-bottom: 0; }

/* VIDEOS */
.subhead{
  margin: 34px 0 18px;
  font-size: 34px;
  text-align: center;
  letter-spacing: .3px;
  color: var(--heading);
}

/* small divider between skincare/makeup */
.mini-divider{
  height: 1px;
  width: min(520px, 70%);
  background: rgba(255,255,255,.55);
  margin: 26px auto 8px;
  border-radius: 999px;
}

/* Video grids */
.video-grid{
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

/* 4 columns desktop */
.video-grid.skincare,
.video-grid.makeup{
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}

/* EXACT “between gaps” centering rule:
   - Keep first row 1–4 normal
   - Second row (5–7): place them into columns 1/2/3 but SHIFTED with translateX
   so each video center aligns with the gap centers. */
.video-grid.skincare .phone-card:nth-child(5){
  grid-column: 1;
  transform: translateX(50%);
}
.video-grid.skincare .phone-card:nth-child(6){
  grid-column: 2;
  transform: translateX(50%);
}
.video-grid.skincare .phone-card:nth-child(7){
  grid-column: 3;
  transform: translateX(50%);
}

.phone-card{
  max-width: 250px;
  width: 100%;
  background: rgba(243,238,241,.62);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.phone-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0,0,0,.06);
  cursor: pointer;
}

.phone-frame video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* tap hint */
.tap-hint{
  text-align: center;
  margin: 8px 0 0;
  color: rgba(0,0,0,.65);
  font-size: 14px;
}

/* BRANDS */
.brands-wrap{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.brand-card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
}
.brand-card img{ max-height: 52px; width: auto; }
.brand-note{ margin: 0; color: var(--muted); }

/* BUNDLES */
.bundle-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.bundle-card{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.bundle-card h4{
  margin: 0 0 10px;
  font-size: 22px;
}
.bundle-card ul{
  margin: 0;
  padding-left: 18px;
  line-height: 1.75;
}
.bundle-note{
  margin-top: 16px;
  color: rgba(0,0,0,.65);
}

/* RESULTS */
.results-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}

/* top 2 smaller */
.result--top:first-of-type{ grid-column: 1 / span 7; }
.result--top:nth-of-type(2){ grid-column: 8 / span 5; }

/* bottom 3 bigger */
.result--bottom:nth-of-type(3){ grid-column: 1 / span 4; }
.result--bottom:nth-of-type(4){ grid-column: 5 / span 4; }
.result--bottom:nth-of-type(5){ grid-column: 9 / span 4; }

.result{
  width: 100%;
  height: auto;
  border-radius: 22px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
  padding: 12px;
}

/* PROCESS */
.process-card{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.process-steps{
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
}

/* CONTACT (BG = C4) */
.contact{
  background: var(--c4);
}
.contact .section-head h2{ color: var(--heading); }

.contact-card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.contact-item{
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}
.label{
  font-size: 12px;
  letter-spacing: .3px;
  opacity: .85;
}
.contact-item a{
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer{
  margin-top: 18px;
  opacity: .95;
}
.footer a{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Scroll reveal */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.fade{ transform: none; }
.reveal.up{ transform: translateY(22px); }
.reveal.pop{ transform: scale(.97); }
.reveal.in{ opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-photo{ margin: 18px 0 0; width: min(360px, 100%); }
  .about-grid{ grid-template-columns: 1fr; }
  .about-photo{ margin: 0 auto; }
  .bundle-grid{ grid-template-columns: 1fr; }
  .brands-wrap{ grid-template-columns: 1fr; }
  .results-grid{ grid-template-columns: 1fr; }
  .result--top, .result--bottom{ grid-column: auto !important; }
}

@media (max-width: 760px){
  .video-grid.skincare,
  .video-grid.makeup{
    grid-template-columns: 1fr;
  }
  .video-grid.skincare .phone-card:nth-child(5),
  .video-grid.skincare .phone-card:nth-child(6),
  .video-grid.skincare .phone-card:nth-child(7){
    grid-column: auto;
    transform: none;
  }
}
