/* AIQuest — Journey map theme */
:root {
  --indigo: #4338CA;
  --indigo-dark: #3730A3;
  --orange: #EA580C;
  --orange-light: #FB923C;
  --cream: #FFFBEB;
  --grey: #78716C;
  --grey-light: #A8A29E;
  --cyan: #06B6D4;
  --white: #FFFFFF;
  --text: #292524;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Roboto", sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(67, 56, 202, 0.08);
  --path-dash: 8 6;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--indigo);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--indigo);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: var(--radius);
}

.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--indigo);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--indigo);
  letter-spacing: 0.04em;
}

.logo span { color: var(--orange); }

.nav-toggle {
  display: none;
  background: var(--cream);
  border: 2px solid var(--indigo);
  color: var(--indigo);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--indigo);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-primary {
  background: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
}

.btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
}

.btn-outline:hover {
  background: var(--indigo);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--indigo);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
  color: var(--orange);
}

/* Section utilities */
.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-header p {
  color: var(--grey);
  font-size: 1.05rem;
}

/* Hero journey map */
.hero-journey {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%234338CA' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  position: relative;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--indigo);
  box-shadow: var(--shadow);
}

.hero-map-wrap::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 12px, transparent 12px, transparent 20px);
  border-radius: 2px;
  opacity: 0.7;
}

.hero-map-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Quest band */
.quest-band {
  background: var(--indigo);
  color: var(--white);
  padding: 1.25rem 0;
  position: relative;
}

.quest-band::before,
.quest-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--cyan) 0, var(--cyan) 8px, transparent 8px, transparent 16px);
}

.quest-band::before { top: 0; }
.quest-band::after { bottom: 0; }

.band-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.band-steps li {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.06em;
  padding: 0.25rem 0;
}

.band-steps li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -1.35rem;
  color: var(--orange);
  font-size: 1.1rem;
}

.band-steps span {
  border-bottom: 2px solid var(--cyan);
  padding-bottom: 2px;
}

/* Package cards */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.package-card {
  background: var(--white);
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.package-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.5rem;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid var(--white);
  transform: translateY(-50%);
}

.package-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow);
}

.package-card.featured {
  border-color: var(--indigo);
  background: linear-gradient(180deg, var(--white) 0%, rgba(67, 56, 202, 0.04) 100%);
}

.package-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--indigo);
  margin: 0.5rem 0 1rem;
}

.package-price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--grey);
}

.package-card ul {
  flex: 1;
  margin-bottom: 1.25rem;
}

.package-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--grey);
}

.package-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.6rem;
  top: 0.35rem;
}

/* Milestone requirements strip */
.milestone-strip {
  background: var(--white);
  border-top: 2px dashed var(--indigo);
  border-bottom: 2px dashed var(--indigo);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.milestone-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--cyan) 0, var(--cyan) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.milestone-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.milestone-marker {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--indigo);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--orange);
}

.milestone-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--indigo);
}

.milestone-item p {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.milestone-progress {
  height: 6px;
  background: var(--cream);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--grey-light);
}

.milestone-bar {
  display: block;
  height: 100%;
  width: var(--bar-width, 0%);
  background: linear-gradient(90deg, var(--cyan), var(--indigo));
  border-radius: 3px;
  transition: width 1s ease;
}

html.js .milestone-bar {
  width: 0;
}

html.js .milestone-bar.is-filled {
  width: var(--bar-width);
}

/* Journey steps */
.journey-path {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.journey-path-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.journey-steps {
  position: relative;
  padding-left: 2rem;
}

.journey-steps::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--indigo) 0, var(--indigo) 8px, transparent 8px, transparent 16px);
}

.journey-step {
  position: relative;
  padding: 0 0 1.75rem 1.75rem;
}

.journey-step::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--indigo);
}

.journey-step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--indigo);
}

.journey-step p {
  font-size: 0.92rem;
  color: var(--grey);
  margin: 0;
}

.journey-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--cyan);
  box-shadow: var(--shadow);
}

.journey-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* Service blocks home */
.service-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-block {
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.service-block h3 {
  font-size: 1.35rem;
  color: var(--indigo);
}

.service-block p {
  font-size: 0.92rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

.service-block a {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Testimonials milestone */
.testimonials-section {
  background: var(--white);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.testimonial-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--indigo);
  opacity: 0.2;
}

.testimonial-card {
  background: var(--cream);
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  margin-top: 1.5rem;
}

.testimonial-card::before {
  content: attr(data-milestone);
  position: absolute;
  top: -14px;
  left: 1.5rem;
  background: var(--indigo);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
}

.testimonial-card blockquote {
  margin: 0;
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
}

.testimonial-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--indigo);
}

.testimonial-card cite span {
  display: block;
  font-weight: 400;
  color: var(--grey);
  font-size: 0.82rem;
}

/* CTA band */
.cta-band {
  background: var(--indigo);
  color: var(--white);
  text-align: center;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(234, 88, 12, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--white);
  position: relative;
}

.cta-band p {
  color: rgba(255, 251, 235, 0.85);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  position: relative;
}

/* Adopter note */
.adopter-note {
  padding: 2rem 0 3rem;
  text-align: center;
}

.adopter-note p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--grey);
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px dashed var(--cyan);
  border-radius: var(--radius);
}

.adopter-note strong {
  color: var(--indigo);
}

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-dark) 100%);
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
}

.page-hero h1 { color: var(--white); }

.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 251, 235, 0.9);
  font-size: 1.05rem;
}

.page-hero .section-label { color: var(--cyan); }

/* Collection */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border: 2px solid var(--grey-light);
  background: var(--white);
  color: var(--grey);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--indigo);
  background: var(--indigo);
  color: var(--white);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.collection-card {
  background: var(--white);
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.collection-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow);
}

.collection-card.is-hidden { display: none; }

.collection-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.collection-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.collection-ref {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.collection-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
  font-size: 0.82rem;
  color: var(--grey);
  margin: 0.75rem 0;
  padding: 0.75rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.collection-meta dt {
  font-weight: 600;
  color: var(--text);
}

.collection-meta dd { margin: 0; }

.collection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.5rem 0;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  background: rgba(67, 56, 202, 0.08);
  color: var(--indigo);
  border-radius: 12px;
}

.collection-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  margin: 0.75rem 0;
}

/* Services detail */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px dashed var(--grey-light);
}

.service-detail:last-child { border-bottom: none; }

.service-detail:nth-child(even) .service-detail-copy { order: 2; }
.service-detail:nth-child(even) .service-detail-img { order: 1; }

.service-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--grey);
}

.service-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.service-detail-img img {
  border-radius: var(--radius);
  border: 2px solid var(--indigo);
  box-shadow: var(--shadow);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--white);
  border: 2px solid var(--indigo);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
}

.stat-card span {
  font-size: 0.85rem;
  color: var(--grey);
}

.cert-list {
  margin-top: 2rem;
}

.cert-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.95rem;
}

.cert-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.about-images {
  display: grid;
  gap: 1rem;
}

.about-images img {
  border-radius: var(--radius);
  border: 2px solid var(--cyan);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 2px solid var(--indigo);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-info-card h2 {
  font-size: 1.75rem;
  color: var(--indigo);
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--grey);
}

.contact-info-card a { word-break: break-all; }

form {
  background: var(--white);
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--indigo);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #DC2626;
}

.field-error {
  display: block;
  font-size: 0.82rem;
  color: #DC2626;
  margin-top: 0.25rem;
  min-height: 1.1em;
}

html.js .field-error { visibility: hidden; }
html.js .field-error.visible { visibility: visible; }

.form-success {
  display: none;
  background: var(--cream);
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.form-success.visible {
  display: block;
  animation: fadeInUp 0.6s ease;
}

.form-success h3 {
  color: var(--indigo);
  font-size: 1.75rem;
}

.form-success p {
  color: var(--grey);
  font-size: 1.05rem;
  margin: 0;
}

/* Legal */
.legal-page {
  padding: clamp(2rem, 5vw, 3.5rem) 0 4rem;
}

.legal-page h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--indigo);
  margin-top: 2rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
  color: var(--grey);
}

/* Footer */
.site-footer {
  background: var(--indigo-dark);
  color: rgba(255, 251, 235, 0.85);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.site-footer .logo { color: var(--white); }
.site-footer a { color: var(--cyan); }
.site-footer a:hover { color: var(--orange-light); }

.site-footer h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 251, 235, 0.15);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 251, 235, 0.6);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--indigo);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  padding: 1rem 0;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  width: min(1140px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--grey);
  flex: 1;
  min-width: 240px;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Animations — progressive enhancement */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

html.js .slide-up,
html.js .fade-in {
  opacity: 1;
  transform: none;
}

html.js .slide-up:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}

html.js .fade-in:not(.is-visible) {
  opacity: 0;
}

html.js .slide-up.is-visible {
  animation: fadeInUp 0.55s ease forwards;
}

html.js .fade-in.is-visible {
  animation: fadeInUp 0.65s ease forwards;
}

html.js .slide-up.delay-1.is-visible { animation-delay: 0.1s; }
html.js .slide-up.delay-2.is-visible { animation-delay: 0.2s; }
html.js .slide-up.delay-3.is-visible { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .slide-up,
  html.js .fade-in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .milestone-bar { transition: none; width: var(--bar-width) !important; }
}

/* Responsive */
@media (max-width: 1024px) {
  .package-grid,
  .milestone-grid,
  .service-blocks { grid-template-columns: repeat(2, 1fr); }
  .milestone-grid::before { display: none; }
  .hero-grid,
  .journey-path-inner,
  .about-grid,
  .contact-grid,
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-copy,
  .service-detail:nth-child(even) .service-detail-img { order: unset; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--indigo);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.is-open { max-height: 420px; }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--cream);
  }

  .main-nav a,
  .main-nav .btn {
    display: block;
    padding: 0.85rem 0.5rem;
  }

  .package-grid,
  .testimonial-track,
  .collection-grid,
  .milestone-grid,
  .service-blocks { grid-template-columns: 1fr; }

  .band-steps li:not(:last-child)::after { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
}
