/* ============================================================
   ADDI Aesthetics — site styles
   Palette + type match the original design; layout is now
   fully responsive (mobile-first breakpoints added).
   ============================================================ */

:root {
  --bg:#fff9fc;
  --ink:#4a2c4d;
  --ink-soft:#7a6a7d;
  --pink:#e56aa0;
  --pink-btn:#ff9ec4;
  --pink-soft:#ffe1ee;
  --pink-bg:#fff0f7;
  --purple:#a86a9e;
  --purple-light:#c48ec0;
  --green:#5aa87e;
  --green-bg:#f0fff6;
  --green-border:#d5f5e3;
  --green-ink:#6a8a76;
  --blue:#5a7bb0;
  --blue-bg:#eef3ff;
  --blue-border:#d9e5ff;
  --blue-light:#8aa0d8;
  --card-shadow:0 10px 24px rgba(200,150,190,0.22);
  --maxw:1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  font-family:'Quicksand',sans-serif;
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:var(--pink); text-decoration:none; }
a:hover{ opacity:0.85; }

.container{ max-width:var(--maxw); margin:0 auto; padding:0 20px; }
.script{ font-family:'Caveat',cursive; }

@keyframes addiFloat{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes addiWiggle{ 0%,100%{transform:rotate(-3deg)} 50%{transform:rotate(3deg)} }

/* ---------- NAV ---------- */
.nav{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:14px 22px; margin-top:14px;
  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  border:2px solid var(--pink-soft); border-radius:999px;
  box-shadow:0 6px 20px rgba(200,150,190,0.15);
}
.nav-logo{ font-family:'Caveat',cursive; font-weight:700; font-size:30px; color:var(--pink); }
.nav-links{ display:flex; align-items:center; gap:26px; font-weight:600; font-size:15px; }
.nav-links a{ color:var(--purple); }

/* ---------- BUTTONS ---------- */
.btn{ display:inline-block; font-weight:700; padding:15px 28px; border-radius:999px; font-size:16px; border:none; cursor:pointer; }
.btn-pink{ background:var(--pink-btn); color:#fff; }
.btn-blue{ background:#c7e0ff; color:#3a5a86; }

/* ---------- HERO ---------- */
.hero{
  position:relative; margin-top:26px; border-radius:40px; overflow:hidden;
  background:linear-gradient(165deg,#fff0f7 0%,#eef3ff 55%,#f0fff6 100%);
  padding:56px 40px 64px;
}
.hero-blob{ position:absolute; border-radius:50%; opacity:0.7; pointer-events:none; }
.hero-blob-1{ top:40px; left:36px; width:70px; height:70px; background:#ffd9ea; }
.hero-blob-2{ bottom:60px; right:60px; width:44px; height:44px; background:#cfe6ff; animation:addiFloat 6s ease-in-out infinite; }
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:40px; align-items:center; position:relative; z-index:1; }
.eyebrow{ font-family:'Caveat',cursive; font-size:34px; color:var(--purple-light); font-weight:600; }
.brand-title{ margin:2px 0 0; font-weight:700; font-size:clamp(46px,13vw,76px); letter-spacing:0.04em; line-height:0.95; color:var(--ink); }
.brand-sub{ font-size:19px; letter-spacing:0.42em; color:var(--purple); font-weight:600; margin-top:6px; }
.lead{ font-size:18px; color:var(--ink-soft); font-weight:500; margin:22px 0 0; max-width:400px; }
.hero-cta{ display:flex; gap:12px; margin-top:28px; flex-wrap:wrap; }
.hero-media{ position:relative; }
.hero-photo{
  width:min(320px,72vw); aspect-ratio:1; margin:0 auto; border-radius:50%; overflow:hidden;
  border:7px solid #fff; box-shadow:0 20px 50px rgba(200,150,190,0.4);
  animation:addiFloat 7s ease-in-out infinite;
}
.hero-photo img{ width:100%; height:100%; object-fit:cover; }
.hero-badge{
  position:absolute; top:-6px; right:20px; background:#fff; color:var(--pink);
  font-family:'Caveat',cursive; font-size:22px; font-weight:700; padding:8px 18px; border-radius:999px;
  box-shadow:0 6px 16px rgba(200,150,190,0.3); animation:addiWiggle 4s ease-in-out infinite;
}

/* ---------- SECTION HEADINGS ---------- */
.section-eyebrow{ font-family:'Caveat',cursive; font-size:26px; color:var(--purple-light); font-weight:600; text-align:center; }
.section-heading{ font-family:'Caveat',cursive; font-size:clamp(38px,7vw,52px); color:var(--pink); font-weight:700; margin:2px 0 0; text-align:center; }

/* ---------- GALLERY ---------- */
#gallery{ padding:72px 0 20px; }
.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:36px; }
.gallery-item{
  display:block; width:100%; padding:0; border:none; background:none; cursor:pointer;
  font:inherit; color:inherit; text-align:left;
}
.gallery-item:focus-visible{ outline:3px solid var(--pink); outline-offset:4px; border-radius:26px; }
.gallery-thumb{ display:block; aspect-ratio:1; border-radius:26px; overflow:hidden; box-shadow:var(--card-shadow); }
.gallery-thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.gallery-item:hover .gallery-thumb img{ transform:scale(1.06); }
.gallery-meta{ display:flex; justify-content:space-between; align-items:center; margin-top:12px; padding:0 4px; }
.gallery-name{ font-weight:700; font-size:17px; }
.gallery-price{ color:var(--pink); font-weight:700; }
.gallery-note{ text-align:center; margin:30px 0 0; color:#a89aa6; font-size:14px; }

/* ---------- PRICES ---------- */
#prices{ padding:60px 0; }
.prices-card{
  background:var(--green-bg); border:2px solid var(--green-border); border-radius:34px;
  padding:44px; display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
}
.prices-title{ font-family:'Caveat',cursive; font-size:44px; color:var(--green); font-weight:700; }
.prices-intro{ color:var(--green-ink); font-weight:500; margin:6px 0 0; }
.price-row{ display:flex; justify-content:space-between; align-items:baseline; gap:16px; padding:16px 0; }
.price-row.divider{ border-bottom:2px dotted #b6e6cd; }
.price-name{ font-weight:700; font-size:19px; }
.price-desc{ color:var(--ink-soft); font-size:14px; }
.price-amt{ font-weight:700; font-size:22px; color:var(--green); white-space:nowrap; }

/* ---------- ABOUT ---------- */
#about{ padding:40px 0 60px; }
.about-grid{ display:grid; grid-template-columns:300px 1fr; gap:48px; align-items:center; }
.about-media{ position:relative; width:max-content; margin:0 auto; }
.about-photo{ width:min(260px,64vw); aspect-ratio:1; border-radius:50%; overflow:hidden; border:6px solid var(--pink-soft); }
.about-photo img{ width:100%; height:100%; object-fit:cover; }
.about-badge{
  position:absolute; bottom:10px; left:-6px; font-family:'Caveat',cursive; font-weight:700; font-size:26px; color:var(--pink); background:#fff;
  padding:4px 14px; border-radius:999px; box-shadow:0 4px 12px rgba(200,150,190,0.25);
  animation:addiWiggle 5s ease-in-out infinite;
}
.about-title{ font-family:'Caveat',cursive; font-size:clamp(38px,7vw,46px); color:var(--pink); font-weight:700; }
.about-text{ font-size:18px; color:var(--ink-soft); font-weight:500; margin:10px 0 0; max-width:520px; line-height:1.6; }
.tags{ display:flex; gap:10px; margin-top:22px; flex-wrap:wrap; }
.tag{ font-weight:600; padding:8px 16px; border-radius:999px; font-size:14px; }
.tag-pink{ background:var(--pink-bg); color:var(--pink); }
.tag-blue{ background:var(--blue-bg); color:var(--blue); }
.tag-green{ background:var(--green-bg); color:var(--green); }

/* ---------- HOW TO APPLY ---------- */
.apply-section{ padding:20px 0 40px; }
.apply-card{ background:var(--blue-bg); border:2px solid var(--blue-border); border-radius:34px; padding:44px; }
.apply-eyebrow{ font-family:'Caveat',cursive; font-size:26px; color:var(--blue-light); font-weight:600; text-align:center; }
.apply-heading{ font-family:'Caveat',cursive; font-size:clamp(36px,6vw,46px); color:var(--blue); font-weight:700; margin:2px 0 0; text-align:center; }
.apply-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:30px; }
.step{ background:#fff; border-radius:22px; padding:22px; box-shadow:0 6px 16px rgba(150,170,220,0.18); }
.step-num{ width:38px; height:38px; border-radius:50%; background:var(--blue); color:#fff; font-weight:700; display:flex; align-items:center; justify-content:center; font-size:18px; }
.step p{ margin:12px 0 0; font-weight:600; color:var(--ink); font-size:15px; }
.apply-outro{ text-align:center; font-family:'Caveat',cursive; font-size:34px; color:var(--pink); font-weight:700; margin-top:26px; }

/* ---------- FOOTER ---------- */
.footer{ margin:50px 0 40px; border-radius:36px; background:linear-gradient(135deg,#ff9ec4,#ffc4dd); padding:56px 40px; text-align:center; }
.footer-title{ font-family:'Caveat',cursive; font-size:clamp(36px,8vw,52px); color:#fff; font-weight:700; text-shadow:0 2px 8px rgba(200,120,160,0.3); }
.footer-copy{ color:#fff; opacity:0.9; font-size:14px; margin-top:26px; font-weight:600; }

/* ---------- LIGHTBOX ---------- */
.lightbox{ position:fixed; inset:0; z-index:100; display:none; align-items:center; justify-content:center; padding:24px; background:rgba(40,20,40,0.86); -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px); }
.lightbox.open{ display:flex; }
.lightbox-figure{ margin:0; max-width:min(560px,92vw); display:flex; flex-direction:column; align-items:center; }
.lightbox-img{ max-width:100%; max-height:78vh; border-radius:18px; background:#fff; box-shadow:0 20px 60px rgba(0,0,0,0.5); }
.lightbox-caption{ margin-top:14px; color:#fff; font-weight:600; font-size:17px; display:flex; gap:12px; align-items:center; }
.lightbox-caption .price{ color:#ffd9ea; }
.lightbox-btn{ position:absolute; background:rgba(255,255,255,0.15); color:#fff; border:none; cursor:pointer; width:48px; height:48px; border-radius:50%; font-size:26px; line-height:1; display:flex; align-items:center; justify-content:center; }
.lightbox-btn:hover{ background:rgba(255,255,255,0.32); }
.lightbox-close{ top:20px; right:20px; }
.lightbox-prev{ left:16px; top:50%; transform:translateY(-50%); }
.lightbox-next{ right:16px; top:50%; transform:translateY(-50%); }
body.no-scroll{ overflow:hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:860px){
  .hero{ padding:44px 30px 48px; }
  .hero-grid{ grid-template-columns:1fr; gap:28px; text-align:center; }
  .hero-media{ order:-1; }
  .lead{ margin-left:auto; margin-right:auto; }
  .hero-cta{ justify-content:center; }
  .prices-card{ grid-template-columns:1fr; gap:22px; }
  .about-grid{ grid-template-columns:1fr; gap:26px; text-align:center; }
  .about-text{ margin-left:auto; margin-right:auto; }
  .tags{ justify-content:center; }
  .apply-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:760px){
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:620px){
  .hero{ border-radius:30px; }
  .hero-blob-1{ width:52px; height:52px; top:24px; left:22px; }
  .hero-blob-2{ width:32px; height:32px; }
  .prices-card,.apply-card{ padding:28px; }
  .footer{ padding:44px 24px; }
  .nav{ padding:12px 18px; }
  .nav-links{ gap:18px; font-size:14px; }
  .nav-logo{ font-size:26px; }
  .brand-sub{ letter-spacing:0.3em; }
  #gallery{ padding:56px 0 20px; }
  .gallery-grid{ gap:16px; }
}
@media (max-width:380px){
  .nav-links{ gap:13px; font-size:13px; }
  .gallery-name{ font-size:15px; }
}
@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; scroll-behavior:auto !important; }
  .gallery-thumb img{ transition:none; }
}
