:root {
  --ink: #162a31;
  --heading: #0b3438;
  --heading-soft: #16554f;
  --muted: #536b71;
  --paper: #f8f4ed;
  --soft: #eef5f1;
  --blush: #fff3e8;
  --mint: #e8f3ee;
  --sky: #e9eff3;
  --line: rgba(22, 38, 46, 0.08);
  --teal: #0f6e68;
  --teal-dark: #0c524d;
  --gold: #b98c5b;
  --gold-soft: #f0d9c0;
  --peach: #e0a170;
  --white: #ffffff;
  --shadow-light: 0 1px 5px rgba(17, 36, 44, 0.08);
  --shadow-medium: 0 18px 44px rgba(17, 36, 44, 0.1);
  --shadow-large: 0 28px 64px rgba(17, 36, 44, 0.14);
  --shadow-xl: 0 38px 82px rgba(17, 36, 44, 0.18);
  --radius: 18px;
  --radius-lg: 22px;
  --gradient-primary: linear-gradient(135deg, #0f6e68 0%, #0b504b 100%);
  --gradient-accent: linear-gradient(135deg, #c39a5b 0%, #87643c 100%);
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(255, 255, 255, 0.28);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 237, 214, 0.28), transparent 26%),
    radial-gradient(circle at top right, rgba(225, 242, 234, 0.28), transparent 22%),
    linear-gradient(180deg, #f8f4ed 0%, #f7f5f0 44%, #ffffff 100%);
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-align: left;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
li,
h1,
h2,
h3,
.eyebrow,
.lead,
.card,
.image-card,
.testimonial-card,
.video-card,
.content-prose,
.section-head {
  text-align: left;
}

p,
li,
a,
h1,
h2,
h3,
.card,
.image-card,
.video-card,
.testimonial-card {
  overflow-wrap: break-word;
  word-break: normal;
}

p {
  margin-top: 0;
}

p,
li,
.lead,
.hero-note,
.content-prose p,
.content-prose li,
.card p,
.image-card p,
.testimonial-card p,
.video-copy p,
.quote-panel,
.blog-post p {
  text-align: left;
  text-align-last: auto;
  text-wrap: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
.eyebrow,
.tag,
.btn,
.brand,
.nav-links,
.service-no,
.contact-card-label,
.metric strong,
.metric span {
  text-align: left;
  text-align-last: auto;
}

.page-hero .lead,
.hero-copy .lead,
.section-head .lead {
  text-wrap: normal;
}

h1 + p,
h2 + p,
h3 + p,
.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3 {
  margin-top: 0;
}

h1 + .lead,
h2 + .lead,
h3 + p,
.lead + .lead,
.content-prose p + p,
.blog-post p + p {
  margin-top: 1rem;
}

.content-prose h2,
.content-prose h3 {
  margin-bottom: 1rem;
}

.wrap {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(135deg, rgba(13, 107, 104, 0.95) 0%, rgba(8, 72, 70, 0.95) 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(16, 34, 38, 0.06);
  box-shadow: 0 14px 44px rgba(17, 36, 44, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.15rem 0;
}

.home-page .site-header {
  background: var(--glass-bg);
  box-shadow: none;
}

.site-header.nav-scrolled {
  background: var(--glass-bg);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 1.25rem;
  padding: 0;
}

.brand {
  display: grid;
  gap: 0.25rem;
  color: var(--heading);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.brand:hover {
  color: var(--teal-dark);
}

.brand span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.2vw, 1.1rem);
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink);
  transition: all 0.2s ease;
  position: relative;
  padding: 0.35rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links .active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--teal-dark);
  font-weight: 600;
}

.nav-links .nav-cta {
  min-height: 48px;
  padding: 0 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f4b200;
  background-image: none;
  color: #010101;
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(10, 115, 111, 0.18);
  transition: all 0.3s ease;
  border: 1px solid #f4b200;
}

.nav-links .nav-cta:hover {
  color: #010101;
  background-color: #f4b200;
  background-image: none;
  border-color: #f4b200;
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.hamburger span::before {
  transform: translateY(-7px);
}

.hamburger span::after {
  transform: translateY(5px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.75rem;
  border-radius: var(--radius);
  background-color: #f4b200;
  background-image: none;
  color: #010101;
  font-weight: 700;
  border: 1px solid #f4b200;
  box-shadow: 0 16px 36px rgba(15, 34, 37, 0.16);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(15, 34, 37, 0.18);
}

.btn.alt {
  background: rgba(255, 255, 255, 0.96);
  color: var(--teal-dark);
  border: 1px solid rgba(15, 34, 37, 0.09);
}

.btn.alt:hover {
  background: var(--white);
  color: var(--teal-dark);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.76);
  color: var(--teal-dark);
  border: 1px solid rgba(10, 115, 111, 0.18);
  box-shadow: none;
}

.btn.ghost:hover {
  background: var(--white);
  color: var(--teal-dark);
  border-color: rgba(10, 115, 111, 0.3);
}

.hero {
  position: relative;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 230, 205, 0.34), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(205, 236, 241, 0.38), transparent 22%),
    linear-gradient(135deg, rgba(250, 249, 245, 0.98) 0%, rgba(247, 243, 237, 1) 100%);
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 12%, rgba(255, 235, 216, 0.24), transparent 20%),
              radial-gradient(circle at 88% 18%, rgba(184, 235, 241, 0.22), transparent 20%);
  pointer-events: none;
}

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  min-height: 740px;
  gap: 3.25rem;
  padding: 4.25rem 0 0;
  position: relative;
  z-index: 2;
}

.hero-copy {
  width: min(700px, 100%);
}

.hero-actions {
  gap: 16px;
  margin-top: 2.4rem;
}

.hero-copy {
  width: min(620px, 100%);
  position: relative;
  z-index: 2;
}

.hero-copy > * {
  margin-left: 0;
  margin-right: 0;
}

.hero-portrait {
  position: relative;
  align-self: center;
  border-radius: 32px;
  overflow: hidden;
  height: 100%;
  max-width: 500px;
  margin-left: auto;
  background: linear-gradient(135deg, rgba(255, 206, 184, 0.25) 0%, rgba(184, 237, 242, 0.25) 100%);
  box-shadow: 0 28px 80px rgba(15, 34, 37, 0.1);
  transition: transform 0.3s ease;
}

.hero-portrait:hover {
  transform: translateY(-5px);
}

.hero-portrait::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.2), transparent 30%);
  content: "";
  pointer-events: none;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(255, 255, 255, 0.65) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.3s ease;
}

.hero-portrait:hover img {
  transform: scale(1.02);
}

.eyebrow {
  display: inline-block;
  position: relative;
  margin: 0 0 0.95rem;
  padding-top: 0.55rem;
  color: var(--teal-dark);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}


.eyebrow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
  content: "";
  border-radius: 1px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
  word-spacing: normal;
  font-weight: 800;
}

h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: min(960px, 100%);
  color: var(--heading);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 0.75rem;
  text-wrap: normal;
}

h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  max-width: min(860px, 100%);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.65rem;
  text-wrap: normal;
}

h3 {
  font-size: 1.25rem;
  color: var(--teal-dark);
  line-height: 1.22;
}

.lead {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
}

.hero-note {
  font-size: 1rem;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-subtitle {
  color: var(--ink);
  font-size: 1rem;
  max-width: 720px;
  line-height: 1.8;
  margin: 0 0 1.25rem;
  opacity: 0.95;
}

.hero-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.grid-action {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.grid-action .btn {
  padding: 0 2.5rem;
  min-height: 52px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  gap: 22px;
  width: min(900px, calc(100% - 56px));
  margin: -2.1rem auto 0;
  position: relative;
  z-index: 3;
  background: transparent;
  border-radius: 20px;
  overflow: visible;
  padding: 0 16px;
}

.metric {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2rem 1.5rem 2.2rem;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 107, 104, 0.11);
}

.metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.metric:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 62px rgba(16, 34, 38, 0.08);
  border-color: rgba(13, 107, 104, 0.18);
  background: rgba(255, 255, 255, 0.368);
}

.metric strong {
  display: block;
  color: var(--teal-dark);
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0;
}

.metric span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  display: inline-block;
}

.metric strong,
.metric span {
  text-align: left;
}

.section {
  padding: 6rem 0;
}

.section.soft {
  background:
    linear-gradient(180deg, rgba(240, 232, 218, 0.86), rgba(238, 247, 241, 0.9)),
    var(--soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  justify-content: start;
  justify-items: start;
  text-align: left;
  margin-bottom: 2.25rem;
}


.section-head.has-action {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 0.75rem 1.5rem;
}

.section-head.has-action > .section-head-action {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: 0.25rem;
}

.section-head.has-action > .section-head-action .btn {
  white-space: nowrap;
}

.section-head.has-action > p {
  grid-column: 1 / -1;
  margin-top: 0.75rem;
}

.section-head h2 {
  max-width: min(760px, 100%);
  text-align: left;
  margin-bottom: 0;
}

.section-head h2,
.split h2,
.content-prose h2,
.contact-primary h2,
.map-card > h2 {
  position: relative;
}

.section-head h2::after,
.split h2::after,
.content-prose h2::after,
.contact-primary h2::after,
.map-card > h2::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
  background: linear-gradient(90deg, var(--gold), rgba(185, 130, 54, 0));
  content: "";
}

.section-head > .lead,
.section-head > p {
  justify-self: start;
  align-self: start;
  margin: 0;
  max-width: min(760px, 100%);
  text-align: left;
}

.grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  grid-auto-rows: 1fr;
}

.compact-card-grid,
.service-card-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.compact-card-grid .card {
  min-height: 220px;
  height: 100%;
}

.service-card-grid .card {
  min-height: 190px;
  height: 100%;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(178, 162, 130, 0.16);
  border-radius: 28px;
  padding: 1.85rem;
  box-shadow: 0 24px 72px rgba(17, 36, 44, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.35rem;
  min-height: 240px;
  height: 100%;
}

.card h3,
.card p {
  max-width: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(17, 36, 44, 0.14);
}

.image-card {
  overflow: hidden;
  border: 1px solid rgba(178, 162, 130, 0.16);
  border-radius: 28px;
  background: rgba(255, 254, 250, 0.95);
  box-shadow: 0 18px 56px rgba(17, 36, 44, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-rows: 240px 1fr;
  min-height: 420px;
  height: 100%;
}

.image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 88px rgba(17, 36, 44, 0.14);
}

.card h3,
.centre-card h3,
.testimonial-card h3,
.video-copy h3,
.image-card h3 {
  color: var(--teal-dark);
  font-weight: 850;
}

.card h3 + p,
.card p + p {
  margin-top: 0;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--peach), rgba(255, 255, 255, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 68px rgba(15, 34, 37, 0.12);
  border-color: rgba(183, 237, 240, 0.75);
}

.service-no {
  color: var(--peach);
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.faq-section {
  background: transparent;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 980px;
}

.faq-item {
  border: 1px solid rgba(178, 162, 130, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 46px rgba(17, 36, 44, 0.07);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 72px;
  padding: 1.25rem 1.5rem;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: "";
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.45rem;
  max-width: 850px;
  color: var(--muted);
  line-height: 1.68;
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-card-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  grid-auto-rows: 1fr;
}

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

.image-card {
  overflow: hidden;
  border: 1px solid rgba(183, 237, 240, 0.5);
  border-radius: 28px;
  background: rgba(255, 248, 244, 0.95);
  box-shadow: 0 16px 42px rgba(15, 34, 37, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-rows: 240px 1fr;
  min-height: 400px;
  height: 100%;
}

.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(15, 34, 37, 0.12);
  border-color: rgba(183, 237, 240, 0.75);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
}

.image-card:hover img {
  transform: scale(1.035);
}

.image-card div {
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
  height: 100%;
}

.image-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.image-card h3,
.video-copy h3 {
  line-height: 1.22;
}

.blog-card a {
  display: grid;
  grid-template-rows: 240px 1fr;
  height: 100%;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

[data-blog-list] {
  align-items: stretch;
}

[data-blog-list].image-card-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.blog-card {
  display: block;
  grid-column: span 2;
  min-height: 100%;
}

[data-blog-list] .blog-card:nth-child(4) {
  grid-column: 2 / span 2;
}

[data-blog-list] .blog-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.blog-card a {
  color: inherit;
  overflow: hidden;
}

.blog-card img {
  display: block;
}

.blog-card div {
  min-height: 0;
}

.blog-card h3 {
  min-height: 3.7em;
}

.blog-card p {
  min-height: 5.1em;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1040px);
  justify-content: center;
}

.wrap.blog-detail-layout {
  width: min(1180px, calc(100% - 56px));
}

main[data-blog-detail] .page-hero .wrap {
  width: min(1040px, calc(100% - 56px));
}

main[data-blog-detail] .page-hero h1,
main[data-blog-detail] .page-hero .lead {
  max-width: 100%;
}

.blog-post {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.blog-post img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-large);
  margin-bottom: 2rem;
}

.blog-post p {
  margin: 0 0 1.35rem;
}

.blog-post h2 {
  margin: 2rem 0 0.75rem;
  color: var(--heading);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.2;
}

.blog-post .btn {
  margin-top: 1rem;
}

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

.blog-comment-area {
  margin-top: 3.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(176, 120, 22, 0.14);
}

.blog-comment-area h2 {
  margin: 0 0 0.35rem;
  color: var(--heading);
  font-family: inherit;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  line-height: 1.2;
}

.blog-comment-area > p {
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 1rem;
}

.blog-comment-form {
  display: grid;
  gap: 1.45rem;
}

.blog-comment-form label {
  display: block;
}

.blog-comment-form textarea,
.blog-comment-form input[type="text"],
.blog-comment-form input[type="email"],
.blog-comment-form input[type="url"] {
  width: 100%;
  border: 1px solid rgba(60, 48, 31, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.blog-comment-form textarea {
  min-height: 260px;
  padding: 1rem;
  resize: vertical;
}

.blog-comment-form input[type="text"],
.blog-comment-form input[type="email"],
.blog-comment-form input[type="url"] {
  min-height: 54px;
  padding: 0 1rem;
}

.blog-comment-form textarea:focus,
.blog-comment-form input[type="text"]:focus,
.blog-comment-form input[type="email"]:focus,
.blog-comment-form input[type="url"]:focus {
  border-color: rgba(176, 120, 22, 0.42);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(218, 159, 46, 0.1);
}

.blog-comment-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-comment-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-comment-consent input {
  width: 16px;
  height: 16px;
  margin-top: 0.35rem;
  flex: 0 0 auto;
}

.comment-submit {
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--heading);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  padding: 0;
}

.comment-submit:hover {
  color: var(--gold);
}

.blog-comment-note {
  min-height: 1.5rem;
  margin: -0.5rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.25rem;
}

.testimonial-card {
  display: flex;
  min-height: 230px;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  padding: 1.55rem;
  box-shadow: 0 8px 30px rgba(15, 34, 37, 0.045);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
  border-color: rgba(188, 130, 54, 0.22);
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.testimonial-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.5rem;
}

.video-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(15, 34, 37, 0.045);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
  border-color: rgba(188, 130, 54, 0.22);
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b2024;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
  gap: 0.7rem;
  height: 100%;
}

.video-copy p {
  margin: 0;
  color: var(--muted);
}


.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  justify-content: flex-start;
}

.pill-row span,
.pill-row a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  align-items: center;
}

.split > div {
  min-width: 0;
}

.split > div:not(.photo-frame) {
  max-width: 100%;
  justify-self: start;
}

.split .lead,
.split .content-prose {
  max-width: 100%;
}

.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-large);
  background: linear-gradient(135deg, rgba(13, 107, 104, 0.08) 0%, rgba(188, 139, 69, 0.08) 100%);
  transition: transform 0.3s ease;
  aspect-ratio: 4 / 3;
  min-height: 0;
  max-width: 100%;
}

.photo-frame:hover {
  transform: translateY(-4px);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-frame:hover img {
  transform: scale(1.025);
}

#about .photo-frame {
  align-self: end;
  min-height: 520px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(13, 107, 104, 0.08) 0%, rgba(188, 139, 69, 0.08) 100%);
}

#about .photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 70%, var(--paper) 100%);
}

#about .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.person-photo img {
  object-fit: contain;
  object-position: center center;
}

#about .home-about-photo img {
  object-fit: contain;
  object-position: center center;
}

.about-portrait-photo img {
  object-fit: contain;
  object-position: center center;
}

.person-photo {
  aspect-ratio: 0.92 / 1;
  width: min(100%, 520px);
  margin-inline: auto;
}

.services-portrait-photo img {
  object-fit: cover;
  object-position: center 18%;
}

.services-intro {
  padding: 4rem 0;
}

.services-intro .split {
  align-items: center;
}

.services-intro .photo-frame {
  aspect-ratio: 1 / 0.86;
  width: min(100%, 560px);
}

.services-intro .content-prose {
  align-self: center;
}

@media (max-width: 900px) {
  #about .photo-frame {
    min-height: 420px;
  }
}

.quote-panel {
  border-left: 4px solid var(--gold);
  padding-left: 1.25rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  position: relative;
}

.quote-panel + .split-actions {
  margin-top: 1.5rem;
}

.quote-panel::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 0px;
  font-size: 3rem;
  color: var(--gold);
  font-family: Georgia, serif;
}

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

.milestone {
  min-height: 230px;
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(255, 244, 236, 0.95) 0%, rgba(234, 249, 247, 0.98) 58%, rgba(255, 255, 255, 1) 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.contact-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 190, 155, 0.18), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(183, 237, 240, 0.18), transparent 20%);
  pointer-events: none;
}

.contact-band .lead,
.contact-band .card p {
  color: var(--ink);
}

.contact-band .eyebrow,
.contact-band h2 {
  color: var(--heading);
}

.contact-band .eyebrow {
  opacity: 0.92;
}

.contact-band .section-head {
  align-items: start;
  justify-content: start;
  justify-items: start;
  text-align: left;
  position: relative;
  z-index: 2;
}

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

.contact-band .card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(183, 237, 240, 0.55);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 2;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.contact-band .card h3 {
  color: var(--teal-dark);
  font-size: 1.18rem;
}

.contact-band .card p {
  color: var(--ink);
  line-height: 1.7;
}

.contact-band a,
.contact-primary a,
.centre-card a {
  overflow-wrap: anywhere;
}

.contact-band .card.contact-card {
  background: rgba(255, 255, 255, 0.16);
}

.contact-band .card.location-card {
  background: rgba(255, 255, 255, 0.075);
}

.contact-band .card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.contact-band-grid {
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 2;
}

.contact-card-label {
  color: #582a07;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-feature-card {
  background: rgba(255, 255, 255, 0.18) !important;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2.25rem;
  position: relative;
  z-index: 2;
}

.btn.light {
    background: rgba(15, 34, 37, 0.12);
    color: #173236;
    border-color: rgba(255, 255, 255, 0.24);
}
.btn.light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  gap: 1rem;
  align-items: stretch;
  padding: 0.8rem;
  border: 1px solid rgba(15, 34, 37, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 22px 70px rgba(15, 34, 37, 0.07);
}

.contact-primary {
  background:
    linear-gradient(145deg, rgba(9, 103, 99, 0.98), rgba(4, 55, 58, 0.98));
  color: var(--white);
  min-height: 100%;
  border: 0;
  box-shadow: none;
  padding: 2rem;
}

.contact-primary h2,
.contact-primary .eyebrow,
.contact-primary p {
  color: var(--white);
}

.contact-primary p {
  line-height: 1.7;
}

.contact-primary .eyebrow {
  margin-bottom: 0.5rem;
}

.contact-link-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.contact-link-list a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font-weight: 800;
  word-break: break-word;
}

.centre-grid {
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.centre-card {
  box-shadow: none;
  border-color: rgba(15, 34, 37, 0.08);
  background: rgba(255, 255, 255, 0.92);
  height: 100%;
}

.centre-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-social-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(15, 34, 37, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 48px rgba(15, 34, 37, 0.055);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.message-card,
.map-card {
  min-height: 100%;
  border-color: rgba(15, 34, 37, 0.08);
  box-shadow: 0 18px 54px rgba(15, 34, 37, 0.06);
}

.message-card {
  padding: 2rem;
}

.map-card {
  padding: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 34, 37, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(10, 115, 111, 0.42);
  box-shadow: 0 0 0 4px rgba(10, 115, 111, 0.1);
}

.contact-form .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.map-card {
  overflow: hidden;
}

.map-card > .eyebrow,
.map-card > h2,
.map-card > p {
  margin-left: 1.65rem;
  margin-right: 1.65rem;
}

.map-card > p {
  color: var(--muted);
  line-height: 1.68;
}

.map-card > .eyebrow {
  margin-top: 1.65rem;
}

.map-embed {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 0;
  background: var(--soft);
  border: 0;
  border-top: 1px solid var(--line);
  margin-top: 1.25rem;
}

.contact-overview-section {
  background:
    linear-gradient(180deg, rgba(237, 246, 243, 0.45), rgba(251, 250, 246, 0));
}

.contact-intake-section {
  background:
    linear-gradient(135deg, rgba(237, 246, 243, 0.82), rgba(251, 250, 246, 0.96));
}

.contact-follow-section {
  padding-top: 4rem;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.page-hero {
  padding: 3.4rem 0 3.25rem;
  background:
    radial-gradient(circle at 86% 24%, rgba(185, 130, 54, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(237, 246, 243, 0.96) 0%, rgba(251, 250, 246, 0.98) 100%);
  border-bottom: 1px solid rgba(15, 34, 37, 0.06);
}

.page-hero .wrap {
  display: block;
  text-align: left;
}

.page-hero h1 {
  text-align: left;
  margin-bottom: 1rem;
  max-width: 940px;
  width: 100%;
}

.page-hero .eyebrow {
  text-align: left;
  margin-bottom: 0.75rem;
}

.page-hero .eyebrow::before {
  left: 0;
  transform: none;
}

.page-hero .lead {
  max-width: 780px;
  margin: 0;
  padding: 0;
  border-left: 0;
  text-align: left;
}

.content-prose p,
.content-prose li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 0;
  text-align: justify;
}

.two-column {
  columns: 1;
  max-width: 820px;
}

.footer {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(248, 244, 236, 1), rgba(236, 240, 235, 1));
  color: var(--ink);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(230, 190, 160, 0.35) 50%, transparent 100%);
}

.footer .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer span {
  line-height: 1.5;
}

.footer-credit,
.footer .footer-credit.button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f3c963;
  font-size: 0.58rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-decoration: none;
  opacity: 1;
  box-shadow: none;
  text-transform: none;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: #ffd76f;
  opacity: 0.85;
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .contact-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

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

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

  .centre-grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar .wrap {
    flex-direction: column;
    gap: 4px;
  }

  .nav.wrap {
    width: min(100% - 36px, 760px);
  }

  .hamburger {
    display: grid;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-medium);
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .nav {
    min-height: 84px;
  }

  .nav-links .nav-cta {
    width: 100%;
    margin-top: 8px;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero {
    background: linear-gradient(180deg, var(--soft) 0%, rgba(248, 250, 252, 0.9) 100%);
    min-height: auto;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    min-height: 0;
    align-items: start;
    gap: 2rem;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .hero-portrait {
    order: -1;
    width: min(520px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

  .hero-portrait img {
    height: 420px;
    object-position: center top;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .metrics,
  .section-head,
  .split,
  .services-grid,
  .milestone-grid,
  .contact-grid,
  .centre-grid,
  .image-card-grid,
  .image-card-grid.compact,
  .testimonial-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-comment-fields {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-head > .lead,
  .section-head > p,
  .page-hero .lead {
    max-width: 100%;
  }

  .photo-frame img {
    height: 100%;
  }

  .two-column {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 32px, 1280px);
  }

  .brand {
    white-space: normal;
    font-size: 0.96rem;
  }

  .brand span {
    font-size: 0.68rem;
  }

  .nav {
    min-height: 76px;
  }

  .nav-links {
    top: 76px;
  }

  .hero .wrap {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .hero-portrait img {
    height: 340px;
  }

  .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .eyebrow::before {
    width: 28px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 1rem;
  }

  p,
  .content-prose p,
  .content-prose li,
  .card p,
  .image-card p,
  .video-copy p {
    line-height: 1.62;
  }

  .page-hero h1 {
    max-width: 100%;
  }

  .section,
  .page-hero {
    padding: 3rem 0;
  }

  .metrics {
    width: min(100% - 24px, 840px);
    gap: 14px;
    padding: 0;
  }

  .metric {
    padding: 1.45rem 1rem;
  }

  .metric strong {
    font-size: 2.6rem;
  }

  .image-card {
    min-height: 0;
    grid-template-rows: 210px 1fr;
  }

  .blog-card a {
    grid-template-rows: 210px 1fr;
  }

  .photo-frame {
    aspect-ratio: 5 / 4;
  }

  .footer {
    padding: 2.25rem 0;
  }

  .footer .wrap {
    justify-content: center;
  }
}

.back-to-top {
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 107, 104, 0.4);
}

/* Focus states for accessibility */
.btn:focus, .nav-cta:focus, .nav-links a:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Premium warm-gold visual system */
:root {
  --ink: #2f2618;
  --heading: #1d160c;
  --heading-soft: #5d4316;
  --muted: #74654f;
  --paper: #fff9ed;
  --soft: #fff2d5;
  --blush: #fff7e8;
  --mint: #fbefd1;
  --sky: #fff8ea;
  --line: rgba(92, 62, 17, 0.13);
  --teal: #c99623;
  --teal-dark: #8f6513;
  --gold: #d7a536;
  --gold-soft: #ffe4a6;
  --peach: #c5862f;
  --white: #ffffff;
  --shadow-light: 0 2px 12px rgba(66, 45, 13, 0.08);
  --shadow-medium: 0 18px 48px rgba(66, 45, 13, 0.12);
  --shadow-large: 0 30px 84px rgba(66, 45, 13, 0.16);
  --shadow-xl: 0 44px 110px rgba(66, 45, 13, 0.2);
  --radius: 12px;
  --radius-lg: 18px;
  --gradient-primary: linear-gradient(135deg, #f1c85d 0%, #b97816 100%);
  --gradient-accent: linear-gradient(135deg, #fff1bd 0%, #d69b2a 54%, #7a4f12 100%);
  --glass-bg: rgba(255, 250, 240, 0.9);
  --glass-border: rgba(215, 165, 54, 0.22);
}

body {
  background:
    linear-gradient(90deg, rgba(214, 165, 54, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #fff8ea 0%, #fffaf1 46%, #ffffff 100%);
  background-size: 42px 42px, auto;
  color: var(--ink);
}

.wrap {
  width: min(1180px, calc(100% - 56px));
}

.site-header,
.home-page .site-header {
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid rgba(176, 120, 22, 0.14);
  box-shadow: 0 12px 40px rgba(66, 45, 13, 0.08);
}

.site-header.nav-scrolled {
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 18px 54px rgba(66, 45, 13, 0.13);
}

.nav {
  min-height: 78px;
}

.nav.wrap {
  width: min(1720px, calc(100% - clamp(3.5rem, 6vw, 7rem)));
}

.brand {
  color: var(--heading);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand::before {
  display: none;
  content: "";
}

.nav-links {
  gap: clamp(0.55rem, 1vw, 0.95rem);
  font-weight: 700;
}

.nav-links a {
  color: rgba(47, 38, 24, 0.82);
}

.nav-links a::after {
  background: linear-gradient(90deg, #f7d46d, #a66d15);
  bottom: -8px;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--heading);
}

.nav-links .nav-cta,
.btn {
  min-height: 48px;
  border-radius: 999px;
  background-color: #f4b200;
  background-image: none;
  border-color: #f4b200;
  color: #010101;
  box-shadow: 0 16px 34px rgba(170, 107, 18, 0.22);
}

.nav-links .nav-cta:hover,
.btn:hover {
  background-color: #f4b200;
  background-image: none;
  border-color: #f4b200;
  color: #010101;
  box-shadow: 0 22px 54px rgba(142, 93, 21, 0.26);
}

.btn.alt,
.btn.ghost {
  background: rgba(255, 255, 255, 0.88);
  color: var(--heading);
  border: 1px solid rgba(174, 112, 19, 0.2);
  box-shadow: 0 14px 34px rgba(66, 45, 13, 0.08);
}

.hero {
  min-height: 86vh;
  background: linear-gradient(120deg, rgba(255, 248, 231, 0.98) 0%, rgb(255 235 177 / 0%) 48%, rgba(255, 250, 241, 0.98) 100%);
  border-bottom: 1px solid rgba(176, 120, 22, 0.14);
}

.hero::before {
  background:
    linear-gradient(135deg, rgba(115, 78, 18, 0.08) 0 25%, transparent 25% 50%, rgba(255, 255, 255, 0.18) 50% 75%, transparent 75% 100%);
  background-size: 28px 28px;
  opacity: 0.36;
}

.hero .wrap {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.86fr);
  min-height: 720px;
  gap: 4rem;
  padding-top: 3rem;
}

.hero-copy {
  width: min(690px, 100%);
}

.hero-subtitle {
  color: #4c3817;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.65;
}

.hero-portrait {
  max-width: 455px;
  height: min(620px, 74vh);
  border-radius: 220px 220px 22px 22px;
  border: 10px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(160deg, #ffe6a2, #fff8e9);
  box-shadow: 0 36px 100px rgba(86, 55, 12, 0.22);
}

.hero-portrait::after {
  background: linear-gradient(to bottom, transparent 60%, rgba(75, 46, 7, 0.14) 100%);
}

.eyebrow {
  color: #9b6818;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  background: linear-gradient(90deg, #e9b937, #8e5e13);
}

h1,
h2,
h3 {
  color: var(--heading);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 5.55rem);
  line-height: 0.98;
  max-width: 780px;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  line-height: 1.03;
}

h3 {
  font-size: 1.3rem;
  color: var(--heading);
}

.lead,
.hero-note,
.content-prose p,
.content-prose li,
.blog-post,
.card p,
.image-card p,
.testimonial-card p,
.video-copy p {
  color: var(--muted);
}

.metrics {
  width: min(980px, calc(100% - 56px));
  margin-top: -1.35rem;
  gap: 16px;
}

.metric {
  border: 1px solid rgba(188, 126, 23, 0.18);
  border-radius: 18px;
  background: rgba(255, 252, 245, 0.92);
  box-shadow: 0 24px 64px rgba(75, 48, 10, 0.13);
}

.metric strong {
  color: var(--heading);
  font-family: Georgia, 'Times New Roman', serif;
}

.metric span,
.service-no,
.tag,
.contact-card-label,
.centre-card span,
.testimonial-card span {
  color: #5a3e00;
}

.section {
  padding: 6.75rem 0;
}

.section.soft,
.contact-overview-section,
.contact-intake-section {
  background:
    linear-gradient(180deg, rgba(255, 243, 209, 0.76), rgba(255, 251, 242, 0.92));
}

.section-head {
  margin-bottom: 2.7rem;
}

.section-head h2::after,
.split h2::after,
.content-prose h2::after,
.contact-primary h2::after,
.map-card > h2::after {
  height: 3px;
  background: linear-gradient(90deg, #dba937, rgba(219, 169, 55, 0));
}

.card,
.image-card,
.testimonial-card,
.video-card,
.contact-social-band,
.contact-page-layout {
  border: 1px solid rgba(174, 112, 19, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 62px rgba(75, 48, 10, 0.09);
}

.card {
  padding: 2rem;
  min-height: 220px;
}

.card::before {
  height: 5px;
  background: linear-gradient(90deg, #f0c857, #9b6114);
}

.card:hover,
.image-card:hover,
.testimonial-card:hover,
.video-card:hover {
  border-color: rgba(185, 118, 18, 0.3);
  box-shadow: 0 34px 88px rgba(75, 48, 10, 0.14);
}

.image-card {
  grid-template-rows: 255px 1fr;
  background: #fffdfa;
}

.image-card div,
.video-copy {
  padding: 1.65rem;
}

.photo-frame {
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 229, 158, 0.42), rgba(255, 255, 255, 0.8));
  box-shadow: 0 30px 84px rgba(75, 48, 10, 0.15);
}

#about .photo-frame {
  border-radius: 220px 220px 22px 22px;
  background: linear-gradient(160deg, #ffe6a3, #fffdf7);
}

#about .photo-frame::after {
  background: linear-gradient(to bottom, transparent 72%, rgba(255, 249, 237, 0.98) 100%);
}

.quote-panel {
  border-left-color: #d7a536;
  background: rgba(255, 248, 229, 0.8);
  border-radius: 0 16px 16px 0;
  padding: 1rem 1.25rem;
}

.pill-row span,
.pill-row a {
  border-color: rgba(184, 115, 18, 0.18);
  background: rgba(255, 248, 231, 0.9);
  color: var(--heading);
}

.page-hero {
  padding: 5.6rem 0 4.6rem;
  background:
    linear-gradient(120deg, rgba(255, 244, 214, 0.98), rgba(255, 252, 246, 0.98));
  border-bottom: 1px solid rgba(176, 120, 22, 0.14);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  max-width: 900px;
}

.contact-band {
  background: linear-gradient(135deg, #4c3108 0%, #8b5b12 46%, #dba937 100%);
  color: #fff8e8;
}

.contact-band::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
}

.contact-band .lead,
.contact-band .card p,
.contact-band .eyebrow,
.contact-band h2 {
  color: #fff8e8;
}

.contact-band .card,
.contact-band .card.contact-card,
.contact-band .card.location-card,
.contact-feature-card {
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(255, 239, 197, 0.22);
  box-shadow: none;
}

.contact-band .card h3,
.contact-band a {
  color: #ffffff;
}

.contact-band-grid {
  border-color: rgba(255, 239, 197, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(38, 23, 3, 0.24);
}

.contact-primary {
  background: linear-gradient(145deg, #4e330b 0%, #8d5f16 58%, #c89122 100%);
}

.contact-link-list a {
  border-left-color: #f2cd63;
}

.contact-form input,
.contact-form textarea {
  border-radius: 14px;
  border-color: rgba(142, 93, 21, 0.18);
  background: #fffdf8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(201, 150, 35, 0.7);
  box-shadow: 0 0 0 4px rgba(201, 150, 35, 0.14);
}

.footer {
  background: linear-gradient(135deg, #211507, #513609);
  color: rgba(255, 248, 232, 0.86);
}

.footer::before {
  background: linear-gradient(90deg, transparent 0%, rgba(243, 201, 99, 0.5) 50%, transparent 100%);
}

.back-to-top {
  background: #f4b200 !important;
  border-color: #f4b200 !important;
  color: #010101 !important;
}

.btn:focus,
.nav-cta:focus,
.nav-links a:focus {
  outline: 2px solid #d7a536;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .nav {
    min-height: 76px;
  }

  .nav-links {
    top: 76px;
    background: rgba(255, 250, 240, 0.98);
  }

  .hero {
    min-height: auto;
    background: linear-gradient(180deg, #fff2cd 0%, #fffaf0 100%);
  }

  .hero .wrap {
    gap: 2.4rem;
    padding-top: 2.5rem;
  }

  .hero-portrait {
    height: auto;
    width: min(420px, 100%);
    border-radius: 180px 180px 18px 18px;
  }

  .hero-portrait img {
    height: 430px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .section-head.has-action {
    grid-template-columns: 1fr;
  }

  .section-head.has-action > .section-head-action {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .brand::before {
    width: 30px;
    margin-bottom: 0.3rem;
  }

  .hero .wrap {
    padding-bottom: 3.5rem;
  }

  .hero-portrait {
    border-width: 7px;
  }

  .hero-portrait img {
    height: 330px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2rem;
  }

  .section,
  .page-hero {
    padding: 3.6rem 0;
  }

  .card,
  .image-card div,
  .video-copy {
    padding: 1.35rem;
  }

  .metrics {
    margin-top: -1.5rem;
  }
}

/* Cleaner hero portrait treatment: gold halo and soft pedestal */
.hero-portrait {
  width: min(540px, 100%);
  max-width: 540px;
  height: min(680px, 78vh);
  margin-left: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.hero-portrait::before {
  inset: 2% -3% 16% 4%;
  z-index: -2;
  border: 1px solid rgba(181, 120, 24, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 239, 188, 0.96) 0 42%, rgba(242, 197, 85, 0.44) 43% 52%, transparent 53%),
    conic-gradient(from 0deg, rgba(211, 157, 42, 0.16), transparent 12deg 32deg, rgba(211, 157, 42, 0.13) 42deg, transparent 55deg 74deg, rgba(211, 157, 42, 0.14) 88deg, transparent 98deg 360deg);
  box-shadow: 0 34px 94px rgba(81, 52, 11, 0.13);
  transform: rotate(-4deg);
}

.hero-portrait::after {
  inset: auto 6% 0 8%;
  z-index: -1;
  height: 118px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(121, 77, 12, 0.2), rgba(121, 77, 12, 0.08) 42%, transparent 72%);
  box-shadow: none;
  transform: none;
}

.hero-portrait img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 36px rgba(59, 39, 10, 0.22));
}

@media (max-width: 900px) {
  .hero-portrait {
    height: auto;
    width: min(470px, 100%);
    margin-inline: auto;
  }

  .hero-portrait::before {
    inset: 2% -2% 16% 2%;
  }

  .hero-portrait::after {
    right: 6%;
    bottom: 0;
    left: 6%;
    height: 90px;
  }

  .hero-portrait img {
    height: 470px;
  }
}

@media (max-width: 640px) {
  .hero-portrait {
    width: min(360px, 100%);
  }

  .hero-portrait::before {
    inset: 2% -3% 17% -3%;
    transform: rotate(-3deg);
  }

  .hero-portrait::after {
    left: 4%;
    height: 72px;
  }

  .hero-portrait img {
    height: 360px;
  }
}

/* Responsive placement refined from the reference layout */
@media (min-width: 992px) and (max-width: 1180px) {
  .wrap {
    width: min(100% - 44px, 1060px);
  }

  .hero .wrap {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
    gap: 2.25rem;
    min-height: 650px;
  }

  h1 {
    font-size: clamp(2.75rem, 4.4vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2rem, 3.4vw, 2.85rem);
  }

  .hero-portrait {
    width: min(430px, 100%);
    height: min(590px, 70vh);
  }

  .services-grid,
  .image-card-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .wrap {
    width: min(100% - 36px, 760px);
  }

  .site-header,
  .home-page .site-header {
    background: rgba(255, 250, 240, 0.97);
  }

  .hero {
    min-height: 0;
    padding: 0;
  }

  .hero .wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.15rem, 3vw, 1.8rem);
    min-height: 0;
    padding-top: clamp(1.75rem, 4vw, 2.8rem);
    padding-bottom: 3.25rem;
  }

  .hero-copy {
    width: min(100%, 680px);
    justify-self: center;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-subtitle,
  .hero-actions {
    text-align: center;
    justify-content: center;
  }

  .hero-copy .eyebrow {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .eyebrow::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-copy .lead,
  .hero-note {
    max-width: min(39rem, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-portrait {
    order: -1;
    justify-self: center;
    width: min(96vw, 35rem);
    height: clamp(26rem, 72vw, 35rem);
    margin: 0 auto;
  }

  .hero-portrait::before {
    inset: 3% 3% 15% 3%;
  }

  .hero-portrait::after {
    inset: auto 10% 1% 10%;
    height: 13%;
  }

  .hero-portrait img {
    width: 100%;
    height: 108%;
    object-fit: contain;
    object-position: center bottom;
  }

  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100% - 36px, 760px);
    margin-top: -1.7rem;
    padding: 0;
  }

  .metric {
    padding: 1.35rem 1rem;
    min-height: 0;
  }

  .metric strong {
    font-size: clamp(2.2rem, 6vw, 3.1rem);
  }

  .metric span {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .section,
  .page-hero {
    padding: clamp(3.6rem, 8vw, 5rem) 0;
  }

  .split {
    gap: 2rem;
  }

  .photo-frame,
  #about .photo-frame {
    min-height: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid,
  .image-card-grid,
  .testimonial-grid,
  .video-grid,
  .contact-grid,
  .centre-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page-layout,
  .contact-form-layout,
  .contact-social-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .wrap {
    width: min(100% - 30px, 620px);
  }

  .nav {
    min-height: 72px;
  }

  .brand {
    max-width: 190px;
    line-height: 1.2;
  }

  .nav-links {
    top: 72px;
  }

  .hero .wrap {
    padding-top: 1.2rem;
    padding-bottom: 2.6rem;
  }

  .hero-portrait {
    width: min(96vw, 24rem);
    height: clamp(21.5rem, 86vw, 25rem);
  }

  .hero-portrait::before {
    inset: 3% 1% 14% 1%;
  }

  .hero-portrait img {
    height: 112%;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 8vw, 2.55rem);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(1.75rem, 6.3vw, 2.15rem);
    line-height: 1.12;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.58;
  }

  .lead,
  .hero-note {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .metrics,
  .services-grid,
  .image-card-grid,
  .testimonial-grid,
  .video-grid,
  .contact-grid,
  .centre-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    width: min(100% - 30px, 440px);
    margin-top: 0;
    gap: 0.85rem;
  }

  .metric {
    padding: 1.2rem 1.15rem;
    text-align: center;
  }

  .metric strong,
  .metric span {
    text-align: center;
  }

  .card,
  .testimonial-card,
  .video-card {
    min-height: 0;
  }

  .image-card,
  .blog-card a {
    grid-template-rows: 205px 1fr;
    min-height: 0;
  }

  .section-head.has-action > .section-head-action,
  .section-head.has-action > .section-head-action .btn,
  .hero-actions .btn,
  .split-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .contact-actions,
  .hero-actions,
  .split-actions {
    gap: 0.75rem;
  }

  .contact-band-grid {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(100% - 24px, 390px);
  }

  .hero-portrait {
    width: min(95vw, 22.5rem);
    height: clamp(20rem, 88vw, 23rem);
  }

  .brand {
    max-width: 165px;
    font-size: 0.9rem;
  }

  .hamburger {
    width: 40px;
    height: 40px;
  }

  .card,
  .image-card div,
  .video-copy,
  .message-card,
  .contact-primary {
    padding: 1.2rem;
  }
}

/* Natural portrait rendering: keep people unboxed and uncropped */
.hero-portrait,
.person-photo,
#about .photo-frame,
.about-portrait-photo,
.services-portrait-photo,
#about .home-about-photo {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-portrait::before,
.hero-portrait::after,
#about .photo-frame::after {
  display: none;
}

.hero-portrait img,
.person-photo img,
#about .home-about-photo img,
.about-portrait-photo img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 34px rgba(59, 39, 10, 0.18));
}

.hero-portrait {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: auto;
  min-height: 0;
}

.hero-portrait img {
  max-width: min(100%, 560px);
}

.person-photo,
#about .photo-frame {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  aspect-ratio: auto;
  min-height: 0;
}

.person-photo img {
  max-width: min(100%, 540px);
}

.services-portrait-photo img {
  object-fit: contain;
  object-position: center bottom;
}

@media (max-width: 991.98px) {
  .hero-portrait {
    height: auto;
    width: min(100%, 34rem);
  }

  .hero-portrait img {
    height: auto;
    max-height: 34rem;
  }
}

@media (max-width: 767.98px) {
  .hero-portrait {
    width: min(100%, 23.75rem);
  }

  .hero-portrait img {
    max-height: 25rem;
  }
}

@media (max-width: 420px) {
  .hero-portrait {
    width: min(100%, 22rem);
  }

  .hero-portrait img {
    max-height: 23rem;
  }
}

/* Blend cutout portraits into the page without changing the image files */
.hero-portrait {
  position: relative;
  isolation: isolate;
  padding-bottom: clamp(1.25rem, 3vw, 2.25rem);
}

.hero-portrait::before {
  display: block;
  content: "";
  position: absolute;
  inset: 13% 8% 14% 10%;
  z-index: -1;
  border: 1px solid rgba(215, 165, 54, 0.14);
  border-radius: 56% 44% 48% 52% / 48% 52% 48% 52%;
  background:
    radial-gradient(circle at 46% 35%, rgba(255, 235, 172, 0.5), rgba(235, 181, 55, 0.18) 45%, rgba(255, 248, 230, 0) 72%);
  filter: blur(0.2px);
  transform: rotate(-4deg) translateY(0.6rem);
}

.hero-portrait::after {
  display: block;
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 0.25rem;
  z-index: 3;
  height: clamp(4rem, 13%, 6rem);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0), rgba(255, 248, 234, 0.68) 70%, rgba(255, 248, 234, 0.96) 100%),
    radial-gradient(ellipse at center, rgba(117, 75, 13, 0.1), rgba(117, 75, 13, 0.035) 42%, transparent 73%);
}

.hero-portrait img {
  transform: translate(0.7rem, 0.95rem);
}

.person-photo {
  position: relative;
  isolation: isolate;
  padding-bottom: 1.25rem;
}

.person-photo::before {
  content: "";
  position: absolute;
  inset: 16% 10% 12%;
  z-index: -1;
  border-radius: 55% 45% 52% 48% / 48% 52% 48% 52%;
  background: radial-gradient(circle, rgba(255, 232, 164, 0.28), rgba(255, 248, 232, 0) 70%);
}

.person-photo::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0;
  z-index: 3;
  height: 4.5rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 249, 237, 0), rgba(255, 249, 237, 0.84));
}

.about-portrait-photo {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  padding: clamp(1rem, 2vw, 1.45rem) clamp(1rem, 2vw, 1.45rem) 0;
}

.about-portrait-photo::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 24px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 239, 194, 0.58), transparent 34%),
    linear-gradient(135deg, rgba(255, 247, 229, 0.9), rgba(255, 253, 247, 0.72));
  box-shadow: 0 22px 64px rgba(83, 52, 9, 0.1);
}

.about-portrait-photo::after {
  content: "";
  position: absolute;
  display: block;
  inset: auto clamp(1rem, 2vw, 1.45rem) 0;
  z-index: 2;
  height: clamp(1.25rem, 2.6vw, 2rem);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 100%, rgba(255, 250, 240, 0.5) 0 16%, rgba(255, 250, 240, 0.18) 44%, transparent 72%),
    radial-gradient(ellipse at 58% 100%, rgba(255, 250, 240, 0.56) 0 18%, rgba(255, 250, 240, 0.2) 46%, transparent 74%),
    linear-gradient(180deg, transparent 0%, rgba(255, 250, 240, 0.22) 74%, rgba(255, 250, 240, 0.58) 100%);
  filter: blur(0.1px);
}

.about-portrait-photo img {
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.02) contrast(1.02) drop-shadow(0 22px 34px rgba(59, 39, 10, 0.14));
  transform: none;
}

#about .home-about-photo {
  position: relative;
  align-self: center;
  width: min(100%, 520px);
  padding: clamp(0.45rem, 1.1vw, 0.7rem);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(210, 153, 52, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(255, 246, 222, 0.74)),
    #fffaf0;
  box-shadow:
    0 26px 76px rgba(80, 52, 14, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

#about .home-about-photo::before {
  display: block;
  content: "";
  position: absolute;
  inset: clamp(0.45rem, 1.1vw, 0.7rem);
  z-index: 2;
  border-radius: 22px;
  pointer-events: none;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(200, 139, 35, 0.18);
}

#about .home-about-photo::after {
  display: block;
  content: "";
  position: absolute;
  inset: auto clamp(0.45rem, 1.1vw, 0.7rem) clamp(0.45rem, 1.1vw, 0.7rem);
  z-index: 3;
  height: clamp(0.9rem, 1.6vw, 1.35rem);
  border-radius: 0 0 22px 22px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 251, 241, 0), #fffaf0);
}

#about .home-about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 22px;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.04) contrast(1.04) drop-shadow(0 18px 26px rgba(62, 42, 15, 0.12));
  transform: none;
}

.photo-frame:not(.person-photo):not(.home-about-photo):not(.about-portrait-photo):not(.services-portrait-photo) {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(174, 112, 19, 0.14);
  border-radius: 18px;
  background: #fffaf0;
  box-shadow: 0 24px 70px rgba(75, 48, 10, 0.11);
}

.photo-frame:not(.person-photo):not(.home-about-photo):not(.about-portrait-photo):not(.services-portrait-photo)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(78, 51, 10, 0.08)),
    linear-gradient(90deg, rgba(255, 213, 98, 0.13), transparent 28%, transparent 72%, rgba(255, 213, 98, 0.1));
}

.photo-frame:not(.person-photo):not(.home-about-photo):not(.about-portrait-photo):not(.services-portrait-photo) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card img {
  filter: saturate(0.96) contrast(1.02);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 232, 164, 0.1), transparent 42%);
}

@media (max-width: 991.98px) {
  .metrics {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .hero-portrait::before {
    inset: 12% 7% 14%;
  }

  .hero-portrait::after {
    height: 4rem;
  }

  .hero-portrait img {
    transform: translateY(0.75rem);
  }
}

.home-page .hero-portrait {
  width: min(620px, 100%);
  height: min(620px, 74vh);
  padding: 0;
  overflow: visible;
  border-radius: 0;
}

.home-page .hero-portrait::before {
  display: block;
  content: "";
  position: absolute;
  inset: 8% -5% -5% 12%;
  z-index: -1;
  border: 0;
  border-radius: 34px;
  background: linear-gradient(135deg, rgb(130 108 52 / 60%), rgba(152, 96, 15, 0.12));  box-shadow: 0 34px 88px rgba(83, 52, 9, 0.18);
  transform: rotate(5deg);
}

.home-page .hero-portrait::after {
  display: block;
  content: "";
  position: absolute;
  inset: auto 1.5rem 0 1.5rem;
  z-index: 2;
  height: clamp(2.2rem, 4.2vw, 3.4rem);
  border-radius: 0 0 28px 28px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 24% 100%, rgba(255, 251, 241, 0.74) 0 18%, rgba(255, 251, 241, 0.28) 45%, transparent 72%),
    radial-gradient(ellipse at 58% 100%, rgba(255, 251, 241, 0.8) 0 20%, rgba(255, 251, 241, 0.3) 48%, transparent 76%),
    radial-gradient(ellipse at 84% 100%, rgba(255, 251, 241, 0.68) 0 16%, rgba(255, 251, 241, 0.24) 44%, transparent 72%),
    linear-gradient(180deg, transparent 0%, rgba(255, 251, 241, 0.32) 72%, rgba(255, 251, 241, 0.76) 100%);
  filter: blur(0.2px);
}

.home-page .hero-portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  border: 10px solid rgba(255, 251, 241, 0.82);
  border-radius: 28px;
  box-shadow: 0 28px 78px rgba(52, 36, 10, 0.2);
  filter: saturate(1.02) contrast(1.02);
  transform: none;
}

@media (max-width: 991.98px) {
  .home-page .hero-portrait {
    width: min(92vw, 36rem);
    height: min(92vw, 36rem);
  }

  .home-page .hero-portrait::before {
    inset: 7% -3% -3% 9%;
  }
}

@media (max-width: 767.98px) {
  .home-page .hero-portrait {
    width: min(92vw, 25rem);
    height: min(92vw, 25rem);
  }

  .home-page .hero-portrait img {
    border-width: 7px;
    border-radius: 22px;
    object-position: center bottom;
  }

  .home-page .hero-portrait::after {
    inset: auto 1rem 0 1rem;
    height: 2.8rem;
    border-radius: 0 0 22px 22px;
  }
}

/* Shared title layout: reduce unused right-side space in page and section headers */
.page-hero h1 {
  max-width: min(1160px, 100%);
}

.page-hero .hero-subtitle,
.page-hero .lead {
  max-width: min(1040px, 100%);
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero .hero-subtitle,
.page-hero .lead {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-head h2 {
  max-width: min(980px, 100%);
}

.section-head > .lead,
.section-head > p {
  max-width: min(960px, 100%);
}

@media (min-width: 901px) {
  .page-hero .wrap {
    width: min(1180px, calc(100% - 56px));
  }
}

/* Shared vertical rhythm: tighter spacing between sections across pages */
.section {
  padding: clamp(3.75rem, 5.5vw, 5rem) 0;
}

.page-hero {
  padding: clamp(3.6rem, 5vw, 4.6rem) 0 clamp(3rem, 4.4vw, 4rem);
}

.section-head {
  margin-bottom: clamp(1.5rem, 2.4vw, 2rem);
}

.grid-action {
  margin-top: clamp(1.5rem, 2.6vw, 2rem);
}

@media (max-width: 767.98px) {
  .section,
  .page-hero {
    padding: 2.75rem 0;
  }

  .section-head {
    margin-bottom: 1.35rem;
  }
}

.hero .wrap {
  min-height: clamp(600px, 72vh, 680px);
  padding-top: clamp(2rem, 3.5vw, 2.75rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.25rem);
}

body:not(.home-page) .page-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1120px);
  justify-content: start;
  align-items: start;
}

body:not(.home-page) .page-hero .eyebrow,
body:not(.home-page) .page-hero h1,
body:not(.home-page) .page-hero .hero-subtitle,
body:not(.home-page) .page-hero .lead {
  justify-self: start;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

body:not(.home-page) .page-hero .eyebrow {
  width: auto;
}

body:not(.home-page) .page-hero .hero-subtitle,
body:not(.home-page) .page-hero .lead {
  max-width: min(100%, 1040px);
}

.keep-together {
  display: inline-block;
  white-space: nowrap;
}

.contact-primary.card p {
  color: rgba(255, 248, 232, 0.88);
}

.contact-primary.card .eyebrow,
.contact-primary.card h2,
.contact-primary.card .contact-link-list a {
  color: #fffaf0;
}

.contact-page-layout .centre-grid {
  align-items: start;
}

.contact-page-layout .centre-card {
  height: auto;
  align-self: start;
}

.contact-page-layout {
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.42fr);
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  gap: 1.25rem;
}

.contact-page-layout .contact-primary {
  align-self: start;
  min-height: 0;
  padding: clamp(1.6rem, 2.2vw, 2.1rem);
}

.contact-page-layout .contact-primary h2 {
  font-size: clamp(2.55rem, 3.35vw, 3.45rem);
  line-height: 1.04;
}

.contact-page-layout .contact-primary p {
  max-width: 28rem;
  font-size: 0.98rem;
  line-height: 1.58;
}

.contact-page-layout .centre-grid {
  gap: 1.25rem;
  align-items: stretch;
}

.contact-page-layout .centre-card {
  padding: clamp(1.65rem, 2.2vw, 2.15rem);
  height: 100%;
  align-self: stretch;
}

.contact-page-layout .contact-link-list {
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.contact-page-layout .contact-link-list a {
  min-height: 42px;
  padding: 0.65rem 1rem;
}

@media (min-width: 992px) {
  .contact-page-layout .centre-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Premium contact composition */
.contact-overview-section {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
}

.contact-page-layout {
  width: min(1480px, 100%);
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.5fr);
  gap: clamp(1rem, 1.6vw, 1.5rem);
  align-items: stretch;
  padding: clamp(0.7rem, 1vw, 0.9rem);
  border: 1px solid rgba(174, 112, 19, 0.12);
  border-radius: 24px;
  background: rgba(255, 252, 245, 0.62);
  box-shadow: 0 30px 90px rgba(83, 52, 9, 0.08);
}

.contact-page-layout .contact-primary {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  padding: clamp(1.7rem, 2.2vw, 2.15rem);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(83, 52, 9, 0.16);
}

.contact-page-layout .contact-primary h2 {
  max-width: 9.5ch;
  font-size: clamp(2.35rem, 3vw, 3rem);
  line-height: 1.02;
  margin-bottom: 0.9rem;
}

.contact-page-layout .contact-primary h2::after {
  margin-top: 0.75rem;
}

.contact-page-layout .contact-primary p {
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-page-layout .contact-link-list {
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.contact-page-layout .contact-link-list a {
  min-height: 40px;
  padding: 0.55rem 0.95rem;
  border-radius: 12px;
  font-size: 0.94rem;
}

.contact-page-layout .centre-grid {
  gap: clamp(1rem, 1.6vw, 1.5rem);
  align-items: stretch;
}

.contact-page-layout .centre-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(1.7rem, 2vw, 2rem);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(83, 52, 9, 0.08);
}

.contact-page-layout .centre-card h3 {
  margin-bottom: 1.3rem;
}

.contact-page-layout .centre-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-page-layout .centre-card p + p {
  margin-top: auto;
  padding-top: 1rem;
}

@media (max-width: 991.98px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .contact-page-layout .contact-link-list {
    margin-top: 0;
  }
}

/* Final contact polish: compact cards, no stretched empty columns */
.contact-overview-section {
  padding-top: clamp(2rem, 3vw, 2.75rem);
}

.contact-page-layout {
  width: min(1420px, 100%);
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.55fr);
  align-items: start;
  gap: clamp(1rem, 1.4vw, 1.35rem);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-page-layout .contact-primary {
  height: auto;
  min-height: 0;
  align-self: start;
  padding: clamp(1.65rem, 2vw, 2rem);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(83, 52, 9, 0.16);
}

.contact-page-layout .contact-primary h2 {
  max-width: 11ch;
  font-size: clamp(2.25rem, 2.7vw, 2.9rem);
  line-height: 1.02;
  margin-bottom: 0.8rem;
}

.contact-page-layout .contact-primary p {
  max-width: 33rem;
  font-size: 0.95rem;
  line-height: 1.54;
}

.contact-page-layout .contact-link-list {
  gap: 0.5rem;
  margin-top: 1.35rem;
  padding-top: 0;
}

.contact-page-layout .contact-link-list a {
  min-height: 39px;
  padding: 0.55rem 0.9rem;
  border-radius: 11px;
}

.contact-page-layout .centre-grid {
  align-items: start;
  gap: clamp(1rem, 1.4vw, 1.35rem);
}

.contact-page-layout .centre-card {
  position: relative;
  height: auto;
  min-height: 0;
  align-self: start;
  padding: clamp(1.55rem, 1.8vw, 1.85rem);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 54px rgba(83, 52, 9, 0.08);
}

.contact-page-layout .centre-card::before {
  width: 72px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #d9a733, rgba(217, 167, 51, 0));
}

.contact-page-layout .centre-card h3 {
  margin-bottom: 1rem;
}

.contact-page-layout .centre-card p {
  font-size: 0.94rem;
  line-height: 1.52;
}

.contact-page-layout .centre-card p + p {
  margin-top: 1.25rem;
  padding-top: 0;
}

@media (max-width: 991.98px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .contact-page-layout .centre-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .contact-page-layout .centre-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  [data-blog-list].image-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-blog-list] .blog-card,
  [data-blog-list] .blog-card:nth-child(4),
  [data-blog-list] .blog-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 991.98px) {
  [data-blog-list].image-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav.wrap {
    width: min(100% - 36px, 760px);
  }
}

@media (max-width: 640px) {
  .nav.wrap {
    width: min(100% - 28px, 620px);
  }

  [data-blog-list].image-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-card h3,
  .blog-card p {
    min-height: 0;
  }
}

/* Professional contact showcase */
.contact-overview-section {
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.contact-showcase {
  display: grid;
  grid-template-columns: minmax(22rem, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
  align-items: stretch;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(0.7rem, 1vw, 0.95rem);
  border: 1px solid rgba(153, 99, 18, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(255, 247, 226, 0.58));
  box-shadow: 0 30px 90px rgba(73, 48, 13, 0.09);
}

.contact-lead-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.75rem, 2.5vw, 2.35rem);
  border-radius: 16px;
  color: #fffaf0;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 210, 95, 0.28), transparent 30%),
    linear-gradient(145deg, #573607 0%, #87590f 58%, #bf841b 100%);
  box-shadow: 0 22px 56px rgba(78, 50, 9, 0.2);
}

.contact-lead-panel .eyebrow,
.contact-lead-panel h2,
.contact-lead-panel p {
  color: #fffaf0;
}

.contact-lead-panel .eyebrow {
  margin-bottom: 0.7rem;
}

.contact-lead-panel h2 {
  max-width: 11ch;
  font-size: clamp(2.25rem, 3.1vw, 3.25rem);
  line-height: 1.03;
  margin-bottom: 1rem;
}

.contact-lead-panel h2::after {
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 1rem;
  background: linear-gradient(90deg, #f2cd63, rgba(242, 205, 99, 0));
  content: "";
}

.contact-lead-panel > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.98rem;
  line-height: 1.65;
}

.contact-lead-panel .contact-link-list {
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
}

.contact-lead-panel .contact-link-list a {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 242, 202, 0.22);
  border-left: 3px solid #f2cd63;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fffaf0;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.location-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.4vw, 1.2rem);
}

.location-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(22rem, 31vw, 28rem);
  padding: clamp(1.55rem, 2.1vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(153, 99, 18, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.94));
  box-shadow: 0 18px 48px rgba(73, 48, 13, 0.075);
}

.location-item::before {
  position: absolute;
  top: 0;
  left: 1.2rem;
  width: 58px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #d39a1d, rgba(211, 154, 29, 0));
  content: "";
}

.location-item span {
  margin-bottom: 1.45rem;
  color: #4d3507;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-item h3 {
  margin-bottom: 1.4rem;
  color: #7a520d;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 1.8vw, 1.8rem);
  line-height: 1.1;
}

.location-item p {
  margin-bottom: 0;
  color: #6c604f;
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  line-height: 1.62;
}

.location-item-featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 235, 0.94));
}

.location-phone-row {
  display: grid;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.location-phone-row a {
  color: #6b4a10;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .contact-showcase {
    grid-template-columns: 1fr;
  }

  .contact-lead-panel .contact-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
  }

  .location-item {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .location-directory {
    grid-template-columns: 1fr;
  }

  .contact-lead-panel .contact-link-list {
    grid-template-columns: 1fr;
  }
}

/* Contact showcase v2: premium concierge band + location directory */
.contact-showcase {
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 1.4vw, 1.15rem);
  width: min(1280px, 100%);
  padding: clamp(0.65rem, 1vw, 0.85rem);
  border-radius: 22px;
}

.contact-lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(23rem, 0.95fr);
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
  align-items: end;
  min-height: 0;
  padding: clamp(1.7rem, 2.4vw, 2.35rem);
}

.contact-lead-panel .eyebrow,
.contact-lead-panel h2,
.contact-lead-panel > p:not(.eyebrow) {
  grid-column: 1;
}

.contact-lead-panel h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 3vw, 3.15rem);
}

.contact-lead-panel > p:not(.eyebrow) {
  max-width: 48rem;
}

.contact-lead-panel .contact-link-list {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.location-directory {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.4vw, 1.15rem);
}

.location-item {
  min-height: 0;
  padding: clamp(1.45rem, 2vw, 1.85rem);
}

.location-item span {
  margin-bottom: 1.05rem;
}

.location-item h3 {
  margin-bottom: 0.9rem;
}

.location-item p {
  font-size: 0.94rem;
  line-height: 1.58;
}

@media (max-width: 980px) {
  .contact-lead-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-lead-panel .eyebrow,
  .contact-lead-panel h2,
  .contact-lead-panel > p:not(.eyebrow),
  .contact-lead-panel .contact-link-list {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-lead-panel .contact-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-directory {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-showcase {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-lead-panel .contact-link-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

/* Homepage portrait refinement */
.home-page .hero-portrait {
  width: min(560px, 70vh, 100%);
  aspect-ratio: 1 / 1;
  height: auto;
  border: 12px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: #fffaf0;
  box-shadow: 0 30px 82px rgba(82, 55, 16, 0.14);
}

.home-page .hero-portrait::before {
  display: none;
}

.home-page .hero-portrait::after {
  height: clamp(5rem, 7.6vw, 6.4rem);
  background: linear-gradient(
    180deg,
    rgba(255, 250, 240, 0) 0%,
    rgba(255, 250, 240, 0.28) 38%,
    rgba(255, 250, 240, 0.86) 82%,
    #fffaf0 100%
  );
}

.home-page .hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.home-page .hero-portrait:hover,
.home-page .hero-portrait:hover img {
  transform: none;
}

@media (max-width: 991.98px) {
  .home-page .hero-portrait {
    width: min(90vw, 30rem);
    height: min(90vw, 30rem);
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .home-page .hero-portrait {
    border-width: 8px;
  }
}

/* Services portrait: keep the image polished and intentional on the program intro */
.services-intro .services-portrait-photo {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 0.94 / 1;
  justify-self: center;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.4), rgba(255, 248, 231, 0.92)),
    #fffaf0;
  box-shadow: 0 26px 72px rgba(83, 55, 18, 0.13);
  padding: 0;
}

.services-intro .services-portrait-photo::before {
  display: none;
}

.services-intro .services-portrait-photo::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 18%;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(255, 250, 240, 0.7) 76%, rgba(255, 250, 240, 0.92)),
    radial-gradient(ellipse at center, rgba(105, 70, 18, 0.08), rgba(105, 70, 18, 0.02) 54%, transparent 76%);
}

.services-intro .services-portrait-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.02) contrast(1.01);
  transform: none;
}

.services-intro .services-portrait-photo:hover,
.services-intro .services-portrait-photo:hover img {
  transform: none;
}

@media (max-width: 991.98px) {
  .services-intro .services-portrait-photo {
    width: min(88vw, 460px);
  }
}

@media (max-width: 640px) {
  .services-intro .services-portrait-photo {
    width: min(100%, 360px);
    border-width: 8px;
    border-radius: 20px;
  }
}

/* About portrait: tuned for the newer bright, formal image */
.about-intro-section {
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
}

.about-intro-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 500px);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.about-intro-layout .content-prose {
  max-width: 680px;
}

.about-intro-layout .content-prose h2 {
  max-width: 10ch;
}

.section .about-portrait-photo {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 0.92 / 1;
  justify-self: end;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: #fffaf0;
  box-shadow: 0 26px 72px rgba(83, 55, 18, 0.13);
  padding: 0;
}

.section .about-portrait-photo::before {
  display: none;
}

.section .about-portrait-photo::after {
  display: none;
}

.section .about-portrait-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.02) contrast(1.01);
  transform: none;
}

.section .about-portrait-photo:hover,
.section .about-portrait-photo:hover img {
  transform: none;
}

@media (max-width: 991.98px) {
  .about-intro-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-intro-layout .content-prose {
    max-width: 760px;
  }

  .about-intro-layout .content-prose h2 {
    max-width: 100%;
  }

  .section .about-portrait-photo {
    width: min(88vw, 440px);
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .section .about-portrait-photo {
    width: min(100%, 350px);
    aspect-ratio: 0.86 / 1;
    border-width: 8px;
    border-radius: 20px;
  }

  .section .about-portrait-photo img {
    object-fit: contain;
    object-position: center bottom;
  }
}

/* Mobile readability polish */
@media (max-width: 767.98px) {
  .home-page .hero .wrap {
    gap: 1rem;
    padding-top: 1rem;
  }

  .home-page .hero-portrait {
    width: min(84vw, 21rem);
    height: min(84vw, 21rem);
  }

  .home-page .hero-portrait img {
    transform: none;
  }

  #about .home-about-photo::after {
    display: block;
    height: clamp(1rem, 3.5vw, 1.35rem);
  }

  .section .about-portrait-photo::after {
    display: none;
  }

  #about .home-about-photo {
    box-shadow: 0 18px 46px rgba(82, 55, 16, 0.08);
  }

  .quote-panel {
    padding: 2rem 1rem 1rem 1.15rem;
  }

  .quote-panel::before {
    top: 0.35rem;
    left: 1.05rem;
    font-size: 2.2rem;
    line-height: 1;
  }

  .hero-copy .lead,
  .hero-note,
  .content-prose p,
  .content-prose li,
  .lead,
  .hero-subtitle {
    text-align: justify;
    text-align-last: left;
    text-align-last: auto;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-spacing: normal;
  }
}

@media (max-width: 420px) {
  .home-page .hero-portrait {
    width: min(82vw, 19.75rem);
    height: min(82vw, 19.75rem);
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  .home-page .hero {
    min-height: 0;
    align-items: flex-start;
  }

  .home-page .hero .wrap {
    min-height: 0;
    align-items: center;
    padding-top: clamp(3rem, 5vw, 4.25rem);
    padding-bottom: clamp(7rem, 10vw, 8.5rem);
  }

  .home-page .hero-portrait {
    width: min(38vw, 400px);
    height: min(38vw, 400px);
    align-self: center;
    margin-top: 0;
  }

  .home-page .hero-portrait img {
    object-position: center center;
    transform: none;
  }
}

/* Tablet spacing polish: remove empty grid cells and oversized vertical gaps */
@media (min-width: 768px) and (max-width: 1180px) {
  .section {
    padding: clamp(2.75rem, 4vw, 3.75rem) 0;
  }

  .page-hero {
    padding: clamp(2.75rem, 4vw, 3.5rem) 0 clamp(2.25rem, 3.4vw, 3rem);
  }

  .section-head {
    margin-bottom: clamp(1.15rem, 2vw, 1.5rem);
  }

  .grid {
    gap: clamp(0.9rem, 1.8vw, 1.15rem);
  }

  .card,
  .compact-card-grid .card,
  .service-card-grid .card,
  .testimonial-card {
    min-height: 0;
    padding: clamp(1.25rem, 2.1vw, 1.55rem);
    gap: 0.9rem;
  }

  .image-card,
  .blog-card a {
    grid-template-rows: clamp(185px, 22vw, 220px) 1fr;
  }

  .image-card {
    min-height: 0;
  }

  .image-card div,
  .video-copy {
    padding: clamp(1.15rem, 2vw, 1.35rem);
  }

  .services-grid > :last-child:nth-child(odd),
  .image-card-grid > :last-child:nth-child(odd),
  .testimonial-grid > :last-child:nth-child(odd),
  [data-blog-list].image-card-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .footer .wrap {
    min-height: 72px;
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  .nav {
    min-height: 76px;
  }

  .brand {
    font-size: 1rem;
  }

  .nav-links {
    gap: 0.55rem;
    font-size: 0.78rem;
  }

  .nav-links .nav-cta {
    min-height: 42px;
    padding: 0 1rem;
  }
}

/* Card media: consistent photo rows keep cards aligned without side letterboxing */
.image-card,
.blog-card a {
  grid-template-rows: auto 1fr;
}

.image-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

.image-card:hover img {
  transform: none;
}

/* Keep media cards aligned in clean rows */
.image-card-grid,
[data-blog-list].image-card-grid {
  align-items: stretch;
  grid-auto-rows: auto;
}

.image-card,
.blog-card,
.blog-card a {
  height: auto;
  min-height: 0;
}

.image-card div,
.blog-card div {
  height: auto;
}

.blog-card h3,
.blog-card p {
  min-height: 0;
}

.blog-card .read-more {
  margin-top: 1rem;
  padding-top: 0;
}

/* Phone alignment: keep headings, copy, cards and actions on one clean left edge */
@media (max-width: 767.98px) {
  .wrap,
  .nav.wrap {
    width: min(100% - 28px, 620px);
  }

  .hero-copy,
  .page-hero .wrap,
  .section-head,
  .split,
  .content-prose,
  .card,
  .image-card div,
  .testimonial-card,
  .video-copy,
  .contact-lead-panel,
  .contact-primary,
  .centre-card,
  .message-card,
  .map-card {
    text-align: left;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-subtitle,
  .hero-copy .lead,
  .hero-note,
  .page-hero .eyebrow,
  .page-hero h1,
  .page-hero .hero-subtitle,
  .page-hero .lead,
  .section-head .eyebrow,
  .section-head h2,
  .section-head > p,
  .section-head > .lead,
  .split h2,
  .content-prose h2,
  .content-prose p,
  .card h3,
  .card p,
  .image-card h3,
  .image-card p,
  .testimonial-card p,
  .video-copy h3,
  .video-copy p {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
   
  }

  .hero-copy .eyebrow,
  .page-hero .eyebrow,
  .section-head .eyebrow {
    display: inline-block;
  }

  .hero-copy .eyebrow::before,
  .page-hero .eyebrow::before,
  .section-head .eyebrow::before {
    left: 0;
    transform: none;
  }

  .hero-actions,
  .split-actions,
  .contact-actions,
  .section-head.has-action > .section-head-action {
    justify-content: flex-start;
  }

  .section-head,
  .section-head.has-action,
  body:not(.home-page) .page-hero .wrap {
    justify-items: start;
  }
}
