/* ==========================================================================
   Berkeley Elevate — Design Tokens
   ========================================================================== */
:root {
  /* Brand */
  --navy: #183963;
  --navy-deep: #102846;
  --navy-soft: #3f5f88;
  --teal: #107274;
  --teal-soft: #e5f2f2;
  --pink: #f652a0;
  --pink-deep: #d63d86;
  --pink-soft: #fde5f0;
  --pink-less-soft: #f288bb;

  --navy-tint: #edf2f8;

  /* Neutrals */
  --white: #ffffff;
  --cream: #faf9f6;
  --ink: #232733;
  --grey: #6b7280;
  --grey-light: #e8e9ec;
  --border: #e6e4de;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1340px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); color: var(--navy); }
p { margin: 0; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 16px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 18px rgba(24, 57, 99, 0.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.logo-icon {
  height: 67px;
  width: auto;
}

.logo-text {
  height: 41px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav a {
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--navy);
  transition: width 0.25s ease;
}

.site-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  padding: 6px 12px !important;
  transition: color 0.2s ease;
}

.nav-cta.active {
  background: var(--teal) !important;
  opacity: 0.75;
}

.nav-cta:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 44px 32px 100px;
  overflow: hidden;
}

.hero-about {
  padding: 44px 32px 0px;
}

 
.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: end;
}

.hero-inner-abt {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
 
.hero-content {
  text-align: left;
}
 
.hero-tagline {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero-about .hero-tagline {
  font-size: clamp(1.8rem, 2.4vw, 2.9rem);
}
 
.hero-copy {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 560px;
  margin: 0 0 36px;
}

.hero-about .hero-copy {
  font-size: 1rem;
  max-width: none;
}
 
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}
 
.hero-media {
  position: relative;
}
 
.hero:not(.hero-about) .hero-media::before {
  content: '';
  position: absolute;
  inset: -18px -18px auto auto;
  width: 72%;
  height: 72%;
  background: var(--teal-soft);
  border-radius: var(--radius-lg);
  z-index: 0;
}
 
.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px rgba(24, 57, 99, 0.2);
}

/* About page hero photo: transparent cutout, no card — soft colour shapes behind it instead */
.hero-about .hero-media::before {
  content: '';
  position: absolute;
  top: 0%;
  width: 90%;
  height: 165%;
  background: #d2e2e2;
  border-radius: 40%;
  z-index: 0;
    transform: translate(14%, 0%);
    width: 80%;
}

/*.hero-about .hero-media::after {
  content: '';
  position: absolute;
  bottom: -6%;
  left: -12%;
  width: 45%;
  height: 45%;
  background: var(--pink-less-soft);
  border-radius: 50%;
  z-index: 0;
}*/

.hero-about .hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  max-height:400px;
  padding-top: 6%;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn .btn-arrow {
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(246, 82, 160, 0.28);
}

.btn-pink:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(246, 82, 160, 0.36);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline2 {
  background: transparent;
  color: var(--pink);
  border: 1.5px solid var(--pink);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline2:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   Services
   ========================================================================== */
.services {
  padding: 20px 0 96px;
  text-align: center;
  background: var(--cream)
}

.services .section-title { margin-bottom: 48px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card.teal {
  border-bottom: 3px solid rgb(50 172 184);
}

.service-card.pink {
  border-bottom: 3px solid var(--pink);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(24, 57, 99, 0.1);
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--teal-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-icon svg { width: 28px; height: 28px; }

.tick-circle {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: -18px;
}
 
.tick-circle svg {
  width: 100%;
  height: 100%;
}

.service-card.pink .service-icon {
 background: rgb(249 226 236)
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--grey);
}

/* ==========================================================================
   About / Profile
   ========================================================================== */
.about-preview {
  padding: 96px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}

.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 45%;
  border: 6px solid var(--white);
  box-shadow: 0 20px 44px rgba(24, 57, 99, 0.16);
}

.about-content p {
  color: var(--grey);
  font-size: 1.03rem;
  margin-bottom: 20px;
}

.credentials li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  padding-left: 10px;
  max-width: 200px;
  padding-bottom: 30px;
}

.credentials li:first-child { padding-left: 0; }
.credentials li:last-child { border-right: none; }

.credentials {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 0;
}

.tick {
  color: var(--pink);
  font-weight: 700;
}

.about-content .section-title {
  font-size: clamp(1.4rem, 3vw, 1.7rem);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  padding: 88px 0 96px;
background: var(--cream);
}

.testimonials-about {
background: var(--cream);
padding: 44px;
}

.testimonials .section-inner {
  text-align: center;
  margin-bottom: 44px;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0px 32px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  scrollbar-width: thin;
  scrollbar-color: var(--teal-soft) transparent;
  justify-content: center;
}

.testimonial-track::-webkit-scrollbar { height: 6px; }
.testimonial-track::-webkit-scrollbar-thumb {
  background: var(--teal-soft);
  border-radius: 4px;
}

.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(320px, 36vw, 700px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 0;
}

.quote-icon {
  width: 32px;
  height: 24px;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 20px;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
}

/* ==========================================================================
   CTA Band
   ========================================================================== */
.cta-band {
  background: var(--navy);
  padding: 72px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 52px 32px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav a {
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--white); }

.footer-contact {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-email:hover { color: var(--white); }

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}

.footer-bottom p { margin: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */

.site-nav a.active:not(.nav-cta) {
  font-weight: bold;
}
.site-nav a.active:not(.nav-ctas)::after {
  width: 100%;
  background: var(--pink);
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .about-content p { margin-left: auto; margin-right: auto; }

  .credentials {
    justify-content: center;
  }

  .hero-inner,
  .hero-inner-abt {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 40px;
  }

  .hero-media { max-width: 420px; margin: 0 auto; width: 100%; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 32px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(24, 57, 99, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a { width: 100%; padding: 12px 0; }
  .nav-cta { width: fit-content; }

  .logo-icon { height: 44px; }
  .logo-text { height: 27px; }

  .hero { padding: 64px 24px 72px; }

  .services-grid { grid-template-columns: 1fr; }

  .credentials {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 10px;
  }

  .credentials li {
    border-right: none;
    padding: 0;
    max-width: none;
  }

  .testimonial-track {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
    align-items: center;
    padding: 0 0 8px;
  }

  .testimonial-card {
    flex: none;
    width: 100%;
    max-width: 420px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Page Intro (small header, used on inner pages)
   ========================================================================== */
.page-intro {
  padding: 64px 0 48px;
  text-align: center;
}

.page-intro-contact {
  padding: 32px 0 22px;
  text-align: center;
}
 
.page-intro-inner {
  max-width: 620px;
}
 
.page-intro-title {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 14px;
}
 
.page-intro-copy {
  color: var(--grey);
  font-size: 1.02rem;
}
 
/* ==========================================================================
   Services — main tile grid
   ========================================================================== */
.services-main {
  padding: 24px 0 100px;
}
 
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
 
.service-tile {
  border-radius: var(--radius-lg);
  padding: 24px 40px 44px 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.service-tile:hover {
  transform: translateY(-5px);
}
 
.service-tile h3 {
  font-size: 1.4rem;
  margin: 26px 0 14px;
}
 
.tile-desc {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 46ch;
  min-height: 3.3em;
}
 
.tile-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.tile-icon svg { width: 32px; height: 32px; }
 
.tile-checklist {
  display: grid;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
 
.tile-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 500;
}
 
.tile-checklist .tick {
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
}

/* Tile colour variants */
.tile-navy {
  background: var(--navy-tint);
  color: var(--ink);
}
.tile-navy h2 { color: var(--navy); }
.tile-navy .tile-desc { color: var(--grey); }
.tile-navy .tile-icon { background: var(--navy); color: var(--white); }
.tile-navy .tile-checklist { border-top-color: var(--border); }
.tile-navy:hover { box-shadow: 0 24px 48px rgba(24, 57, 99, 0.14); }

.tile-teal {
  background: var(--teal-soft);
  color: var(--ink);
}
.tile-teal .tile-desc { color: var(--grey); }
.tile-teal .tile-icon { background: var(--teal); color: var(--white); }
.tile-teal:hover { box-shadow: 0 24px 48px rgba(16, 114, 116, 0.14); }

.tile-teal-alt {
  background: var(--cream);
  color: var(--ink);
}
.tile-teal-alt .tile-desc { color: var(--grey); }
.tile-teal-alt .tile-icon { background: var(--navy-soft); color: var(--white); }
.tile-teal-alt:hover { box-shadow: 0 24px 48px rgba(24, 57, 99, 0.12); }

.tile-navy-alt {
  background: #f1f7f7;
  color: var(--ink);
}
.tile-navy-alt h2 { color: var(--teal); }
.tile-navy-alt .tile-desc { color: var(--grey); }
.tile-navy-alt .tile-icon { background: var(--teal); color: var(--white); }
.tile-navy-alt .tile-checklist { border-top-color: var(--border); }
.tile-navy-alt:hover { box-shadow: 0 24px 48px rgba(16, 114, 116, 0.14); }

.tile-header {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 110px;
}

.tile-header h3 {
  min-width: 0;
}

.service-tile h2 {
  margin: 0;
}

.service-tile h2 {
  font-feature-settings: "swsh" 0, "dlig" 0;
  font-variant-alternates: stylistic(ss01);
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-main {
  padding: 24px 0 100px;
}
 
.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}
 
.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
 
.contact-form h2 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 26px;
}
 
.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
 
.form-row {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
 
.form-row-split > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.contact-form label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
 
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
 
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
 
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
 
.contact-form .btn {
  margin-top: 6px;
  border: none;
  cursor: pointer;
}
 
.contact-info {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
}
 
.contact-info h2 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 14px;
}
 
.contact-info > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.96rem;
  margin-bottom: 32px;
}
 
.contact-info-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, color 0.2s ease;
}
 
.contact-info-link:last-child { padding-bottom: 0; }
 
.contact-info-link:hover {
  color: var(--pink);
  transform: translateX(4px);
}
 
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.contact-info-link span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 0.96rem;
}
 
.contact-info-link strong {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}
 
/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 24px 0 100px;
}
 
.faq .section-title { margin-bottom: 32px; text-align: center; }
 
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 26px;
  background: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease;
}
 
.faq-item[open] {
  border-color: var(--teal);
  background: var(--teal-soft);
}
 
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
}
 
.faq-item summary::-webkit-details-marker { display: none; }
 
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
 
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--pink);
  border-radius: 2px;
  transition: transform 0.25s ease;
}
 
.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
 
.faq-icon::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  transform: translateX(-50%);
}
 
.faq-item[open] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg) scaleX(0);
}
 
.faq-item p {
  color: var(--grey);
  font-size: 0.96rem;
  line-height: 1.7;
  padding-bottom: 12px;
}

/* ==========================================================================
   About — Experience section
   ========================================================================== */
.experience-section {
  background: var(--teal-soft);
  padding: 88px 0;
}
 
.experience-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
 
.experience-text p {
  color: var(--grey);
  font-size: 1.02rem;
  max-width: 44ch;
}
 
.experience-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
 
.mini-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
 
.mini-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(16, 114, 116, 0.12);
}

.mini-icon img { border-radius: 25px }
 
.mini-icon svg { width: 28px; height: 28px; }
 
.mini-icon-item p {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
 
/* ==========================================================================
   About — Approach section
   ========================================================================== */
.approach-section {
  padding: 70px 0px 45px 0px;
}
 
.approach-intro {
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
}
 
.approach-intro p {
  color: var(--grey);
  font-size: 1.02rem;
  margin-top: 4px;
}
 
.approach-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
.approach-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.approach-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(24, 57, 99, 0.1);
}
 
.approach-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
 
.approach-icon svg { width: 26px; height: 26px; }
 
.approach-tile:nth-child(2) .approach-icon { background: var(--teal); }
.approach-tile:nth-child(3) .approach-icon { background: var(--pink); }
 
.approach-tile h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0;
}
 
.tile-divider {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  margin: 16px 0 18px;
}
 
.approach-tile p {
  font-size: 1.05rem;
  color: var(--grey);
}

.credentials-stacked li {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
}
 
.credentials-stacked .tick-circle {
  width: 32px;
  height: 32px;
}


.service-tile {
  display: flex;
  flex-direction: column;
}

.tile-checklist {
  margin-top: auto;
}

/* ==========================================================================
   Method page — "Does this feel familiar?" section
   ========================================================================== */
.familiar-section {
  padding: 24px 0;
  background: var(--cream);
}

.familiar-section .section-inner {
  text-align: center;
}

.familiar-heading {
  display: inline-block;
  margin-bottom: 44px;
}

.familiar-heading .section-title {
  margin-bottom: 0;
}

.familiar-underline {
  width: 64px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  margin: 16px auto 0;
}

.familiar-list {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.familiar-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  /*border-bottom: 1px solid var(--border);*/
}

.familiar-list li:last-child {
  border-bottom: none;
}

.familiar-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.familiar-icon svg {
  width: 100%;
  height: 100%;
}

.familiar-list p {
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.6;
}

/* ==========================================================================
   Method page — ELEVATE acronym section
   ========================================================================== */
.elevate-method-section {
  padding: 96px 0;
}

.elevate-method-section .section-inner > .eyebrow,
.elevate-method-section .section-inner > .section-title {
  display: block;
  text-align: center;
}

.elevate-method-section .section-title {
  margin: 0 auto 56px;
  max-width: 640px;
}

.elevate-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.elevate-step {
  padding: 0 18px;
  text-align: center;
  border-left: 1px solid var(--border);
}

.elevate-step:first-child {
  border-left: none;
}

.elevate-letter-wrap {
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.elevate-letter {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.elevate-letter-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 34px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
}

.elevate-word {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.elevate-desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.55;
}

/* ==========================================================================
   Method page — Simplicity / benefits section
   ========================================================================== */
.simplicity-section {
  padding: 30px 0;
  background: var(--cream);
}

.simplicity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.simplicity-text p {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}

.hl-text {
  color: #2594a1
}

.elevatebtncontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.simplicity-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--navy);
}

.simplicity-list li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.simplicity-icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.simplicity-icon svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Mobile overrides — MUST STAY LAST IN FILE.
   The base rules for these selectors are defined further up (in the
   services/contact/about-experience/about-approach sections), so these
   rules need to appear after them in source order to actually take effect
   at matching widths (equal-specificity ties resolve to source order).
   ========================================================================== */
@media (max-width: 980px) {
  .tiles-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .experience-text p {
    margin: 0 auto;
  }

  .experience-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-tiles {
    grid-template-columns: 1fr;
  }

  .hero-about {
    padding-bottom: 0;
  }

  .hero-about .hero-media::before {
    display: none;
  }

  .hero-about .hero-media img {
    padding-top: 0;
    max-height: none;
    margin-bottom: 0;
  }
}

@media (max-width: 720px) {
  .credentials-stacked li {
    padding-bottom: 24px;
  }

  .credentials-stacked .tick-circle {
    margin-top: 0;
  }

  .form-row-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-tile {
    padding: 22px 24px 32px 24px;
  }

  .contact-form,
  .contact-info {
    padding: 28px;
  }

  .experience-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .elevate-grid {
    grid-template-columns: 1fr;
  }

  .elevate-step {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 36px 12px 0;
  }

  .elevate-step:first-child {
    border-top: none;
    padding-top: 0;
  }

  .simplicity-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .simplicity-list li {
    text-align: left;
  }
}