:root {
  --navy: #07335a;
  --navy-900: #052947;
  --green: #657b3d;
  --green-700: #516631;
  --green-soft: #edf2e7;
  --cream: #fbfaf6;
  --paper: #ffffff;
  --ink: #13243a;
  --muted: #5c6876;
  --line: #e8ecef;
  --shadow: 0 16px 34px rgba(7, 51, 90, 0.08);
  --card-shadow: 0 12px 26px rgba(7, 51, 90, 0.06);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

address {
  font-style: normal;
}

address span {
  display: block;
}

.address-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.address-link:hover {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 0.22em;
}

:focus-visible {
  outline: 3px solid #b7c978;
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  max-width: 840px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(232, 236, 239, 0.9);
  box-shadow: 0 10px 26px rgba(7, 51, 90, 0.06);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 240px;
}

.brand img {
  width: 240px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.3vw, 1rem);
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.primary-nav a {
  position: relative;
  text-decoration: none;
  padding-block: 0.38rem;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}

.mobile-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 0.55rem;
}

.mobile-nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.hero {
  padding: 1.1rem 0 0.45rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 20%, rgba(101, 123, 61, 0.12), transparent 34%),
    linear-gradient(90deg, #fff 0%, #fff 48%, #f3f0e8 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(2.1rem, 3.5vw, 3.35rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #cbd9a0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.75rem, 4.5vw, 4.1rem);
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 1.05rem 0 1.45rem;
  color: var(--ink);
  font-size: 1rem;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  height: clamp(316px, 29vw, 376px);
  margin: 1rem 1rem 1rem 0;
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(7, 51, 90, 0.08);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(7, 51, 90, 0.16);
}

.button-primary {
  background: var(--green);
  color: #fff;
}

.button-primary:hover {
  background: var(--green-700);
}

.button-accent {
  background: #93a85b;
  color: #fff;
}

.button-outline {
  background: var(--paper);
  border-color: var(--navy);
  color: var(--navy);
}

.section {
  padding: 2.15rem 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 1.45rem;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -1.45rem;
  position: relative;
  z-index: 2;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: clamp(1.55rem, 2.2vw, 1.9rem);
}

.journey-card {
  min-height: 176px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.journey-card p,
.card p,
.intro-panel p {
  color: var(--muted);
}

.card p {
  margin: 0.45rem 0;
}

.journey-card h3,
.adviser-card h3,
.trust-strip h3 {
  font-size: 1.08rem;
  line-height: 1.18;
}

.journey-card p,
.adviser-card p {
  font-size: 0.92rem;
  line-height: 1.5;
}

.round-icon,
.initials,
.trust-icon {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
}

.round-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 0.85rem;
}

.journey-card:nth-child(even) .round-icon,
.adviser-card:nth-child(odd) .initials {
  background: var(--green);
}

.icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  display: inline-flex;
  gap: 0.4rem;
  margin-top: auto;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--green);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(7, 51, 90, 0.04);
}

.service-pill {
  min-height: 104px;
  display: grid;
  place-items: center;
  gap: 0.5rem;
  padding: 0.85rem 0.7rem;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.service-pill:last-child {
  border-right: 0;
}

.service-pill .icon {
  color: var(--green);
  width: 30px;
  height: 30px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  background: #f1f3ee;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.trust-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
}

.trust-strip p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.trust-strip h3 {
  align-self: center;
  font-size: 1.12rem;
}

.trust-icon {
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--green);
  padding: 0.65rem;
}

.adviser-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.adviser-grid.large {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
}

.adviser-grid.large .adviser-card {
  flex: 0 1 calc((100% - 3 * 1.1rem) / 4);
  min-width: 0;
}

.adviser-card {
  display: flex;
  flex-direction: column;
  min-height: 242px;
  gap: 0.8rem;
  padding: clamp(1.75rem, 2.4vw, 2.15rem);
}

.adviser-card h3 {
  font-size: 1.24rem;
  line-height: 1.2;
  color: var(--navy);
}

.adviser-card p:not(.role) {
  line-height: 1.62;
}

.initials {
  width: 54px;
  height: 54px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.adviser-card .initials-purple,
.large-initials.initials-purple {
  background: #7c5aa6 !important;
}

.large-initials {
  width: 92px;
  height: 92px;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.role {
  margin: 0.3rem 0 0.45rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0.4rem 0 2rem;
  padding: clamp(1.3rem, 2vw, 1.8rem) clamp(1.55rem, 2.6vw, 2.15rem);
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  margin: 0.45rem 0 0;
  color: #d9e5ef;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.phone-link.button-accent:hover {
  background: var(--green);
}

.page-hero {
  padding: clamp(2.9rem, 4.4vw, 4rem) 0 clamp(1.35rem, 3vw, 2.35rem);
  background:
    radial-gradient(circle at 80% 30%, rgba(101, 123, 61, 0.14), transparent 34%),
    linear-gradient(135deg, #fff, #f5f2eb);
  border-bottom: 1px solid var(--line);
}

body[data-page="advisers"] .page-hero {
  padding-bottom: clamp(0.45rem, 1.6vw, 1.15rem);
}

body[data-page="financialPlanning"] .page-hero {
  padding-bottom: clamp(0.65rem, 1.8vw, 1.35rem);
}

.page-hero h1 {
  max-width: 19ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.45rem, 4vw, 3.75rem);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.intro-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 1.5rem;
  padding: 1.3rem 1.55rem;
  background: var(--green-soft);
  border: 1px solid #dce6cc;
  border-radius: var(--radius-sm);
}

.intro-panel .button {
  min-height: 40px;
  padding: 0.58rem 1.15rem;
  font-size: 0.92rem;
  white-space: nowrap;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-detail {
  scroll-margin-top: 110px;
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 2vw, 1.7rem) clamp(1.5rem, 2.2vw, 1.9rem);
}

.service-detail::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), rgba(101, 123, 61, 0.18));
}

.service-detail-head {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.service-detail-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--green);
}

.service-detail-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
}

.service-detail h2 {
  margin-bottom: 0;
  font-size: 1.28rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.service-detail ul,
.check-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 65fr) minmax(300px, 35fr);
  gap: 1.2rem;
  padding: 2.4rem 0;
}

.profile-main p {
  font-size: 1.04rem;
  line-height: 1.75;
}

.profile-aside {
  align-self: start;
  position: sticky;
  top: 104px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.resource-list {
  display: grid;
  gap: 0.8rem;
}

.resource-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}

.resource-row:hover {
  border-color: var(--green);
  box-shadow: 0 10px 20px rgba(7, 51, 90, 0.06);
}

.resource-row small {
  color: var(--green);
  font-weight: 850;
}

.category-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.7rem;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-card h2 {
  font-size: 1.45rem;
}

.coming-soon-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.coming-soon-icon {
  margin-inline: auto;
}

.coming-soon-card .button {
  margin-top: 0.8rem;
}

.legal-copy {
  max-width: 960px;
  margin-inline: auto;
}

.policy-meta {
  margin-bottom: 1.5rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}

.policy-meta h2,
.privacy-contact h2 {
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.document-meta dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.2rem;
  margin: 1rem 0 0;
}

.document-meta div {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.document-meta dt {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.document-meta dd {
  margin: 0.2rem 0 0;
  color: var(--ink);
}

.legal-section {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.legal-section p,
.legal-list {
  font-size: 1rem;
  line-height: 1.75;
}

.legal-list {
  margin: 0.75rem 0 0.9rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.privacy-contact {
  margin-top: 1.35rem;
}

.privacy-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin-top: 1rem;
}

.resource-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 1rem auto 0;
}

.compact-card {
  padding: 1.25rem;
}

.compact-card h3 {
  font-size: 1.12rem;
}

.contact-layout {
  display: grid;
  gap: 1.25rem;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-office-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.office-card,
.contact-card {
  min-width: 0;
}

.office-card {
  display: flex;
  flex-direction: column;
}

.office-card-body {
  flex: 1;
}

.office-card h3 {
  margin-bottom: 0.15rem;
  font-size: 1.18rem;
}

.office-card p {
  margin: 0.32rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.office-card .muted {
  margin-bottom: 0;
}

.office-field {
  min-width: 0;
}

.office-card address {
  margin: 0.32rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.office-card a,
.contact-card a,
.profile-aside a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.head-office-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(180px, 1fr) minmax(160px, 0.9fr) minmax(320px, 1.45fr);
  align-items: center;
  gap: 1rem 1.6rem;
  border-left: 4px solid var(--green);
  background:
    linear-gradient(135deg, rgba(101, 123, 61, 0.06), rgba(101, 123, 61, 0.015)),
    var(--paper);
}

.head-office-card h2 {
  font-size: clamp(1.55rem, 2vw, 2.2rem);
}

.head-office-card address,
.head-office-card p {
  margin: 0;
}

.head-office-field .field-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--green-700);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.head-office-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review-box {
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  background: #fff8e5;
  border: 1px solid #f1d68d;
  border-radius: var(--radius-sm);
}

.review-box h2 {
  font-size: 1.25rem;
}

.site-footer {
  padding: 1.8rem 0 0.65rem;
  background: var(--navy);
  color: #fff;
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.15fr;
  gap: 1.7rem;
}

.footer-brand img {
  width: 188px;
  height: auto;
}

.site-footer h2 {
  color: #fff;
  margin-bottom: 0.65rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.94rem;
}

.site-footer p,
.footer-list {
  margin: 0.3rem 0;
  color: #dce7ef;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.36rem 0;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #dce7ef;
  font-size: 0.84rem;
  text-align: center;
}

@media (max-width: 1080px) {
  .header-inner {
    justify-content: space-between;
    gap: 1rem;
  }

  .primary-nav {
    gap: 0.8rem;
    font-size: 0.76rem;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    padding: 0.85rem 1rem;
  }

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

  .hero-image-card {
    height: clamp(300px, 42vw, 380px);
    margin: 0 1rem 1rem;
  }

  .journey-grid,
  .adviser-grid,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .adviser-grid.large .adviser-card {
    flex-basis: calc((100% - 1.1rem) / 2);
  }

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

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

  .profile-aside {
    position: static;
  }

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

  .contact-office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .head-office-card {
    grid-template-columns: 1fr 1fr;
  }

  .head-office-card h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .contact-office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 64px;
  }

  .brand,
  .brand img {
    width: 168px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .primary-nav {
    left: 14px;
    right: 14px;
  }

  h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.55rem);
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-grid {
    min-height: 0;
    border-radius: 22px;
  }

  .hero-copy {
    padding: 1.5rem;
  }

  .hero-image-card {
    height: 212px;
    margin: 0 1rem 1rem;
  }

  .journey-grid {
    margin-top: 1rem;
  }

  .journey-grid,
  .adviser-grid,
  .adviser-grid.large,
  .service-detail-grid,
  .card-grid,
  .office-grid,
  .contact-office-grid,
  .trust-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .adviser-grid.large .adviser-card {
    flex-basis: 100%;
  }

  .page-hero {
    padding: 2.8rem 0 1.35rem;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.45rem);
  }

  .head-office-card {
    grid-template-columns: 1fr;
  }

  .head-office-card h2 {
    grid-column: auto;
  }

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

  .service-pill {
    min-height: 110px;
  }

  .trust-strip > div,
  .adviser-card {
    grid-template-columns: 1fr;
  }

  .trust-strip p {
    grid-column: auto;
  }

  .intro-panel,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band {
    text-align: left;
  }

  .cta-actions,
  .phone-link {
    width: 100%;
  }

  .cta-actions .button {
    width: 100%;
  }

  .head-office-details {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-pill {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-pill:last-child {
    border-bottom: 0;
  }
}
