/* ====== Light Theme ====== */
:root{
  --bg:#f7f7fb;
  --bg2:#ffffff;
  --card:#ffffff;
  --stroke:rgba(25,25,40,.12);
  --stroke2:rgba(25,25,40,.08);
  --text:#121321;
  --muted:rgba(18,19,33,.70);

  --accent1:#FCCBA0;
  --accent2:#B3703B;
  --accent3:#793132;

  --shadow: 0 18px 60px rgba(20,20,35,.10);
  --shadow2: 0 10px 32px rgba(20,20,35,.08);
  --radius: 20px;
  --max: 1150px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

html, body {
    overflow-x: hidden;
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(255,77,109,.12), transparent 60%),
    radial-gradient(820px 520px at 92% 5%, rgba(255,183,3,.12), transparent 55%),
    radial-gradient(900px 620px at 80% 90%, rgba(42,157,244,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), #f1f2f8);
  overflow-x:hidden;
}

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

h1,h2,h3{
  margin:0 0 .6rem;
  letter-spacing:-0.02em;
}

p{
  margin:.5rem 0 0;
  color:var(--muted);
  line-height:1.6;
}

.lead{ font-size:1.06rem; }

.bg{
  position:fixed; inset:0;
  background:
    radial-gradient(circle at 30% 20%, rgba(15,15,25,.06) 0 1px, transparent 2px) 0 0/30px 30px;
  pointer-events:none;
  opacity:.25;
}

html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ====== Header / Nav ====== */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.72);
  border-bottom:1px solid var(--stroke2);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 18px;
}

@media (min-width: 900px){
  .header{ padding:16px 22px; }
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
  min-width: 220px;
}

.brand__logo{
  width:64px;
  height:64px;
  border-radius:18px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  object-fit: contain;
}

@media (min-width: 900px){
  .brand__logo{
    width:72px;
    height:72px;
  }
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand__name{ font-weight:900; letter-spacing:.01em; }
.brand__tag{ font-size:.85rem; color:var(--muted); margin-top:2px; }

.nav{
  display:flex;
  gap:18px;
  align-items:center;
  font-weight:800;
}

.nav a{
  opacity:.92;
  padding:10px 10px;
  border-radius:12px;
}

.nav a:hover{
  background: rgba(20,20,35,.06);
  opacity:1;
}

.nav__cta{
  background: linear-gradient(135deg, rgba(252,203,160,.95), rgba(179,112,59,.95));
  color:#101222;
  box-shadow: 0 14px 34px rgba(255,77,109,.18);
}

.nav__cta:hover{ filter:brightness(1.03); }

.nav-toggle{ display:none; }

.nav-button{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--stroke2);
  background: rgba(255,255,255,.8);
  align-items:center;
  justify-content:center;
  gap:6px;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(20,20,35,.06);
}

.nav-button span{
  width:18px; height:2px;
  background: rgba(18,19,33,.85);
  display:block;
  border-radius:999px;
}

@media (max-width: 899px){
  .nav-button{ display:flex; }

  .nav{
    position:fixed;
    top:70px; right:14px; left:14px;
    flex-direction:column;
    gap:6px;
    padding:12px;
    border-radius:18px;
    border:1px solid var(--stroke2);
    background: rgba(255,255,255,.92);
    transform: translateY(-18px);
    opacity:0;
    pointer-events:none;
    transition: .22s ease;
    box-shadow: var(--shadow2);
  }

  .nav a{ width:100%; text-align:center; padding:12px; }

  .nav-toggle:checked ~ .nav{
    transform: translateY(0);
    opacity:1;
    pointer-events:auto;
  }
}

/* ====== Layout ====== */
.section{
  padding: 70px 18px;
}

.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,0));
  border-top:1px solid var(--stroke2);
  border-bottom:1px solid var(--stroke2);
}

/* Section headers (force LEFT alignment always) */
.section__head{
  max-width: var(--max);
  margin: 0 auto 22px;
  text-align:left;
}

.section__head h2{
  font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.2rem);
  text-align:left;
}

.section__head p{
  max-width: 68ch;
  text-align:left;
}

/* Divider before the Packages header */
.section__head--divider{
  padding-top: 42px;
  margin-top: 34px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ====== Hero ====== */
.hero{
  padding: 48px 18px 22px;
}

.hero__inner{
  max-width: var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:center;
}

@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
}

/* Tighter section for the block under hero */
.section--tight{
  padding: 34px 18px 54px;
}

.diy{
  max-width: var(--max);
  margin: 0 auto;
}

.diy__card{
  border-radius: var(--radius);
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow2);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.diy__card::before{
  content:"";
  position:absolute;
  inset:-60px -80px auto -80px;
  height:220px;
  background:
    radial-gradient(circle at 20% 30%, rgba(252,203,160,.35), transparent 58%),
    radial-gradient(circle at 70% 20%, rgba(179,112,59,.22), transparent 62%);
  filter: blur(10px);
  pointer-events:none;
}

.diy__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,.75);
  font-weight: 900;
  position: relative;
}

.diy__title{
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
  line-height: 1.12;
  margin-top: 12px;
  position: relative;
}

.diy__lead{
  max-width: 78ch;
  position: relative;
}

/* =========================
   HERO SPLIT LOAD ANIMATION
   ========================= */

/* Prevent flash */
.hero__copy,
.hero__media{
  opacity: 0;
}

/* LEFT SIDE — text slides from left */
.hero__copy{
  transform: translateX(-60px);
  animation: ee-slide-left 900ms cubic-bezier(.2,.8,.2,1) 200ms forwards;
}

/* RIGHT SIDE — image slides from right */
.hero__media{
  transform: translateX(60px);
  animation: ee-slide-right 900ms cubic-bezier(.2,.8,.2,1) 300ms forwards;
}

/* Optional: small stagger inside text for premium feel */
.hero__copy .pill,
.hero__copy h1,
.hero__copy .lead,
.hero__copy .hero__actions,
.hero__copy .hero__meta{
  opacity: 0;
  transform: translateY(12px);
  animation: ee-fade-up 700ms ease forwards;
}

.hero__copy .pill         { animation-delay: 450ms; }
.hero__copy h1            { animation-delay: 550ms; }
.hero__copy .lead         { animation-delay: 650ms; }
.hero__copy .hero__actions{ animation-delay: 750ms; }
.hero__copy .hero__meta   { animation-delay: 850ms; }

/* KEYFRAMES */
@keyframes ee-slide-left{
  to{
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ee-slide-right{
  to{
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ee-fade-up{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero__copy,
  .hero__media,
  .hero__copy .pill,
  .hero__copy h1,
  .hero__copy .lead,
  .hero__copy .hero__actions,
  .hero__copy .hero__meta{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Delivery note */
.diy__note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px dashed rgba(121,49,50,.28);
  background: rgba(252,203,160,.18);
  color: rgba(18,19,33,.86);
  position: relative;
}

.diy__actions{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

/* Service areas inside DIY card */
.diy__areas{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items:center;
  font-size: .95rem;
  color: var(--muted);
}

.diy__areas strong{
  margin-right: 6px;
  color: rgba(18,19,33,.92);
  font-weight: 900;
}

.area-tag{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,.75);
  font-weight: 700;
  font-size: .85rem;
  color: rgba(18,19,33,.85);
  box-shadow: 0 6px 16px rgba(20,20,35,.04);
}


.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.8);
  border:1px solid var(--stroke2);
  color: rgba(18,19,33,.86);
  font-weight:900;
  font-size:.9rem;
  box-shadow: 0 10px 24px rgba(20,20,35,.06);
}

.dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: 0 0 0 6px rgba(255,77,109,.14);
}

.hero h1{
  margin-top: 14px;
  font-size: clamp(2.2rem, 1.2rem + 3vw, 3.5rem);
  line-height:1.06;
}

.accent{
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 16px;
  border:1px solid var(--stroke2);
  background: rgba(255,255,255,.85);
  color: rgba(18,19,33,.92);
  font-weight:900;
  letter-spacing:.01em;
  transition: .18s ease;
  box-shadow: 0 10px 24px rgba(20,20,35,.06);
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.95);
}

.btn--primary{
  border-color: transparent;
  color:#101222;
  background: linear-gradient(135deg, rgba(252,203,160,.95), rgba(179,112,59,.95));
  box-shadow: 0 18px 52px rgba(255,77,109,.18);
}

.btn--primary:hover{ filter: brightness(1.03); }

.btn--ghost{
  background: rgba(255,255,255,.65);
}

.hero__meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 520px){
  .hero__meta{ grid-template-columns: 1fr; }
}

.meta-card{
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.80);
  border:1px solid var(--stroke2);
  box-shadow: 0 10px 24px rgba(20,20,35,.05);
}

.meta-card__title{ font-weight:1000; color: rgba(18,19,33,.92); }
.meta-card__sub{ font-size:.9rem; color: var(--muted); margin-top:4px; }

.hero__media{ position:relative;
}

.media-card{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
}

.media-card img{ width:100%; height:auto; }

.media-glow{
  position:absolute;
  inset: 0;                  /* ✅ no negative overflow */
  background:
    radial-gradient(circle at 30% 10%, rgba(255,77,109,.18), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(255,183,3,.18), transparent 55%);
  filter: blur(18px);
  z-index:-1;
  transform: scale(1.15);    /* ✅ gives extra glow without expanding layout */
  pointer-events:none;
}

/* ====== Cards / Grid ====== */
.grid{
  max-width: var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

/* Card shell */
.card{
  grid-column: span 6;
  border-radius: var(--radius);
  background: rgba(255,255,255,.80);
  border:1px solid var(--stroke2);
  overflow:hidden;
  box-shadow: var(--shadow2);
}

.card--wide{
  grid-column: span 12;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
}

@media (max-width: 960px){
  .card{ grid-column: span 12; }
  .card--wide{ grid-template-columns: 1fr; }
}

/* IMPORTANT: show flyers fully (no crop) */
.card__img{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.80));
  border-bottom: 1px solid var(--stroke2);
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Make the image fully visible */
.card__img img{
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain; /* ✅ NO CROPPING */
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--stroke2);
  box-shadow: 0 10px 26px rgba(20,20,35,.06);
}

/* Wide card image can be taller */
.card--wide .card__img img{
  max-height: 640px;
}

.card__body{
  padding: 16px 16px 18px;
}

.card__body h3{ font-size: 1.25rem; }

.card__row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top: 12px;
}

.tag{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight:900;
  font-size:.85rem;
  color: rgba(18,19,33,.90);
  border:1px solid var(--stroke2);
  background: rgba(255,255,255,.85);
}

.tag--soft{
  color: rgba(18,19,33,.78);
  background: rgba(255,255,255,.65);
}

.card__cta{
  display:inline-block;
  margin-top: 14px;
  font-weight:1000;
  color: rgba(18,19,33,.92);
  opacity:.92;
}

.card__cta:hover{
  opacity:1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullets li{ margin: 6px 0; }

/* ====== Steps ====== */
.steps{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

@media (max-width: 820px){
  .steps{ grid-template-columns: 1fr; }
}

.step{
  border-radius: var(--radius);
  border:1px solid var(--stroke2);
  background: rgba(255,255,255,.82);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(20,20,35,.05);
}

.step__num{
  width:42px; height:42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  color:#101222;
  background: linear-gradient(135deg, rgba(252,203,160,.95), rgba(179,112,59,.95));
  box-shadow: 0 16px 44px rgba(255,77,109,.18);
  margin-bottom: 10px;
}

/* ====== FAQ ====== */
.faq{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  gap: 10px;
}

details{
  border-radius: var(--radius);
  border:1px solid var(--stroke2);
  background: rgba(255,255,255,.82);
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(20,20,35,.05);
}

summary{
  cursor:pointer;
  font-weight:1000;
  color: rgba(18,19,33,.92);
}

details p{ margin-top:10px; }

/* ====== Contact ====== */
.contact{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
  align-items:start;
}

@media (max-width: 920px){
  .contact{ grid-template-columns: 1fr; }
}

.contact__actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 14px;
}

.contact__note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid var(--stroke2);
  background: rgba(255,255,255,.75);
  color: rgba(18,19,33,.86);
  box-shadow: 0 10px 24px rgba(20,20,35,.05);
}

.contact__card{
  border-radius: var(--radius);
  border:1px solid var(--stroke2);
  background: rgba(255,255,255,.82);
  padding: 16px;
  box-shadow: var(--shadow2);
}

.muted{ color: var(--muted); }
.tiny{ font-size:.85rem; }

.copybox{
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(245,245,250,.9);
  border:1px solid var(--stroke2);
  color: rgba(18,19,33,.92);
  line-height: 1.55;
}

/* ====== Endless Events Form (small helper styles) ====== */
.ee-form{ display:grid; gap:12px; margin-top:10px; }
.ee-grid{ display:grid; gap:12px; }
.ee-grid--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 560px){ .ee-grid--2{ grid-template-columns: 1fr; } }

.ee-field span{
  display:block;
  font-weight:900;
  color: rgba(18,19,33,.92);
  margin-bottom:6px;
}
.ee-field b{ color: rgba(121,49,50,.9); }

.ee-field input,
.ee-field textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--stroke2);
  background: rgba(236,226,226,.85);
  color: var(--text);
  outline:none;
  box-shadow: 0 10px 24px rgba(20,20,35,.05);
}

.ee-field input:focus,
.ee-field textarea:focus{
  border-color: rgba(179,112,59,.55);
  box-shadow: 0 0 0 4px rgba(179,112,59,.18);
}

/* Honeypot hidden */
.ee-hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
}

/* ====== Footer ====== */
.footer{
  border-top: 1px solid var(--stroke2);
  padding: 22px 18px;
  background: rgba(255,255,255,.70);
  text-align: center;
}
