/* =============================================
   Champion Organization — Stylesheet
   ============================================= */

/* 1. Design Tokens */
:root {
  --bg:          #ece7de;
  --bg-light:    #f5f1ea;
  --bg-white:    #faf8f5;
  --text:        #2d2926;
  --text-mid:    #5a5047;
  --text-light:  #8a7d72;
  --accent:      #c87a5c;
  --accent-dark: #b3664a;
  --accent-pale: #f0d5c8;
  --border:      #d9d2c8;
  --shadow:      rgba(45, 41, 38, 0.08);
  --radius:      6px;
  --radius-lg:   14px;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Raleway', system-ui, sans-serif;
  --max-width:   1160px;
  --nav-h:       72px;
}

/* 2. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* 3. Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 500; letter-spacing: 0; }

p { color: var(--text-mid); max-width: 62ch; }
p + p { margin-top: 1rem; }

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* 4. Layout Utilities */
.container {
  width: min(var(--max-width), 100% - 3rem);
  margin-inline: auto;
}

.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-sm { padding-block: clamp(2.5rem, 5vw, 4rem); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* 5. Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.75; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1.05rem; color: var(--text-mid); }
.nav-mobile a:hover { color: var(--text); }

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 122, 92, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  color: var(--text);
  padding-inline: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s;
  border-radius: 0;
}
.btn-ghost:hover { text-decoration-color: var(--accent); }

.btn-wide { width: 100%; }
.btn-lg { padding: 0.9rem 2.25rem; font-size: 0.95rem; }

/* Nav Book button */
.btn-nav {
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.87rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* 7. Photo utilities */
.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--border);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 8. Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; }

/* 9. Service Package Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px var(--shadow);
}
.service-card.featured {
  border-color: var(--accent);
  position: relative;
}
.service-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.service-card-photo {
  height: 200px;
  background: var(--bg-light);
  overflow: hidden;
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-photo img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.service-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.service-price .note {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.service-includes {
  margin-bottom: 1.5rem;
  flex: 1;
}
.service-includes li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.service-includes li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* 10. Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: steps;
}

.step {
  position: relative;
  padding-top: 1rem;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--accent-pale);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.93rem; }

/* 11. Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--accent-pale);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.97rem;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.testimonial-detail {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonials-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* 12. CTA Band */
.cta-band {
  background: var(--text);
  color: #fff;
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(255,255,255,0.7);
  margin-inline: auto;
  margin-bottom: 2rem;
  max-width: 50ch;
}

/* 13. Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

input, textarea, select {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 122, 92, 0.15);
}

input::placeholder, textarea::placeholder { color: var(--text-light); }

textarea { resize: vertical; min-height: 120px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a7d72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* 14. FAQ Accordion */
.faq-list { border-top: 1px solid var(--border); }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: 50%;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--text-mid);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; }

.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 72ch;
}
.faq-item.open .faq-answer { display: block; }

/* 15. Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item { text-align: center; padding: 0.5rem; }

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value-item p { font-size: 0.93rem; margin-inline: auto; }

/* 16. Footer */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding-block: 3rem 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer-brand .nav-logo {
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  max-width: 28ch;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* 17. Page Heroes */
.page-hero {
  padding-block: clamp(3rem, 7vw, 6rem);
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.page-hero-centered {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.page-hero-centered p {
  margin-inline: auto;
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* 18. Bands */
.band-light { background: var(--bg-light); }
.band-white { background: var(--bg-white); }
.band-accent { background: var(--accent-pale); }

/* 19. Who-I-Help strip */
.who-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.who-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.who-emoji {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.who-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.who-item p { font-size: 0.9rem; max-width: none; }

/* 20. About page extras */
.about-hero .photo-frame {
  height: 520px;
  background: linear-gradient(135deg, var(--accent-pale), var(--border));
}

.about-hero .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.photo-placeholder-note {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(45,41,38,0.75);
  color: #fff;
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
  pointer-events: none;
}

/* 21. Contact page */
.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--border);
}

.contact-photo-side {
  position: relative;
}

.contact-photo-side .photo-frame {
  height: 100%;
  min-height: 480px;
}

/* 22. Privacy page */
.privacy-content {
  max-width: 760px;
  margin-inline: auto;
}

.privacy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.privacy-content p,
.privacy-content li {
  font-size: 0.97rem;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.privacy-content ul li { margin-bottom: 0.4rem; }

/* 23. Cookie Consent Banner (CMP) */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.25rem 1.5rem;
}

#cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.cookie-text p {
  font-size: 0.85rem;
  color: var(--text-mid);
  max-width: 60ch;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-cookie-accept {
  background: var(--accent);
  color: #fff;
}
.btn-cookie-accept:hover { background: var(--accent-dark); }

.btn-cookie-manage {
  border: 1.5px solid var(--border);
  color: var(--text-mid);
}
.btn-cookie-manage:hover { border-color: var(--text-mid); color: var(--text); }

.btn-cookie-reject {
  color: var(--text-light);
  font-size: 0.8rem;
}
.btn-cookie-reject:hover { color: var(--text-mid); }

/* Cookie Modal */
#cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9001;
  align-items: center;
  justify-content: center;
  background: rgba(45,41,38,0.5);
  padding: 1rem;
}
#cookie-modal.visible { display: flex; }

.cookie-modal-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-inner h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.cookie-modal-inner > p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  max-width: none;
}

.cookie-toggle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-toggle-row:last-of-type { border-bottom: none; }

.cookie-toggle-label strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.cookie-toggle-label span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Toggle switch */
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.toggle input:checked + .toggle-slider { background: var(--accent); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle-slider { opacity: 0.6; cursor: default; }

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Privacy re-open button */
#privacy-btn {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 8999;
  font-size: 0.72rem;
  color: var(--text-light);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.35rem 0.85rem;
  transition: all 0.2s;
  display: none;
}
#privacy-btn.visible {
  display: block;
}
#privacy-btn:hover {
  color: var(--text);
  border-color: var(--text-light);
}

/* 24. Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* 25. Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }

  .values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .values-grid .value-item { text-align: left; display: flex; gap: 1.25rem; align-items: flex-start; }
  .values-grid .value-item .value-icon { flex-shrink: 0; margin: 0; }

  .who-strip { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .about-hero .photo-frame { height: 320px; }
  .contact-photo-side .photo-frame { min-height: 300px; }
  .steps { grid-template-columns: 1fr; }
}

/* Utility */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
