/* ═══════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════ */
:root {
  --golden-ochre: #F2891B;
  --golden-ochre-light: #F5A04A;
  --golden-ochre-dark: #D07010;
  --burnt-sienna: #B86010;
  --warm-amber: #F5A04A;
  --charcoal-brown: #1A1C20;
  --deep-navy: #0A0C0E;
  --deep-navy-light: #141618;
  --dusty-blue: #1A4D6B;
  --soft-cream: #ECEAE6;
  --parchment: #DDD8CE;
  --parchment-dark: #CCC6BA;
  --warm-white: #F4F2EE;
  --ink-brown: #0A0C0E;
  --faded-gold: #C87818;

  --text-primary: #0A0C0E;
  --text-secondary: #3A3C3E;
  --text-light: #ECEAE6;
  --text-muted: #6A6C6E;
  --border-warm: rgba(242, 137, 27, 0.15);
  --border-gold: rgba(242, 137, 27, 0.3);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --content-max: 900px;
  --content-wide: 1100px;
  --section-pad: clamp(5rem, 10vw, 8rem);
}

/* ═══════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--deep-navy);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════════════
   GLOBAL CANVAS GRAIN TEXTURE
   ═══════════════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ═══════════════════════════════════════════════════
   CONTAINERS
   ═══════════════════════════════════════════════════ */
.container { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }
.container--wide { max-width: var(--content-wide); }

/* ═══════════════════════════════════════════════════
   PAINTING-BACKED SECTIONS (the core visual concept)
   ═══════════════════════════════════════════════════ */
.painting-section {
  position: relative;
  overflow: hidden;
}

.painting-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark overlay — painting as atmospheric texture */
.painting-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 14, 0.74) 0%,
    rgba(10, 12, 14, 0.70) 40%,
    rgba(10, 12, 14, 0.76) 100%
  );
}

/* Vignette darkening at edges */
.painting-section__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 100px 30px rgba(10, 12, 14, 0.2);
  pointer-events: none;
}

.painting-section__content {
  position: relative;
  z-index: 5;
}

/* ═══════════════════════════════════════════════════
   DECORATIVE SVG LAYER (sits between overlay and content)
   ═══════════════════════════════════════════════════ */
.decor-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.decor-layer svg {
  position: absolute;
}

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--golden-ochre);
  margin-bottom: 0.75rem;
}

.section-label--light { color: var(--golden-ochre-light); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subheading {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.35s ease;
  position: relative;
}

.btn--primary {
  background: var(--golden-ochre);
  color: var(--ink-brown);
  border: 1px solid var(--golden-ochre);
  box-shadow: 0 2px 12px rgba(200, 150, 46, 0.2);
}

.btn--primary:hover {
  background: var(--warm-amber);
  border-color: var(--warm-amber);
  box-shadow: 0 4px 24px rgba(218, 165, 32, 0.35);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--golden-ochre-light);
  border: 1px solid rgba(212, 169, 74, 0.5);
}

.btn--ghost:hover {
  background: rgba(212, 169, 74, 0.1);
  border-color: var(--golden-ochre-light);
}

.btn--full { width: 100%; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ═══════════════════════════════════════════════════
   NAVIGATION — overrides on top of base.css
   ═══════════════════════════════════════════════════ */
.nav { position: fixed; background: transparent; border-bottom: none; padding: 1.25rem 0; transition: all 0.4s ease; }
.nav--scrolled { background: rgba(10, 12, 14, 0.95); padding: 0.7rem 0; }
.nav__container { max-width: var(--content-wide); }
.nav__logo { color: var(--soft-cream); }
.nav__logo:hover { color: var(--golden-ochre-light); }
.nav__link { color: rgba(245,240,232,0.7); }
.nav__link:hover { color: var(--golden-ochre-light); }
.nav__cta { background: var(--golden-ochre); color: var(--ink-brown); }
.nav__cta:hover { background: var(--warm-amber); }
.nav__toggle span { background: var(--soft-cream); }

/* ═══════════════════════════════════════════════════
   HERO — Full painting background
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
}

.hero .painting-section__bg {
  background-image: url('/consulting/images/harbour-sunset-lighthouse.webp');
}

.hero__content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--golden-ochre-light);
  border: 1px solid rgba(212, 169, 74, 0.35);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--soft-cream);
  margin-bottom: 1.5rem;
}

.hero__title--accent {
  color: var(--golden-ochre-light);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
/* ═══════════════════════════════════════════════════
   OPTION 2 — TWO PATHS (variation)
   ═══════════════════════════════════════════════════ */
.opt2-section {
  background: var(--parchment);
  padding: var(--section-pad) 0;
  position: relative;
  border-top: 1px solid var(--parchment-dark);
}
.opt2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
.opt2-card {
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  border-radius: 6px;
  padding: 2.5rem;
  transition: all 0.4s;
}
.opt2-card:hover { border-color: var(--golden-ochre); box-shadow: 0 8px 32px rgba(242, 137, 27, 0.12); transform: translateY(-4px); }
.opt2-card__icon { color: var(--golden-ochre); margin-bottom: 1.25rem; }
.opt2-card__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 0.5rem; }
.opt2-card__tagline { font-family: var(--font-heading); font-size: 0.95rem; font-style: italic; color: var(--golden-ochre-dark); margin-bottom: 1rem; }
.opt2-card__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.5rem; }
.opt2-card__includes { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.opt2-card__includes span { font-weight: 600; color: var(--text-secondary); }
.opt2-note { font-family: var(--font-heading); font-size: 1.05rem; font-style: italic; color: var(--text-secondary); margin-bottom: 1.75rem; }

/* ═══════════════════════════════════════════════════
   SERVICES — painting-backed dark section
   ═══════════════════════════════════════════════════ */
.services-section {
  padding: var(--section-pad) 0;
  color: var(--text-light);
}

.services-section .painting-section__bg {
  background-color: var(--dark-navy);
}

.services-section .painting-section__overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 12, 14, 0.76) 0%,
    rgba(10, 12, 14, 0.72) 50%,
    rgba(10, 12, 14, 0.78) 100%
  );
}

.services-section .section-heading { color: var(--soft-cream); }
.services-section .section-subheading { color: rgba(245,240,232,0.7); margin-left: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card--wide {
  grid-column: span 3;
}

.service-card {
  background: rgba(10, 12, 14, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(245, 240, 232, 0.08);
  padding: 1.75rem 1.5rem;
  transition: all 0.35s;
}
.service-card:hover { border-color: rgba(242, 137, 27, 0.3); background: rgba(10, 12, 14, 0.7); box-shadow: 0 8px 32px rgba(242, 137, 27, 0.12); transform: translateY(-4px); }

.service-card__icon { color: var(--golden-ochre-light); margin-bottom: 1rem; opacity: 0.8; }
.service-card__name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--soft-cream); margin-bottom: 0.5rem; }
.service-card__desc { font-size: 0.88rem; line-height: 1.65; color: rgba(245,240,232,0.6); }

/* ═══════════════════════════════════════════════════
   PROCESS — parchment with decorative SVG layer
   ═══════════════════════════════════════════════════ */
.process-section {
  background: var(--warm-white);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS — painting-backed with frosted cards
   ═══════════════════════════════════════════════════ */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
}
.testimonials-section .painting-section__bg {
  background-image: url('/consulting/images/stock-exchange-copenhagen.webp');
}
.testimonials-section .painting-section__overlay {
  background: linear-gradient(180deg, rgba(37,34,32,0.84) 0%, rgba(37,34,32,0.80) 40%, rgba(37,34,32,0.90) 100%);
}
.testimonials-track {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(245,240,232,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,240,232,0.12);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
.testimonial-card__top {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1.25rem;
}
.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--soft-cream);
}
.testimonial-card__context {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.5);
}
.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(245,240,232,0.85);
  flex-grow: 1;
}
.testimonial-card__stars {
  color: var(--golden-ochre);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-top: 1.25rem;
}

/* ═══════════════════════════════════════════════════
   FAQ — dark (deep navy, no painting)
   ═══════════════════════════════════════════════════ */
.faq-section {
  background: var(--deep-navy);
  padding: var(--section-pad) 0;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.faq-section .section-heading { color: var(--soft-cream); }

.faq-list { margin-top: 2.5rem; }

.faq-item { border-bottom: 1px solid rgba(245,240,232,0.08); }
.faq-item:first-child { border-top: 1px solid rgba(245,240,232,0.08); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 0;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--soft-cream); text-align: left; transition: color 0.3s;
}
.faq-question:hover { color: var(--golden-ochre-light); }

.faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; margin-left: 1rem; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--golden-ochre-light); transition: transform 0.3s;
}
.faq-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.is-open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq-answer p { font-size: 0.95rem; line-height: 1.75; color: rgba(245,240,232,0.65); max-width: 700px; }

/* ═══════════════════════════════════════════════════
   BOOKING — soft cream
   ═══════════════════════════════════════════════════ */
.booking-section {
  background: var(--soft-cream);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }

.booking-text h2 { font-family: var(--font-display); font-size: clamp(1.5rem,3.5vw,2.1rem); font-weight: 600; line-height: 1.3; margin-bottom: 1rem; }
.booking-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }
.booking-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.75rem; font-style: italic; }

.contact-form {
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  padding: 2rem;
}
.contact-form__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 1.5rem; }
.contact-form__group { margin-bottom: 1.25rem; }
.contact-form__label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.4rem; }
.contact-form__input {
  width: 100%; padding: 0.7rem 0.9rem;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text-primary); background: var(--parchment);
  border: 1px solid var(--border-warm); border-radius: 3px;
  transition: border-color 0.3s; outline: none;
}
.contact-form__input:focus { border-color: var(--golden-ochre); }
.contact-form__input::placeholder { color: var(--text-muted); opacity: 0.6; }
.contact-form__textarea { resize: vertical; min-height: 100px; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: #050607;
  color: rgba(245,240,232,0.6);
  padding: 3.5rem 0 2rem;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer__logo { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--soft-cream); margin-bottom: 0.5rem; }
.footer__tagline { font-size: 0.88rem; line-height: 1.6; }
.footer__heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--golden-ochre); margin-bottom: 1rem; }
.footer__links a { display: block; font-size: 0.88rem; margin-bottom: 0.5rem; transition: color 0.3s; }
.footer__links a:hover { color: var(--golden-ochre-light); }
.footer__bottom { border-top: 1px solid rgba(245,240,232,0.08); padding-top: 1.5rem; }
.footer__bottom p { font-size: 0.78rem; margin-bottom: 0.35rem; }
.footer__disclaimer { opacity: 0.5; font-size: 0.72rem; }

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.40s; }

/* Hover overrides for cards that also use fade-in — higher specificity wins */
.opt2-card.fade-in { transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.4s ease, box-shadow 0.4s ease; }
.opt2-card.is-visible:hover { transform: translateY(-4px); }
.service-card.fade-in { transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease; }
.service-card.is-visible:hover { transform: translateY(-4px); }

/* Subtle parallax shift */
.parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ═══════════════════════════════════════════════════
   GLANCE CARDS (What We Do section)
   ═══════════════════════════════════════════════════ */
.glance-card {
  border: 1px solid var(--border-warm);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.glance-card:hover {
  border-color: var(--golden-ochre);
  box-shadow: 0 8px 32px rgba(242, 137, 27, 0.12);
  transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════════
   WHAT I HELP WITH — expanded service cards
   ═══════════════════════════════════════════════════ */
.exp-services-section {
  background: var(--parchment);
  padding: var(--section-pad) 0;
  border-top: 3px solid var(--golden-ochre);
}

.exp-services-section .section-heading { color: var(--text-primary); }
.exp-services-section .section-subheading { color: var(--text-secondary); }

.exp-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.exp-card {
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.exp-card:hover {
  border-color: var(--golden-ochre);
  box-shadow: 0 8px 32px rgba(242, 137, 27, 0.12);
  transform: translateY(-3px);
}

.exp-card__icon { color: var(--golden-ochre); margin-bottom: 1rem; opacity: 0.85; }

.exp-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.exp-card__desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

.exp-services-note {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   PACKAGE CHECKLIST & GUARANTEES STRIP
   ═══════════════════════════════════════════════════ */
.opt2-card__checklist {
  list-style: none;
  margin-top: 1.25rem;
  padding: 0;
  border-top: 1px solid var(--border-warm);
  padding-top: 1rem;
}
.opt2-card__checklist li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
}
.opt2-check {
  color: var(--golden-ochre-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.pkg-guarantees {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  text-align: center;
}
.pkg-guarantee__title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.pkg-guarantee__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   PACKAGES — dark variant
   ═══════════════════════════════════════════════════ */
.opt2-section--dark {
  background: var(--deep-navy);
  border-top: 1px solid rgba(245,240,232,0.06);
}

.opt2-section--dark .section-heading { color: var(--soft-cream); }
.opt2-section--dark .section-subheading { color: rgba(245,240,232,0.7); }
.opt2-section--dark .opt2-note { color: rgba(245,240,232,0.55); }

.opt2-section--dark .opt2-card {
  background: rgba(245,240,232,0.04);
  border-color: rgba(245,240,232,0.1);
}
.opt2-section--dark .opt2-card:hover {
  background: rgba(245,240,232,0.07);
  border-color: rgba(242,137,27,0.4);
}
.opt2-section--dark .opt2-card__name { color: var(--soft-cream); }
.opt2-section--dark .opt2-card__tagline { color: var(--golden-ochre-light); font-style: italic; }
.opt2-section--dark .opt2-card__desc { color: rgba(245,240,232,0.65); }
.opt2-section--dark .opt2-card__includes { color: rgba(245,240,232,0.4); }
.opt2-section--dark .opt2-card__icon { color: var(--golden-ochre-light); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .booking-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .opt2-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--wide { grid-column: span 2; }
  .exp-card-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .glance-card { padding: 2rem 1.5rem !important; }
  .glance-grid { grid-template-columns: 1fr 1fr !important; }
  .bio-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .bio-heading-mobile { display: block !important; }
  .bio-heading-desktop { display: none !important; }
  .pkg-guarantees { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 640px) {
  .nav__menu { background: var(--deep-navy); }
  .nav__link { color: var(--soft-cream); }
  .hero { min-height: auto; padding: 6rem 0 4rem; }
  .hero .painting-section__bg { background-image: url('/consulting/images/mobile/harbour-sunset-lighthouse-mobile.webp') !important; }
  .hero__content { padding: 0 1rem; }
  .hero__title { font-size: clamp(2rem, 5.5vw, 3.5rem); }
  .hero__subtitle { font-size: clamp(0.95rem, 1.8vw, 1.2rem); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .bio-section { padding-top: 2.5rem !important; }
  .glance-grid { grid-template-columns: 1fr !important; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; }
  .pkg-guarantees { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
}
