/* ==========================================================================
   sections.css — section-by-section styles
   01. Site nav
   02. Hero
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Site nav
   -------------------------------------------------------------------------- */

.nav {
  background: var(--teal-900);
  position: relative;
  z-index: 10;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px var(--gutter-sm);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  object-fit: contain;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  color: var(--white);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   02. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--teal-900);
  min-height: 794px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__scrim {
  position: relative;
  width: 100%;
  padding: 80px var(--gutter-sm) 80px 264px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.38) 44.4%,
    rgba(0, 0, 0, 0) 93.3%
  );
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 880px;
}

.hero__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
  max-width: 880px;
  text-wrap: balance;
}

.hero__lede {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--mist-200);
  max-width: 741px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1280px) {
  .hero__scrim {
    padding-left: var(--gutter-sm);
  }
  .hero__title {
    font-size: 46px;
  }
}

@media (max-width: 900px) {
  .nav__inner {
    padding: 18px 24px;
  }
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: block;
  }
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    order: 3;
    width: 100%;
    padding-top: 20px;
  }
  .nav--open .nav__inner {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 560px;
  }
  .hero__scrim {
    padding: 48px 24px;
  }
  .hero__title {
    font-size: 34px;
  }
  .hero__lede {
    font-size: 16px;
  }
  .hero__chips {
    gap: 10px;
  }
  .pill--glass {
    font-size: 14px;
    padding: 8px 14px;
  }
}

/* --------------------------------------------------------------------------
   03. Inner page banner (About / Services / Gallery / Contact / Blog)
   -------------------------------------------------------------------------- */

.pagehead {
  position: relative;
  min-height: 455px;
  display: flex;
  align-items: center;
  background: var(--teal-900);
  overflow: hidden;
}

.pagehead__media {
  position: absolute;
  inset: 0;
}

.pagehead__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagehead__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 43, 46, 0.88) 0%, rgba(0, 43, 46, 0.55) 100%);
}

.pagehead__inner {
  position: relative;
  padding: 96px 128px;
  max-width: 1000px;
}

.pagehead__crumb {
  font-size: 13px;
  color: var(--mist-300);
  margin-bottom: 20px;
}

.pagehead__title {
  margin: 18px 0;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-wrap: balance;
}

.pagehead__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mist-200);
  max-width: 820px;
}

/* --------------------------------------------------------------------------
   04. About + stats
   -------------------------------------------------------------------------- */

.about {
  background: var(--cream);
  padding: 90px var(--gutter);
}

.about__row {
  display: grid;
  grid-template-columns: 583px 1fr;
  gap: 70px;
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
}

.about__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 30px;
}

.about__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about .eyebrow {
  color: var(--ink-500);
  letter-spacing: 0.08em;
  font-size: 14px;
}

.about__statement {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-900);
  max-width: 1040px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--aqua-600);
}

.stat__label {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-500);
  max-width: 190px;
}

/* --------------------------------------------------------------------------
   05. Section heading (shared)
   -------------------------------------------------------------------------- */

.sechead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.sechead__title {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.16;
  color: var(--ink-900);
  max-width: 700px;
  margin-top: 10px;
  text-wrap: balance;
}

.sechead--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sechead--center .sechead__title {
  max-width: 900px;
}

/* --------------------------------------------------------------------------
   06. Services cards
   -------------------------------------------------------------------------- */

.services {
  background: var(--cream);
  padding: 90px var(--gutter);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--container);
  margin-inline: auto;
}

.services .sechead {
  max-width: var(--container);
  margin-inline: auto;
}

.scard {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border-radius: 18px;
}

.scard__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 8px;
  background: var(--ice-200);
  border-radius: 14px;
}

.scard__icon img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}

.scard__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink-900);
}

.scard__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-500);
  max-width: 470px;
}

.bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-900);
}

.bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua-600);
  flex-shrink: 0;
}

.pill--soft {
  background: var(--sand);
  color: var(--ink-900);
  font-size: 13px;
}

.pill--soft:hover {
  background: var(--teal-900);
  color: var(--white);
}

.scard .pill--soft {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   07. How it works
   -------------------------------------------------------------------------- */

.how {
  background: var(--white);
  padding: 90px var(--gutter);
}

.how__row {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1320px;
  margin-inline: auto;
}

.how__media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
}

.how__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how__title {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink-900);
  margin-bottom: 12px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--cream);
  border-radius: 16px;
}

.step__n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-900);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

.step__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.step__desc {
  font-size: 14px;
  color: var(--ink-500);
}

/* --------------------------------------------------------------------------
   08. Why choose us (tabs)
   -------------------------------------------------------------------------- */

.why {
  background: var(--ice);
  padding: 100px var(--gutter);
}

.why__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 40px;
}

.pill--tab {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink-700);
  font-size: 15px;
}

.pill--tab[aria-selected="true"] {
  background: var(--teal-900);
  border-color: var(--teal-900);
  color: var(--white);
}

.why__panel {
  display: grid;
  grid-template-columns: 1fr 760px;
  gap: 44px;
  align-items: center;
  padding: 36px;
  background: var(--white);
  border-radius: 24px;
  max-width: var(--container);
  margin-inline: auto;
}

.why__panel[hidden] {
  display: none;
}

.why__panel-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 14px;
}

.why__panel-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-500);
  max-width: 620px;
  margin-bottom: 28px;
}

.why__panel-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
}

/* --------------------------------------------------------------------------
   09. Care stories
   -------------------------------------------------------------------------- */

.stories {
  background: var(--white);
  padding: 90px var(--gutter);
}

.stories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin-inline: auto;
}

.stories .sechead {
  max-width: var(--container);
  margin-inline: auto;
}

.story {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
}

.story img {
  width: 100%;
  height: 473px;
  object-fit: cover;
}

.story__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 22px;
}

.story__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
}

/* --------------------------------------------------------------------------
   10. Testimonials
   -------------------------------------------------------------------------- */

.testimonials {
  background: var(--cream);
  padding: 90px var(--gutter);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin-inline: auto;
}

.quote {
  padding: 26px;
  background: var(--white);
  border-radius: 18px;
}

.quote__stars {
  color: var(--pink-600);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.quote__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 12px;
}

.quote__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-500);
  margin-bottom: 20px;
}

.quote__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
}

.quote__meta {
  font-size: 12px;
  color: var(--ink-500);
}

/* --------------------------------------------------------------------------
   11. Photo mosaic
   -------------------------------------------------------------------------- */

.mosaic {
  background: var(--white);
}

.mosaic__head {
  padding: 90px var(--gutter);
  text-align: center;
}

.mosaic__head p {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.4;
  color: var(--ink-900);
  max-width: 1000px;
  margin-inline: auto;
  text-wrap: balance;
}

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

.mosaic__strip img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   12. Team
   -------------------------------------------------------------------------- */

.team {
  background: var(--cream);
  padding: 90px var(--gutter);
}

.team .sechead,
.team__grid {
  max-width: var(--container);
  margin-inline: auto;
}

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

.member {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.member img {
  width: 100%;
  height: 457px;
  object-fit: cover;
}

.member__body {
  padding: 18px 22px 22px;
}

.member__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
}

.member__role {
  font-size: 14px;
  color: var(--ink-500);
}

/* --------------------------------------------------------------------------
   13. Promise
   -------------------------------------------------------------------------- */

.promise {
  background: var(--white);
  padding: 100px var(--gutter);
}

.promise__title {
  font-size: 38px;
  font-weight: 400;
  text-align: center;
  color: var(--ink-900);
  margin-bottom: 40px;
}

.promise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin-inline: auto;
}

.promise__card {
  padding: 32px 29px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.promise__card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink-900);
  margin-bottom: 16px;
}

.promise__card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-500);
}

/* --------------------------------------------------------------------------
   14. FAQ accordion
   -------------------------------------------------------------------------- */

.faq {
  background: var(--cream);
  padding: 100px var(--gutter);
}

.faq__title {
  font-size: 38px;
  font-weight: 400;
  text-align: center;
  color: var(--ink-900);
  margin-bottom: 40px;
}

.faq__list {
  max-width: 920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 16px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
}

.faq__q svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq__q[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq__a {
  padding: 0 16px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-500);
}

.faq__a[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   15. CTA banner
   -------------------------------------------------------------------------- */

.cta {
  background: var(--ice);
  padding: 60px var(--gutter);
}

.cta__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 64px 60px;
  background: var(--teal-900);
  border-radius: 24px;
  text-align: center;
  max-width: var(--container);
  margin-inline: auto;
}

.cta__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #bfd9d9;
}

.cta__title {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  max-width: 760px;
}

.cta__sub {
  font-size: 15px;
  color: var(--mist-200);
  max-width: 504px;
}

.cta__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.pill--white {
  background: var(--white);
  color: var(--teal-900);
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--teal-900);
  padding: 80px var(--gutter) 40px;
  color: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: 420px repeat(4, 1fr);
  gap: 40px;
  max-width: var(--container);
  margin-inline: auto;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer__lw {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__lw img {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
}

.footer__lw span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.footer__blurb {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mist-300);
  max-width: 380px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__col li + li {
  margin-top: 12px;
}

.footer__col a,
.footer__col li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--mist-400);
}

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

.footer__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 40px auto;
  max-width: var(--container);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--mist-500);
  max-width: var(--container);
  margin-inline: auto;
}

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

/* --------------------------------------------------------------------------
   17. Filter chips (Gallery / Blog)
   -------------------------------------------------------------------------- */

.filters {
  background: var(--white);
  padding: 48px var(--gutter-sm);
  border-bottom: 1px solid var(--line);
}

.filters__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill--filter {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink-700);
  padding: 10px 20px;
}

.pill--filter[aria-pressed="true"] {
  background: var(--teal-900);
  border-color: var(--teal-900);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   18. Overview split (service pages)
   -------------------------------------------------------------------------- */

.overview {
  background: var(--white);
  padding: 96px var(--gutter-sm);
}

.overview__row {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 96px;
}

.overview__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink-900);
  margin-top: 16px;
}

.overview__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
}

.overview__body p + p {
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   19. Contact
   -------------------------------------------------------------------------- */

.contactcards {
  background: var(--cream);
  padding: 80px var(--gutter-sm);
}

.contactcards__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contactcard {
  padding: 32px;
  background: var(--white);
  border-radius: 18px;
}

.contactcard__value {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 12px 0 8px;
}

.contactcard__note {
  font-size: 14px;
  color: var(--ink-500);
}

.enquiry {
  background: var(--white);
  padding: 64px var(--gutter-sm);
}

.enquiry__row {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 96px;
  align-items: start;
}

.enquiry__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink-900);
  margin: 16px 0 24px;
}

.enquiry__note {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-500);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  background: var(--cream);
  border-radius: 20px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa6a6;
}

.form button {
  align-self: flex-start;
  padding: 16px 28px;
  border: 0;
  border-radius: 10px;
  background: var(--pink-600);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.form button:hover {
  background: #a3186a;
}

.mapblock {
  background: var(--cream);
  padding: 100px var(--gutter);
}

.mapblock__row {
  display: grid;
  grid-template-columns: 425px 1fr;
  gap: 16px;
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
}

.mapblock h2 {
  font-size: 30px;
  font-weight: 400;
  color: var(--ink-900);
  margin-bottom: 16px;
}

.mapblock p {
  font-size: 16px;
  color: var(--ink-500);
  max-width: 260px;
}

.mapblock iframe {
  width: 100%;
  height: 275px;
  border: 0;
  border-radius: 12px;
}

/* --------------------------------------------------------------------------
   20. Blog
   -------------------------------------------------------------------------- */

.featured {
  background: var(--white);
  padding: 48px var(--gutter-sm);
}

.featured__row {
  display: grid;
  grid-template-columns: 820px 1fr;
  gap: 48px;
  align-items: center;
}

.featured__row img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
}

.featured__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink-900);
  margin: 16px 0;
}

.featured__excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-500);
  margin-bottom: 24px;
}

.byline {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 20px;
}

.postgrid {
  background: var(--cream);
  padding: 56px var(--gutter-sm);
}

.postgrid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.post {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
}

.post img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.post__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--pink-600);
}

.post__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.28;
  color: var(--ink-900);
}

.post__excerpt {
  font-size: 14px;
  color: var(--ink-500);
}

.post__meta {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: auto;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 40px var(--gutter);
  background: var(--cream);
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-700);
}

.pagination a[aria-current="page"] {
  background: var(--teal-900);
  border-color: var(--teal-900);
  color: var(--white);
}

/* Blog detail */

.cover {
  background: var(--white);
  padding: 56px var(--gutter-sm);
}

.cover__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cover__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.cover__author strong {
  display: block;
  font-size: 15px;
  color: var(--ink-900);
}

.cover__author span {
  font-size: 13px;
  color: var(--ink-500);
}

.cover > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
}

.article {
  background: var(--white);
  padding: 72px var(--gutter);
}

.article__body {
  max-width: 1280px;
  margin-inline: auto;
}

.article__body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-700);
}

.article__body h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 48px 0 16px;
}

.article__pull {
  margin: 48px 0;
  padding: 8px 32px;
  border-left: 3px solid var(--pink-600);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.45;
  color: var(--ink-900);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 48px 0;
}

.tags span {
  padding: 8px 16px;
  background: var(--cream);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--ink-700);
}

.authorbox {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: var(--cream);
  border-radius: 18px;
}

.authorbox img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.authorbox strong {
  display: block;
  font-size: 18px;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.authorbox p {
  font-size: 15px;
  color: var(--ink-500);
}

.related {
  background: var(--cream);
  padding: 64px var(--gutter-sm);
}

.related h2 {
  font-size: 34px;
  font-weight: 400;
  color: var(--ink-900);
  margin: 12px 0 32px;
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* --------------------------------------------------------------------------
   Responsive — all sections
   -------------------------------------------------------------------------- */

@media (max-width: 1400px) {
  :root {
    --gutter: 48px;
    --gutter-sm: 48px;
  }

  .about__row,
  .how__row,
  .why__panel,
  .overview__row,
  .enquiry__row,
  .featured__row,
  .mapblock__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pagehead__inner {
    padding: 80px 48px;
  }

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

@media (max-width: 1000px) {
  .services__grid,
  .testimonials__grid,
  .promise__grid,
  .postgrid__grid,
  .related__grid,
  .contactcards__row,
  .stories__grid {
    grid-template-columns: 1fr;
  }

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

  .mosaic__strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 700px) {
  :root {
    --gutter: 20px;
    --gutter-sm: 20px;
  }

  .pagehead__inner {
    padding: 56px 20px;
  }

  .pagehead__title {
    font-size: 30px;
  }

  .about__statement,
  .sechead__title,
  .cta__title,
  .promise__title,
  .faq__title,
  .featured__title,
  .mosaic__head p {
    font-size: 26px;
  }

  .team__grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

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

  .story img,
  .member img,
  .cover > img,
  .featured__row img {
    height: 260px;
  }

  .cta__box,
  .form {
    padding: 32px 20px;
  }

  .stats {
    gap: 32px;
  }
}

/* --------------------------------------------------------------------------
   21. Fixes / refinements
   -------------------------------------------------------------------------- */

/* Keep card content left-aligned even inside centred sections */
.quote,
.scard,
.promise__card,
.post__body,
.why__panel {
  text-align: left;
}

/* Stats should stay on one line at common desktop widths */
.stats {
  gap: 48px 64px;
}

@media (min-width: 1500px) {
  .stats {
    gap: 80px;
  }
}

/* Map placeholder background so the block reads as a map before the embed loads */
.mapblock iframe {
  background: #e8eae6;
}
