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

:root {
  --yellow: #F5C842;
  --yellow-light: #FFF6CC;
  --yellow-dark: #C9990A;
  --purple: #3D1F6B;
  --purple-mid: #6A3FA0;
  --purple-light: #EDE6FA;
  --cream: #FAF7EF;
  --ink: #1A1208;
  --muted: #6B6050;
  --white: #FFFFFF;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Nunito", "Helvetica Neue", system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 100vw;
}

.page-wrap {
  overflow-x: hidden;
  max-width: 100vw;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(250,247,239,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61,31,107,0.08);
  transition: box-shadow 0.3s;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-logo span { color: var(--yellow-dark); }
.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-links a {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 400;
  color: var(--muted); padding: 0.5rem 1rem; border-radius: 8px;
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.nav-links a:hover, .nav-links a.active { color: var(--purple); background: var(--purple-light); }
.nav-cta {
  background: var(--purple) !important; color: var(--white) !important;
  border-radius: 50px !important; padding: 0.5rem 1.4rem !important;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--purple-mid) !important; transform: translateY(-1px); }

/* PAGE WRAPPER */
.page-wrap { padding-top: 72px; min-height: 100vh; }

/* HERO */
.hero {
  min-height: calc(100vh - 72px);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 5rem 2.5rem 4rem;
  position: relative; overflow: hidden;
  max-width: 1200px; margin: 0 auto;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,200,66,0.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,31,107,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-text { position: relative; z-index: 1; }
.hero-kicker {
  display: inline-block;
  background: var(--yellow); color: var(--ink);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600; line-height: 1.1; letter-spacing: -1px;
  color: var(--purple); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--yellow-dark); }
.hero p { font-size: 1.1rem; color: var(--muted); max-width: 460px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--purple); color: var(--white);
  border: none; padding: 0.85rem 2rem; border-radius: 50px;
  font-family: var(--sans); font-size: 1rem; font-weight: 500;
  cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--purple-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,31,107,0.25); }
.btn-outline {
  background: none; color: var(--purple);
  border: 1.5px solid var(--purple); padding: 0.85rem 2rem; border-radius: 50px;
  font-family: var(--sans); font-size: 1rem; font-weight: 500;
  cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--purple-light); }

.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: 0 20px 60px rgba(61,31,107,0.12);
  width: 100%; max-width: 400px;
  transform: rotate(2deg);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute; inset: -8px;
  background: var(--yellow); border-radius: 28px; z-index: -1;
  transform: rotate(-3deg);
}
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.stat-box {
  background: var(--cream); border-radius: 12px; padding: 1rem;
  text-align: center;
}
.stat-box .num { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--purple); }
.stat-box .lbl { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.review-mini {
  background: var(--purple-light); border-radius: 12px; padding: 1rem;
  font-size: 0.9rem; color: var(--purple); font-style: italic;
  line-height: 1.5; border-left: 3px solid var(--purple);
}
.review-mini .reviewer { font-style: normal; font-weight: 500; font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; }

/* SECTION COMMON */
section { padding: 5rem 2.5rem; }
.section-label {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow-dark); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600; color: var(--purple); line-height: 1.2; letter-spacing: -0.5px;
  margin-bottom: 1rem;
}
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 560px; line-height: 1.7; }

/* PORTFOLIO */
.portfolio-section { background: var(--white); }
.portfolio-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(61,31,107,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--cream); cursor: pointer;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(61,31,107,0.14); }
.portfolio-thumb {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.portfolio-thumb.nomad { background: linear-gradient(135deg, #1B4332, #2D6A4F); }
.portfolio-thumb.shoes { background: linear-gradient(135deg, #8B4513, #D2691E); }
.portfolio-thumb.yours { background: linear-gradient(135deg, #3D1F6B, #6A3FA0); }
.portfolio-info { padding: 1.25rem; }
.portfolio-tag { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--yellow-dark); margin-bottom: 0.4rem; }
.portfolio-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--purple); margin-bottom: 0.4rem; }
.portfolio-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* SERVICES */
.services-section { position: relative; overflow: hidden; }
.services-section::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 45%; background: var(--purple-light); z-index: 0;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.services-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
.services-list { display: flex; flex-direction: column; gap: 1rem; }
.service-item {
  background: var(--white); border-radius: 14px; padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--yellow);
  transition: all 0.25s; cursor: default;
}
.service-item:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(61,31,107,0.1); }
.service-item h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--purple); margin-bottom: 0.3rem; }
.service-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.services-right { padding-top: 2rem; }
.bob-intro {
  background: var(--purple); border-radius: var(--radius);
  padding: 2.5rem; color: var(--white); text-align: center;
  position: relative; overflow: hidden;
}
.bob-intro::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: rgba(245,200,66,0.2); border-radius: 50%;
}
.bob-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--yellow); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--purple); position: relative; z-index: 1;
  border: 4px solid rgba(255,255,255,0.3);
}
.bob-intro h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.bob-intro p { font-size: 0.92rem; opacity: 0.85; line-height: 1.6; position: relative; z-index: 1; }
.bob-cta { background: var(--yellow); color: var(--ink); margin-top: 1.5rem; position: relative; z-index: 1; }
.bob-cta:hover { background: var(--yellow-dark) !important; color: var(--white) !important; }

/* REVIEW */
.review-section { background: var(--purple); color: var(--white); text-align: center; }
.review-section .section-label { color: var(--yellow); }
.review-section .section-title { color: var(--white); }
.review-quote {
  font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic; font-weight: 300; max-width: 700px;
  margin: 2rem auto 1rem; line-height: 1.5; color: rgba(255,255,255,0.92);
}
.review-author { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.stars { color: var(--yellow); font-size: 1.2rem; margin: 1rem 0 0.5rem; letter-spacing: 2px; }

/* AFFILIATES */
.affiliates-header { text-align: center; margin-bottom: 2.5rem; }
.affiliate-grid { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.affiliate-card {
  background: var(--white); border: 1px solid rgba(61,31,107,0.1);
  border-radius: 14px; padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1rem;
  transition: all 0.25s; text-decoration: none; color: var(--ink);
  min-width: 200px;
}
.affiliate-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(61,31,107,0.12); border-color: var(--yellow); }
.affiliate-icon { font-size: 2rem; }
.affiliate-name { font-weight: 500; font-size: 0.95rem; color: var(--purple); }
.affiliate-desc { font-size: 0.8rem; color: var(--muted); }

/* FOOTER */
footer {
  background: var(--ink); color: var(--white);
  padding: 3rem 2.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-brand .logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--yellow); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { background: var(--yellow); color: var(--ink); }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--yellow); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-family: var(--sans); font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s; text-decoration: none; display: inline-block;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { grid-column: 1/-1; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ABOUT PAGE */
.about-hero {
  padding: 5rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; color: var(--purple); line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 1.5rem; }
.about-body { font-size: 1rem; color: var(--muted); line-height: 1.8; }
.about-visual {
  background: var(--purple); border-radius: var(--radius);
  padding: 3rem 2rem; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(245,200,66,0.15); border-radius: 50%;
}
.about-big-initial {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--yellow); margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: var(--purple); border: 6px solid rgba(255,255,255,0.2);
  position: relative; z-index: 1;
}
.about-visual h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.about-visual p { opacity: 0.75; font-size: 0.95rem; position: relative; z-index: 1; }
.about-skills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; justify-content: center; position: relative; z-index: 1; }
.skill-tag { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 0.35rem 0.9rem; font-size: 0.8rem; color: rgba(255,255,255,0.85); }
.about-values { padding: 5rem 2.5rem; background: var(--white); }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card { background: var(--cream); border-radius: 16px; padding: 1.75rem; border-bottom: 3px solid var(--yellow); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--purple); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* DOWNLOADS PAGE */
.page-hero { padding: 5rem 2.5rem 3rem; max-width: 700px; }
.downloads-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 0 2.5rem 5rem; max-width: 1200px; }
.dl-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  border: 1px solid rgba(61,31,107,0.08); transition: all 0.3s;
  display: flex; flex-direction: column;
}
.dl-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(61,31,107,0.12); border-color: var(--yellow); }
.dl-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.25rem; }
.dl-icon.qa { background: #E3F2FD; }
.dl-icon.tv { background: #F3E5F5; }
.dl-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--purple); margin-bottom: 0.5rem; }
.dl-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 1.5rem; }
.dl-btn { display: inline-block; background: var(--purple); color: var(--white); padding: 0.65rem 1.5rem; border-radius: 50px; font-size: 0.9rem; font-weight: 500; text-decoration: none; text-align: center; transition: all 0.2s; }
.dl-btn:hover { background: var(--purple-mid); }

/* BLOG PAGE */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 0 2.5rem 5rem; max-width: 1200px; }
.blog-empty {
  grid-column: 1/-1; text-align: center; padding: 4rem 2rem;
  background: var(--white); border-radius: var(--radius); border: 2px dashed rgba(61,31,107,0.12);
}
.blog-empty h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--purple); margin-bottom: 0.75rem; }
.blog-empty p { color: var(--muted); font-size: 0.95rem; }

/* CONTACT PAGE */
.contact-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem;
  padding: 5rem 2.5rem 6rem; align-items: start;
}
.contact-info { position: sticky; top: 100px; }
.contact-info h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--purple); line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 1rem; }
.contact-info p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; background: var(--white);
  border-radius: 14px; margin-bottom: 0.75rem;
  border: 1px solid rgba(61,31,107,0.08);
  transition: all 0.2s; text-decoration: none; color: var(--ink);
}
.contact-detail:hover { border-color: var(--yellow); transform: translateX(4px); }
.contact-detail-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--purple-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 0.85rem; font-weight: 500; color: var(--purple); }
.contact-detail-text span { font-size: 0.82rem; color: var(--muted); }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: 0 8px 40px rgba(61,31,107,0.08);
  border: 1px solid rgba(61,31,107,0.06);
}
.contact-form-wrap h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--purple); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--purple); }
.form-group input, .form-group textarea, .form-group select {
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid rgba(61,31,107,0.12);
  border-radius: 10px; padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(61,31,107,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; border-radius: 50px; margin-top: 0.5rem; cursor: pointer; }
.form-success {
  display: none; text-align: center; padding: 2rem;
  background: var(--purple-light); border-radius: 14px; margin-top: 1rem;
}
.form-success .success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-success h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--purple); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--muted); }
.contact-social-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.contact-social-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--cream); border: 1px solid rgba(61,31,107,0.1);
  border-radius: 50px; padding: 0.5rem 1rem;
  font-size: 0.82rem; font-weight: 500; color: var(--purple);
  text-decoration: none; transition: all 0.2s;
}
.contact-social-btn:hover { background: var(--purple); color: var(--white); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: calc(100% - 3rem); max-width: 680px;
  background: var(--ink); color: var(--white);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  animation: slideUp 0.4s ease;
}
#cookie-banner.hidden { display: none; }
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#cookie-banner p {
  flex: 1; font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0;
  min-width: 200px;
}
#cookie-banner p a { color: var(--yellow); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--yellow); color: var(--ink);
  border: none; border-radius: 50px; padding: 0.55rem 1.25rem;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--yellow-dark); color: var(--white); }
.cookie-btn-decline {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; padding: 0.55rem 1.25rem;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 400;
  cursor: pointer; transition: all 0.2s;
}
.cookie-btn-decline:hover { background: rgba(255,255,255,0.18); color: var(--white); }
@media (max-width: 560px) {
  #cookie-banner { bottom: 0; left: 0; right: 0; transform: none; width: 100%; border-radius: var(--radius) var(--radius) 0 0; }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; max-width: 100%; overflow: hidden; }
  .hero::before, .hero::after { display: none; }
  .hero-visual { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-section::before { display: none; }
  .about-hero { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .downloads-grid { grid-template-columns: 1fr; padding: 0 1.5rem 3rem; }
  .blog-grid { grid-template-columns: 1fr; padding: 0 1.5rem 3rem; }
  .contact-wrap { grid-template-columns: 1fr; padding: 3rem 1.5rem 4rem; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  nav { padding: 1rem 1.5rem; }
  section { padding: 3rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem 2rem; }
}

/* ===== HAMBURGER MENU ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  cursor: pointer;
  border: none; background: none;
  gap: 5px; padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 200;
}
.nav-hamburger:hover { background: var(--purple-light); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--purple); border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s, width 0.25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(26,18,8,0.35);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav-mobile-overlay.open { opacity: 1; visibility: visible; }

/* Mobile nav drawer */
.nav-mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--cream);
  z-index: 150;
  padding: 5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(61,31,107,0.15);
  visibility: hidden;
}
.nav-mobile-drawer.open { transform: translateX(0); visibility: visible; }
.nav-mobile-drawer a {
  font-family: var(--sans); font-size: 1.1rem; font-weight: 400;
  color: var(--muted); padding: 0.9rem 1.2rem;
  border-radius: 10px; text-decoration: none;
  transition: all 0.2s; display: block;
  border-bottom: 1px solid rgba(61,31,107,0.06);
}
.nav-mobile-drawer a:hover, .nav-mobile-drawer a.active {
  color: var(--purple); background: var(--purple-light);
  border-color: transparent;
}
.nav-mobile-drawer .nav-cta {
  margin-top: 1rem;
  background: var(--purple) !important; color: var(--white) !important;
  border-radius: 50px !important; text-align: center;
  font-weight: 500 !important; border: none !important;
}
.nav-mobile-drawer .nav-cta:hover { background: var(--purple-mid) !important; }
.nav-mobile-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--purple-light); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--purple); transition: background 0.2s;
}
.nav-mobile-close:hover { background: var(--yellow); }

/* ===== FLOATING ORBS (hero animation) ===== */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
  animation: floatOrb linear infinite;
  opacity: 0;
}
@keyframes floatOrb {
  0%   { transform: translateY(0) scale(1);    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-120px) scale(1.3); opacity: 0; }
}

/* ===== HERO TYPING CURSOR ===== */
.hero h1 em::after {
  content: '|';
  display: inline-block;
  color: var(--yellow-dark);
  animation: blink 0.9s step-end infinite;
  font-style: normal;
  margin-left: 2px;
  font-weight: 300;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ===== COUNTER ANIMATION ===== */
.stat-box .num { transition: color 0.3s; }
.stat-box:hover .num { color: var(--yellow-dark); }

/* ===== HERO CARD TILT ===== */
.hero-card {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

/* ===== GRADIENT TEXT on hover for section titles ===== */
.section-title {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-section .section-title {
  background: linear-gradient(135deg, #fff 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ===== SMOOTH SCROLL PROGRESS BAR ===== */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--yellow-dark), var(--purple-mid));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ===== SERVICE ITEM ICON ===== */
.service-item { position: relative; overflow: hidden; }
.service-item::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(245,200,66,0.08));
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.service-item:hover::after { opacity: 1; }

/* ===== PORTFOLIO CARD SHIMMER ===== */
.portfolio-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-thumb::after {
  transform: translateX(100%);
}

/* ===== PULSE ON CTA BUTTON ===== */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(61,31,107,0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(61,31,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,31,107,0); }
}
.btn-primary.pulse { animation: pulse-ring 2.5s ease-out infinite; }

/* ===== STAR TWINKLE ===== */
@keyframes twinkle {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.9); }
}
.stars span { display: inline-block; }
.stars span:nth-child(1) { animation: twinkle 2.0s ease-in-out infinite; }
.stars span:nth-child(2) { animation: twinkle 2.0s ease-in-out 0.2s infinite; }
.stars span:nth-child(3) { animation: twinkle 2.0s ease-in-out 0.4s infinite; }
.stars span:nth-child(4) { animation: twinkle 2.0s ease-in-out 0.6s infinite; }
.stars span:nth-child(5) { animation: twinkle 2.0s ease-in-out 0.8s infinite; }

/* ===== RESPONSIVE HAMBURGER SHOW ===== */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  nav {
    min-height: 60px;
    align-items: center;
  }
  .hero-orb { display: none !important; }
}
