/* ============================================================
   Open Wings Counselling — styles.css
   Structure: tokens → reset → base → layout → components →
              sections → utilities → media queries
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* --- Colour palette (derived from logo) --- */
  --ow-terracotta:       #9C4A2C;
  --ow-terracotta-deep:  #7E3A22;
  --ow-clay:             #C07A55;
  --ow-cocoa:            #5A3A2E;
  --ow-ink:              #33261F;
  --ow-cream:            #F4EBDD;
  --ow-sand:             #EFE3D2;
  --ow-linen:            #FBF6EE;
  --ow-sage:             #8C9A86;
  --ow-white:            #FFFFFF;
  --ow-muted:            #8A7563;
  --ow-border:           #E3D6C5;

  /* --- Typography --- */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito Sans', 'Inter', system-ui, sans-serif;

  /* --- Type scale (fluid) --- */
  --text-h1:    clamp(2.4rem, 6vw, 4rem);
  --text-h2:    clamp(1.8rem, 4vw, 2.75rem);
  --text-h3:    clamp(1.2rem, 2.5vw, 1.5rem);
  --text-lead:  clamp(1.05rem, 2vw, 1.25rem);
  --text-body:  1rem;
  --text-sm:    0.875rem;
  --text-xs:    0.8125rem;

  /* --- Spacing scale --- */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* --- Section rhythm --- */
  --section-py: clamp(4rem, 10vw, 7rem);

  /* --- Layout --- */
  --container-max: 1140px;
  --container-px:  clamp(1.25rem, 5vw, 2rem);
  --nav-h:         72px;

  /* --- Radius --- */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-pill: 999px;

  /* --- Shadows --- */
  --shadow-sm:  0 2px 8px rgba(90, 58, 46, .06);
  --shadow-md:  0 8px 24px rgba(90, 58, 46, .09);
  --shadow-lg:  0 20px 50px rgba(90, 58, 46, .12);

  /* --- Motion --- */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur-fast:   180ms;
  --dur-normal: 300ms;
  --dur-slow:   500ms;
}


/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--ow-ink);
  background-color: var(--ow-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ow-cocoa);
  line-height: 1.15;
  font-weight: 500;
}


/* ============================================================
   3. BASE / TYPOGRAPHY
   ============================================================ */
h1 { font-size: var(--text-h1); font-weight: 500; }
h2 { font-size: var(--text-h2); font-weight: 500; }
h3 { font-size: var(--text-h3); font-weight: 500; }
h4 { font-size: 1rem; font-weight: 700; font-family: var(--font-body); color: var(--ow-cocoa); text-transform: uppercase; letter-spacing: .06em; }

p { max-width: 68ch; }

.lead {
  font-size: var(--text-lead);
  line-height: 1.6;
  color: var(--ow-ink);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ow-terracotta);
}

.text-accent {
  color: var(--ow-terracotta);
  font-weight: 700;
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ow-clay);
  margin-bottom: var(--sp-3);
  /* p { max-width: 68ch } would shrink this block and pin it left of centred headers */
  max-width: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ow-terracotta);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}


/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

section {
  padding-block: var(--section-py);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-12);
}

.section-header h2 { margin-top: var(--sp-2); text-wrap: balance; }
.section-intro { margin-top: var(--sp-4); margin-inline: auto; }


/* ============================================================
   5. COMPONENTS
   ============================================================ */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  transition: background var(--dur-normal) var(--ease-out),
              color var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  min-height: 48px;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--ow-terracotta);
  color: var(--ow-white);
  border-color: var(--ow-terracotta);
}
.btn-primary:hover {
  background: var(--ow-terracotta-deep);
  border-color: var(--ow-terracotta-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ow-terracotta);
  border-color: var(--ow-terracotta);
}
.btn-ghost:hover {
  background: var(--ow-terracotta);
  color: var(--ow-white);
  transform: translateY(-1px);
}

.btn-large {
  padding: var(--sp-4) var(--sp-8);
  font-size: 1rem;
  min-height: 56px;
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  background: var(--ow-terracotta);
  color: var(--ow-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  min-height: 40px;
  border: 2px solid var(--ow-terracotta);
  cursor: pointer;
  transition: background var(--dur-normal) var(--ease-out);
}
.btn-primary-sm:hover { background: var(--ow-terracotta-deep); }

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--ow-cocoa);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  min-height: 40px;
  border: 2px solid var(--ow-border);
  cursor: pointer;
  transition: border-color var(--dur-normal);
}
.btn-outline-sm:hover { border-color: var(--ow-terracotta); color: var(--ow-terracotta); }


/* --- Pull quote --- */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--ow-terracotta);
  border-left: 3px solid var(--ow-clay);
  padding-left: var(--sp-6);
  margin-block: var(--sp-8);
  max-width: 54ch;
  line-height: 1.5;
}


/* ============================================================
   6. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* ============================================================
   7. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--ow-cocoa);
  color: var(--ow-linen);
  padding: var(--sp-4) var(--container-px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3) var(--sp-6);
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}

.cookie-banner.hidden { display: none; }

.cookie-text {
  flex: 1 1 260px;
  font-size: var(--text-sm);
  line-height: 1.5;
  max-width: none;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.cookie-link {
  font-size: var(--text-sm);
  color: var(--ow-clay);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-link:hover { color: var(--ow-linen); }

/* Decline button needs light colours on the dark banner */
.cookie-banner .btn-outline-sm {
  color: var(--ow-linen);
  border-color: rgba(251, 246, 238, .35);
}
.cookie-banner .btn-outline-sm:hover {
  color: var(--ow-white);
  border-color: var(--ow-linen);
  background: rgba(255, 255, 255, .08);
}


/* ============================================================
   8. HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--ow-cream);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-normal),
              box-shadow var(--dur-normal);
}

.site-header.scrolled {
  border-color: var(--ow-border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: var(--nav-h);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  color: var(--ow-cocoa);
  transition: opacity var(--dur-fast);
}
.nav-logo:hover { opacity: .8; }
.nav-logo img { border-radius: var(--r-sm); }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.nav-logo-sub {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ow-muted);
  letter-spacing: .04em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}

.nav-link {
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ow-cocoa);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-link:hover {
  color: var(--ow-terracotta);
  background: rgba(156, 74, 44, .06);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.lang-btn {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ow-muted);
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast);
  min-height: 0;
}
.lang-btn.active { color: var(--ow-terracotta); }
.lang-btn:hover  { color: var(--ow-terracotta); }

.lang-divider {
  color: var(--ow-border);
  font-size: var(--text-xs);
  user-select: none;
}

/* Hamburger (mobile only) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--sp-2);
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background var(--dur-fast);
}
.nav-hamburger:hover { background: var(--ow-sand); }
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ow-cocoa);
  border-radius: 2px;
  transition: transform var(--dur-normal) var(--ease-out),
              opacity var(--dur-normal);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   9. HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100svh - var(--nav-h));
  padding: 0;
  overflow: hidden;
  background: var(--ow-cream);
}

.hero-content {
  padding: clamp(3rem, 8vw, 6rem) var(--container-px) clamp(2.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}

.hero-content h1 {
  margin-top: var(--sp-4);
  max-width: 18ch;
}

.hero-subhead {
  margin-top: var(--sp-5);
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.trust-line {
  margin-top: var(--sp-6);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--ow-muted);
  letter-spacing: .04em;
  max-width: none;
}

.hero-image {
  width: 100%;
  overflow: hidden;
  max-height: 55vw;
}

.hero-image picture,
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}


/* ============================================================
   10. TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--ow-cocoa);
  padding-block: var(--sp-8);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,.08);
  color: var(--ow-linen);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-pill);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
}

.chip-icon {
  width: 14px;
  height: 14px;
  stroke: var(--ow-clay);
  flex-shrink: 0;
}


/* ============================================================
   11. ABOUT
   ============================================================ */
.about { background: var(--ow-linen); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.about-image {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
}

.about-image picture,
.about-image img {
  border-radius: var(--r-xl);
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-text h2  { margin-top: var(--sp-2); }

.about-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.about-body p { max-width: 62ch; }


/* ============================================================
   12. SERVICES
   ============================================================ */
.services { background: var(--ow-cream); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-2);
}

.service-card {
  background: var(--ow-linen);
  border: 1px solid var(--ow-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-normal), transform var(--dur-normal) var(--ease-out);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(156, 74, 44, .08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--ow-terracotta);
}

.service-card h3 {
  margin-bottom: var(--sp-3);
}

.service-card p { color: var(--ow-ink); }


/* ============================================================
   13. APPROACH & VALUES
   ============================================================ */
.approach { background: var(--ow-sand); }

/* Centred wrapping row: cards stay equal-width and the last
   (incomplete) row is centred instead of hugging one edge. */
.values-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-6);
  margin-top: var(--sp-2);
}

.value-item {
  flex: 1 1 100%;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  background: var(--ow-linen);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--ow-border);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(156, 74, 44, .08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ow-terracotta);
}

.value-body h3 { margin-bottom: var(--sp-1); }
.value-body p  { font-size: var(--text-sm); color: var(--ow-muted); max-width: none; }


/* ============================================================
   14. HOW IT WORKS
   ============================================================ */
.process { background: var(--ow-cream); }

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  margin-top: var(--sp-2);
  counter-reset: none;
}

.process-step {
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--ow-terracotta);
  color: var(--ow-white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.step-body h3 { margin-bottom: var(--sp-2); }

.process-note {
  margin-top: var(--sp-10);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--ow-muted);
  font-style: italic;
  max-width: none;
}

.process-cta {
  text-align: center;
  margin-top: var(--sp-10);
}


/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--ow-sand); }

.testimonials-grid {
  display: grid;
  gap: var(--sp-6);
  max-width: 920px;
  margin-inline: auto;
}

.testimonial-card {
  background: var(--ow-white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  border: 1px solid var(--ow-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--ow-ink);
  max-width: none;
}

.testimonial-card footer {
  margin-top: auto;
  padding-top: var(--sp-5);
  font-size: var(--text-sm);
  color: var(--ow-muted);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ow-cocoa);
}

.testimonials-note {
  margin-top: var(--sp-8);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--ow-muted);
  font-style: italic;
  max-width: none;
}


/* ============================================================
   16. FAQ
   ============================================================ */
.faq { background: var(--ow-linen); }

.faq-accordion {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-item {
  border: 1px solid var(--ow-border);
  border-radius: var(--r-md);
  background: var(--ow-white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ow-cocoa);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast);
  line-height: 1.5;
}

.faq-question:hover { background: var(--ow-linen); }

.faq-question[aria-expanded="true"] { color: var(--ow-terracotta); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ow-clay);
  transition: transform var(--dur-normal) var(--ease-out);
}

.faq-chevron svg { width: 100%; height: 100%; }

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.faq-answer.open { max-height: 500px; }

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  color: var(--ow-ink);
  font-size: var(--text-sm);
  line-height: 1.75;
}

.faq-answer-inner p { max-width: none; }


/* ============================================================
   17. BOOKING
   ============================================================ */
.booking { background: var(--ow-cream); }

.calendly-widget {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-block: var(--sp-10);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ow-border);
}

.booking-fallback {
  text-align: center;
  padding-top: var(--sp-10);
  border-top: 1px solid var(--ow-border);
}

.fallback-label {
  font-size: var(--text-lead);
  color: var(--ow-cocoa);
  margin-bottom: var(--sp-8);
  max-width: none;
  text-align: center;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
}

.contact-option {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  border: 1px solid var(--ow-border);
  border-radius: var(--r-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ow-cocoa);
  background: var(--ow-linen);
  transition: border-color var(--dur-fast), color var(--dur-fast),
              background var(--dur-fast), transform var(--dur-fast);
  white-space: nowrap;
}

.contact-option:hover {
  border-color: var(--ow-terracotta);
  color: var(--ow-terracotta);
  background: var(--ow-white);
  transform: translateY(-2px);
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ============================================================
   18. FOOTER
   ============================================================ */
.site-footer {
  background: var(--ow-cocoa);
  color: var(--ow-linen);
  padding-block: var(--sp-16) var(--sp-10);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.footer-brand img {
  border-radius: var(--r-sm);
  opacity: .85;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--ow-linen);
  line-height: 1.6;
  max-width: 38ch;
}

.footer-location {
  font-size: var(--text-xs);
  color: var(--ow-clay);
  margin-top: var(--sp-2);
  max-width: none;
}

.footer-links-col h4 {
  color: var(--ow-linen);
  margin-bottom: var(--sp-4);
  font-size: var(--text-xs);
  letter-spacing: .1em;
  opacity: .6;
}

.footer-links-col address,
.footer-links-col nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links-col a {
  font-size: var(--text-sm);
  color: var(--ow-clay);
  transition: color var(--dur-fast);
}

.footer-links-col a:hover { color: var(--ow-linen); }

.footer-bottom {
  padding-top: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-credentials {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ow-clay);
  max-width: none;
}

.footer-acknowledgement {
  font-size: var(--text-xs);
  color: rgba(251, 246, 238, .5);
  max-width: 72ch;
  line-height: 1.6;
}

.footer-safety {
  font-size: var(--text-xs);
  color: rgba(251, 246, 238, .45);
  max-width: 72ch;
  line-height: 1.6;
  border-left: 2px solid rgba(192, 122, 85, .4);
  padding-left: var(--sp-4);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(251, 246, 238, .3);
  max-width: none;
  margin-top: var(--sp-4);
}


/* ============================================================
   19. STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--ow-cream);
  border-top: 1px solid var(--ow-border);
  padding: var(--sp-3) var(--container-px);
  box-shadow: 0 -4px 16px rgba(90, 58, 46, .1);
}

.sticky-cta.visible { display: block; }
.sticky-cta-btn { width: 100%; justify-content: center; }


/* ============================================================
   20. MEDIA QUERIES
   ============================================================ */

/* ---- sm: 480px ---- */
@media (min-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .value-item    { flex: 0 1 calc(50% - var(--sp-6) / 2); }
}

/* ---- md: 768px ---- */
@media (min-width: 768px) {
  /* Nav becomes horizontal */
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    gap: var(--sp-1);
  }

  /* Hero: two-column */
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: calc(100svh - var(--nav-h));
  }
  .hero-content {
    padding-right: var(--sp-8);
  }
  .hero-image {
    max-height: none;
    height: 100%;
  }
  .hero-image img { object-position: center center; }

  /* About: two-column */
  .about-inner {
    grid-template-columns: 2fr 3fr;
    gap: var(--sp-16);
  }
  .about-image { max-width: none; margin-inline: 0; }

  /* Services: 3-col */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* Testimonials: 2-col */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  /* Process: 3-col */
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-step  { flex-direction: column; align-items: center; text-align: center; }

  /* Footer */
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
  .footer-brand { flex-direction: column; gap: var(--sp-4); }
  .footer-brand img { width: 52px; height: 52px; }
  .footer-bottom { flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; }

  /* Sticky CTA: desktop hidden */
  .sticky-cta { display: none !important; }
}

/* ---- md only: 768–1023px ---- */
/* Nav links + lang toggle + CTA don't all fit on tablet widths
   (worst case in PT) and the CTA overflowed the viewport. */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-cta { display: none; }
  .nav { gap: var(--sp-3); }
  .nav-link { padding-inline: var(--sp-1); }
}

/* Six PT links + CTA still overflow just above 1024px */
@media (min-width: 1024px) and (max-width: 1119px) {
  .nav-link { padding-inline: var(--sp-2); }
}

/* ---- lg: 1024px ---- */
@media (min-width: 1024px) {
  .hero-content { padding-inline: var(--container-px); }

  /* Values: 3 per row, last row (2 cards) centred */
  .value-item { flex: 0 1 calc((100% - 2 * var(--sp-6)) / 3); }

  /* Approach header: wide enough for the EN + PT title and
     intro to sit on a single line on desktop */
  .approach .section-header { max-width: 1020px; }
  .approach .section-intro  { max-width: none; }
}

/* ---- Mobile menu (< 768px) ---- */
@media (max-width: 767px) {
  .nav { flex-wrap: wrap; height: auto; padding-block: var(--sp-3); }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .lang-toggle { order: -1; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ow-cream);
    border-bottom: 1px solid var(--ow-border);
    padding: var(--sp-4) var(--container-px) var(--sp-6);
    box-shadow: var(--shadow-md);
    gap: var(--sp-1);
  }

  .nav-links.open { display: flex; }

  .nav-link {
    padding: var(--sp-3) var(--sp-4);
    font-size: 1rem;
    width: 100%;
    border-radius: var(--r-md);
  }

  .nav-actions {
    margin-left: auto;
    gap: var(--sp-2);
  }

  .hero { min-height: auto; }
  .hero-image { max-height: 60vw; }
}

/* ---- Sticky CTA: mobile only ---- */
@media (max-width: 767px) {
  .sticky-cta.visible { display: block; }
}
