/* =========================================================
   Created Crafty — rebuilt from the Canva design in HTML/CSS/JS
   Palette + type taken directly from the source design.
   ========================================================= */

:root{
  /* Brand palette (exact values from the original design) */
  --navy:       #222344;
  --navy-deep:  #131e3d;
  --orchid:     #c684d4;
  --cream:      #f4f1ec;
  --lime:       #c9e265;
  --gold:       #cdad7d;
  --white:      #ffffff;
  --black:      #000000;

  /* Type */
  --serif:  "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans:   "Arimo", Arial, Helvetica, sans-serif;
  --script: "Yellowtail", "Segoe Script", cursive;   /* stands in for Canva "Holla"    */
  --display:"Alfa Slab One", Georgia, serif;         /* stands in for Canva "Boldesqo" */

  --header-h: 104px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  scroll-snap-type: y proximity;      /* glide between section cards, never traps you */
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  background:var(--white);
  color:var(--navy);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.6;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

:focus-visible{
  outline:3px solid var(--orchid);
  outline-offset:3px;
  border-radius:2px;
}

/* ---------------------------------------------------------
   Scroll progress bar
   --------------------------------------------------------- */
.scroll-progress{
  position:fixed; inset:0 0 auto 0; height:3px; z-index:200;
  background:transparent; pointer-events:none;
}
.scroll-progress span{
  display:block; height:100%; width:0%;
  background:linear-gradient(90deg,var(--lime),var(--orchid));
  transition:width .1s linear;
}

/* ---------------------------------------------------------
   Header (design page 1)
   --------------------------------------------------------- */
.site-header{
  position:sticky; top:0; z-index:150;
  background:var(--white);
  border-bottom:1px solid rgba(34,35,68,.08);
  transition:box-shadow .3s var(--ease);
}
.site-header.is-stuck{ box-shadow:0 4px 22px rgba(34,35,68,.10); }

.header-inner{
  max-width:var(--maxw); margin:0 auto;
  min-height:var(--header-h);
  padding:10px 28px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}

.brand img{ width:120px; height:auto; }

.header-right{ display:flex; flex-direction:column; align-items:center; gap:8px; }

.follow-row{ display:flex; align-items:center; gap:10px; }
.follow-label{
  font-family:var(--serif);
  font-size:13px; letter-spacing:.08em; color:var(--orchid);
}
.social-dot{
  width:26px; height:26px; border-radius:50%;
  border:1.5px solid var(--orchid);
  display:grid; place-items:center;
  transition:background .25s var(--ease), transform .25s var(--ease);
}
.social-dot svg{ width:15px; height:15px; fill:var(--orchid); transition:fill .25s var(--ease); }
.social-dot:hover{ background:var(--orchid); transform:translateY(-2px); }
.social-dot:hover svg{ fill:var(--white); }

.main-nav{ display:flex; gap:38px; }
.main-nav a{
  font-family:var(--serif);
  font-size:15px; color:var(--navy);
  text-decoration:underline; text-underline-offset:4px;
  text-decoration-thickness:1px;
  transition:color .25s var(--ease);
}
.main-nav a:hover{ color:var(--orchid); }

/* ---------------------------------------------------------
   Right-hand dot navigation (replaces Canva's page pager)
   --------------------------------------------------------- */
.dot-nav{
  position:fixed; right:20px; top:50%; transform:translateY(-50%);
  z-index:140; display:flex; flex-direction:column; gap:13px;
}
.dot-nav a{ display:block; padding:5px; }
.dot-nav span{
  display:block; width:9px; height:9px; border-radius:50%;
  background:rgba(34,35,68,.22);
  transition:background .3s var(--ease), transform .3s var(--ease);
}
.dot-nav a:hover span{ background:var(--orchid); transform:scale(1.25); }
.dot-nav a.is-active span{ background:var(--orchid); transform:scale(1.5); }
.dot-nav.on-dark span{ background:rgba(255,255,255,.4); }
.dot-nav.on-dark a.is-active span{ background:var(--white); }

/* ---------------------------------------------------------
   Shared section behaviour
   --------------------------------------------------------- */
.snap{ scroll-snap-align:start; scroll-margin-top:var(--header-h); }
section, footer{ scroll-margin-top:var(--header-h); }

/* Reveal-on-scroll */
.reveal{
  opacity:0; transform:translateY(26px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay:var(--d,0ms);
}
.reveal.is-visible{ opacity:1; transform:none; }

/* Buttons */
.btn{
  display:inline-block;
  font-family:var(--sans);
  font-size:14px; letter-spacing:.12em;
  padding:14px 34px; border-radius:999px;
  text-decoration:none; text-align:center;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn:hover{ transform:translateY(-3px); }

.btn-gold{ background:var(--gold); color:var(--navy); box-shadow:0 8px 24px rgba(205,173,125,.45); }
.btn-gold:hover{ box-shadow:0 14px 32px rgba(205,173,125,.6); }

.btn-cream{
  background:var(--cream); color:var(--navy);
  text-decoration:underline; text-underline-offset:3px;
  box-shadow:0 8px 24px rgba(34,35,68,.16);
}
.btn-cream:hover{ box-shadow:0 14px 32px rgba(34,35,68,.24); }

.btn-dark{ background:var(--black); color:var(--white); box-shadow:0 10px 28px rgba(0,0,0,.45); }
.btn-dark:hover{ box-shadow:0 16px 38px rgba(0,0,0,.6); }

/* Script headings ("Holla" in the original) */
.script-head{
  font-family:var(--script);
  font-weight:400;
  color:var(--navy);
  line-height:1.15;
  margin:0 0 .55em;
}

/* ---------------------------------------------------------
   Hero (design page 2)
   --------------------------------------------------------- */
.hero{
  position:relative;
  min-height:calc(100svh - var(--header-h));
  display:flex; align-items:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover; object-position:center 38%;
  z-index:0;
}
.hero-inner{
  position:relative; z-index:2;
  width:100%; max-width:var(--maxw);
  margin:0 auto; padding:0 28px;
}
.hero-title{
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(2.1rem,5.2vw,4rem);
  line-height:1.18;
  color:var(--navy);
  margin:0 0 30px;
  text-shadow:0 2px 26px rgba(255,255,255,.55);
}
.hero .btn-gold{ --d:160ms; }

.scroll-cue{
  position:absolute; left:50%; bottom:26px; z-index:3;
  transform:translateX(-50%);
  width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.82);
  display:grid; place-items:center;
  animation:bob 2.1s ease-in-out infinite;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}
.scroll-cue svg{ width:22px; height:22px; fill:var(--navy); }
@keyframes bob{ 0%,100%{ transform:translate(-50%,0);} 50%{ transform:translate(-50%,7px);} }

/* ---------------------------------------------------------
   About (design page 3)
   --------------------------------------------------------- */
.about{
  background:var(--white);
  padding:clamp(56px,8vw,104px) 0;
  display:flex; align-items:center;
  min-height:calc(100svh - var(--header-h));
}
.about-inner{
  width:100%; max-width:var(--maxw); margin:0 auto; padding:0 28px;
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,6vw,84px);
  align-items:center;
}
.about-copy .script-head{ font-size:clamp(2.6rem,5.6vw,4.1rem); }
.about-copy p{
  font-size:clamp(.95rem,1.15vw,1.05rem);
  line-height:1.85; margin:0; --d:120ms;
}
.about-photo img{
  width:100%; border-radius:10px;
  aspect-ratio:3/4; object-fit:cover;
  box-shadow:0 18px 46px rgba(34,35,68,.2);
}

/* ---------------------------------------------------------
   Services grid (design pages 4-8)
   --------------------------------------------------------- */
.services{
  background:var(--cream);
  padding:clamp(60px,9vw,116px) 0;
}
.services-inner{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:clamp(24px,3.2vw,44px);
}

.card{
  margin:0;
  background:var(--white);
  padding:14px 14px 6px;
  box-shadow:0 10px 30px rgba(34,35,68,.10);
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover{ transform:translateY(-8px); box-shadow:0 22px 48px rgba(34,35,68,.18); }

.card-media{ overflow:hidden; }
.card-media img{
  width:100%; aspect-ratio:1/1; object-fit:cover;
  transition:transform .7s var(--ease);
}
.card:hover .card-media img{ transform:scale(1.06); }

.card figcaption{
  font-family:var(--serif);
  font-size:clamp(1.05rem,1.5vw,1.35rem);
  color:var(--navy);
  text-align:center;
  padding:18px 6px 14px;
}

/* ---------------------------------------------------------
   Premium blurb (design page 6)
   --------------------------------------------------------- */
.premium{
  background:var(--cream);
  padding:0 0 clamp(70px,10vw,120px);
  text-align:center;
}
.premium-inner{ max-width:760px; margin:0 auto; padding:0 28px; }
.premium .script-head{ font-size:clamp(1.9rem,3.6vw,2.7rem); }
.premium p{
  font-size:clamp(.95rem,1.2vw,1.06rem);
  line-height:1.8; margin:0; --d:120ms;
}

/* ---------------------------------------------------------
   Other services (design page 9)
   --------------------------------------------------------- */
.other{
  background:var(--orchid);
  padding:clamp(64px,9vw,110px) 0;
  display:flex; align-items:center;
  text-align:center;
}
.other-inner{ width:100%; max-width:920px; margin:0 auto; padding:0 28px; }
.other .script-head{
  color:var(--black);
  font-size:clamp(2rem,4.2vw,3rem);
}
.other .justified{
  text-align:justify;
  font-size:clamp(.95rem,1.2vw,1.05rem);
  line-height:1.85;
  color:var(--navy);
  margin:0 0 34px;
  --d:120ms;
}
.other .btn-cream{ --d:220ms; }

/* ---------------------------------------------------------
   POP call-to-action (design page 10)
   --------------------------------------------------------- */
.pop{
  background:var(--white);
  padding:clamp(52px,7vw,96px) 0;
  display:flex; align-items:center;
}
.pop-card{
  position:relative; overflow:hidden;
  width:100%; max-width:var(--maxw);
  margin:0 auto;
  min-height:min(60vh,520px);
  display:flex; align-items:center; justify-content:center;
}
.pop-bg{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
}
.pop-inner{ position:relative; z-index:2; text-align:center; padding:40px 24px; }

.pop-line{
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(1.6rem,4vw,3rem);
  color:var(--cream);
  margin:0 0 .1em;
  text-shadow:0 3px 18px rgba(0,0,0,.45);
}
.pop-word{
  position:relative;
  font-family:var(--display);
  font-size:clamp(3.4rem,9vw,6.6rem);
  line-height:1;
  color:var(--navy-deep);
  margin:0 0 32px;
  letter-spacing:.02em;
}
/* faux outline: a stroked copy painted behind the solid glyphs */
.pop-word::before{
  content:"POP!";
  position:absolute; inset:0;
  -webkit-text-stroke:10px var(--cream);
  color:transparent;
  z-index:-1;
}

/* ---------------------------------------------------------
   Footer (design page 11)
   --------------------------------------------------------- */
.site-footer{
  background:var(--cream);
  padding:clamp(56px,8vw,92px) 0 clamp(48px,7vw,76px);
}
.footer-inner{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }

.footer-cols{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(30px,6vw,80px);
  max-width:860px; margin:0 auto clamp(38px,5vw,58px);
}
.footer-col h2{
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(1.3rem,2.2vw,1.7rem);
  color:var(--orchid);
  margin:0 0 26px;
}
.contact-list{ list-style:none; margin:0; padding:0; display:grid; gap:20px; }
.contact-list li{ display:flex; align-items:center; gap:16px; }
.contact-list a{
  font-size:.95rem; color:var(--navy);
  text-decoration:none;
  transition:color .25s var(--ease);
}
.contact-list a:hover{ color:var(--orchid); text-decoration:underline; text-underline-offset:3px; }

.icon-dot{
  flex:0 0 auto;
  width:30px; height:30px; border-radius:50%;
  border:1.5px solid var(--orchid);
  display:grid; place-items:center;
}
.icon-dot svg{ width:16px; height:16px; fill:var(--orchid); }

.areas{ text-align:center; max-width:900px; margin:0 auto; }
.areas h3{
  font-family:var(--sans);
  font-weight:700;
  font-size:clamp(.95rem,1.4vw,1.05rem);
  letter-spacing:.02em;
  color:var(--navy);
  margin:0 0 10px;
}
.areas p{
  font-size:clamp(.9rem,1.15vw,1rem);
  line-height:1.7; color:var(--navy); margin:0;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width:900px){
  :root{ --header-h:auto; }

  .header-inner{ flex-direction:column; gap:12px; padding:14px 20px; }
  .brand img{ width:96px; }
  .main-nav{ gap:26px; }

  .dot-nav{ display:none; }

  .hero{ min-height:78svh; }
  .hero-inner{ padding:0 20px; }

  .about-inner{ grid-template-columns:1fr; gap:34px; }
  .about-photo{ order:-1; }
  .about-photo img{ aspect-ratio:4/5; }

  .footer-cols{ grid-template-columns:1fr; gap:34px; }
  .other .justified{ text-align:left; }
  .pop-word::before{ -webkit-text-stroke-width:6px; }
}

@media (max-width:520px){
  .card-grid{ grid-template-columns:1fr; }
  .main-nav{ gap:18px; font-size:14px; }
  .services-inner,.other-inner,.footer-inner,.premium-inner{ padding-left:20px; padding-right:20px; }
}

/* ---------------------------------------------------------
   Motion / print preferences
   --------------------------------------------------------- */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; scroll-snap-type:none; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .scroll-cue{ animation:none; }
  *{ transition-duration:.01ms !important; }
}

@media print{
  .dot-nav,.scroll-progress,.scroll-cue{ display:none; }
  .reveal{ opacity:1; transform:none; }
}
