/* ============================================================
   LDD Kreationz  |  Website Design and Build
   Brand tokens from the LDD Design System
   ============================================================ */

:root {
  /* Core color */
  --purple:        #8247C9;  /* Royal Vision, primary */
  --green:         #8BAE55;  /* Grounded Grace, secondary */
  --taupe:         #E8E4DF;  /* Pale Taupe */
  --white:         #FFFFFF;

  /* Purple rotation */
  --purple-vivid:  #7700CC;
  --purple-regal:  #47007A;
  --plum:          #442266;
  --lavender:      #EEEBF5;

  /* Support */
  --soft-white:    #F7F6F2;
  --purple-soft:   #EDE4F8;
  --green-soft:    #EEF2E4;
  --gold:          #C79A3E;
  --ink:           #2A1B3D;
  --ink-soft:      #5C556A;

  /* Type */
  --font-serif:    "Playfair Display", Georgia, serif;
  --font-display:  "Acme", "Arial Black", sans-serif;
  --font-body:     "Montserrat", Arial, sans-serif;

  /* Space */
  --space-1: 8px;  --space-2: 16px; --space-3: 24px;
  --space-4: 40px; --space-5: 64px; --space-6: 96px;

  --radius: 16px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px -24px rgba(68,34,102,.45);
  --shadow-lg: 0 40px 90px -40px rgba(68,34,102,.55);
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--lavender);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--purple); color: #fff;
  padding: 12px 20px; z-index: 999; border-radius: 0 0 12px 0;
}
.skip:focus { left: 0; }

/* ---------- Shared type ---------- */

.kicker {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 18px;
}
.kicker-dark { color: var(--purple); }

.h2 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--plum);
  margin: 0 0 20px;
}
.h2-light { color: #fff; }

.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 18px;
  font-weight: 500;
}
.lead-light { color: rgba(255,255,255,.92); }

.body { font-size: 16px; color: var(--ink-soft); margin: 0 0 18px; }
.body-light { color: rgba(255,255,255,.75); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(130,71,201,.8);
}
.btn-primary:hover {
  background: var(--purple-vivid);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -14px rgba(119,0,204,.75);
}
.btn-green {
  background: var(--green);
  color: #22301a;
  box-shadow: 0 14px 30px -14px rgba(139,174,85,.8);
}
.btn-green:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.42);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 18px 42px; font-size: 17px; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav.is-stuck {
  background: rgba(71,0,122,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-brand { flex-shrink: 0; display: block; }
.nav-brand img { height: 24px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: #fff; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  margin-top: -78px;
  padding: 150px 0 90px;
  background:
    radial-gradient(1100px 600px at 12% -10%, #6a1fa8 0%, transparent 60%),
    linear-gradient(160deg, #47007A 0%, #3a0866 55%, #2d0b4d 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  right: -180px; top: -120px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(139,174,85,.30) 0%, transparent 68%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 540px; }

.hero-name {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(46px, 7vw, 82px);
  line-height: .95;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 24px;
}
.hero-name-last {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.55);
  text-stroke: 2px rgba(255,255,255,.55);
}
.hero-bio {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  margin: 0 0 34px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.72);
  margin: 0;
}
.hero-price strong { color: var(--green); font-weight: 700; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(139,174,85,.25);
}

.hero-media { position: relative; }
.hero-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.14);
  transform: rotate(-1.2deg);
}
.hero-frame img { width: 100%; height: auto; }

.hero-badge {
  position: absolute;
  left: -18px;
  bottom: -26px;
  background: var(--green);
  color: #22301a;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 22px 44px -20px rgba(0,0,0,.6);
}
.hero-badge-num {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
}
.hero-badge-label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ---------- Marquee strip ---------- */

.strip {
  background: var(--plum);
  overflow: hidden;
  padding: 15px 0;
}
.strip-track {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  animation: slide 34s linear infinite;
  width: max-content;
}
.strip-track span {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.strip-track i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Sections ---------- */

.section { padding: clamp(64px, 9vw, 110px) 0; }
/* keep anchored headings clear of the sticky nav */
#work, #included, #process, #pricing, #about { scroll-margin-top: 84px; }
.section-tint { background: var(--white); }
.section-dark {
  background:
    radial-gradient(800px 400px at 85% 0%, #5c1694 0%, transparent 62%),
    linear-gradient(150deg, #47007A 0%, #33095a 100%);
}

.section-head { max-width: 620px; margin-bottom: 52px; }

.two-col {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
}
.col-label .kicker { margin-top: 10px; }
.col-body { max-width: 720px; }

/* pillars */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid rgba(68,34,102,.14);
}
.pillars h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--plum);
  margin: 0 0 8px;
}
.pillars p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* ---------- Cards ---------- */

.cards {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(68,34,102,.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.section-tint .card { background: var(--lavender); }
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -30px rgba(68,34,102,.5);
  border-color: rgba(130,71,201,.35);
}
.card-mark {
  display: block;
  width: 34px; height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--purple), var(--green));
  margin-bottom: 18px;
}
.card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--plum);
  margin: 0 0 10px;
  line-height: 1.25;
}
.card p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* ---------- Steps ---------- */

.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  counter-reset: none;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 26px;
  border-top: 3px solid rgba(130,71,201,.2);
}
.step-num {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--purple);
  opacity: .85;
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--plum);
  margin: 0 0 8px;
}
.step p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* ---------- Pricing ---------- */

.price-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 54px;
  align-items: start;
}
.price-figure {
  color: var(--green);
  font-style: italic;
}
.section-dark .btn-green { margin-top: 12px; }

.price-note {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 30px 28px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.price-note h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: #fff;
  margin: 0 0 16px;
}
.price-note ul { margin: 0; padding-left: 18px; }
.price-note li {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.55;
}
.price-note li::marker { color: var(--green); }

/* ---------- Signature line ---------- */

.signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--purple);
  margin: 28px 0 0;
}

/* ---------- Final CTA ---------- */

.cta {
  background: var(--white);
  padding: clamp(64px, 9vw, 110px) 0;
  border-top: 1px solid rgba(68,34,102,.08);
}
.cta-inner { text-align: center; max-width: 660px; }
.cta-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.1;
  color: var(--plum);
  margin: 0 0 16px;
}
.cta-sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 34px;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--plum);
  color: rgba(255,255,255,.75);
  padding: 56px 0 26px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand { max-width: 420px; }
.footer-brand img { height: 30px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; margin: 0; line-height: 1.6; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 14px;
  transition: color .15s ease;
}
.footer-contact a:hover { color: var(--green); }
.footer-bottom { padding-top: 22px; }
.footer-bottom p { font-size: 13px; margin: 0; color: rgba(255,255,255,.55); }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .price-grid { grid-template-columns: 1fr; gap: 34px; }
  .nav-links { display: none; }
}

@media (max-width: 860px) {
  .hero { padding: 130px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { max-width: none; }
  .hero-frame { transform: none; }
  .hero-badge { left: auto; right: 14px; bottom: -22px; }
  .two-col { grid-template-columns: 1fr; gap: 14px; }
  .pillars { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 560px) {
  .wrap { padding-inline: 20px; }
  .cards { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .nav-brand img { height: 20px; }
  .footer-inner { flex-direction: column; gap: 26px; }
  .hero-name-last { -webkit-text-stroke-width: 1.5px; }
}
