:root {
  --orange: #ff7a1a;
  --orange-dark: #d85a00;
  --orange-soft: #fff0e2;
  --cream: #fff8ef;
  --cream-strong: #f6e5ce;
  --charcoal: #2f333a;
  --charcoal-deep: #1d2025;
  --ink: #343840;
  --muted: #6c7179;
  --line: #e6e1da;
  --soft: #f6f7f8;
  --white: #ffffff;
  --shadow-sm: 0 10px 35px rgba(47, 51, 58, 0.08);
  --shadow-md: 0 22px 55px rgba(47, 51, 58, 0.13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  color: var(--charcoal-deep);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 em, h2 em { color: var(--orange); font-style: normal; }
p { color: var(--muted); }
button, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(255, 122, 26, 0.38); outline-offset: 3px; }

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

.section-pad { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-cream {
  background: radial-gradient(circle at 90% 0, rgba(255, 122, 26, 0.1), transparent 34%), var(--cream);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 9px;
  background: var(--charcoal-deep);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 23px;
  border: 1px solid var(--orange);
  border-radius: 11px;
  background: var(--orange);
  box-shadow: 0 9px 20px rgba(255, 122, 26, 0.19);
  color: #251408;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { background: #ff8c36; box-shadow: 0 13px 27px rgba(255, 122, 26, 0.26); transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 10px 18px; font-size: 0.82rem; }
.button--ghost { border-color: #b9b4ad; background: var(--white); box-shadow: none; color: var(--charcoal); }
.button--ghost:hover { border-color: var(--orange); background: var(--orange-soft); }
.button--light { border-color: var(--orange); background: var(--orange); color: var(--charcoal-deep); }
.text-link { display: inline-flex; margin-top: 5px; align-items: center; color: var(--orange-dark); font-weight: 800; }

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(230, 225, 218, 0.88);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 22px rgba(31, 34, 39, 0.04);
  backdrop-filter: blur(15px);
}
.header-inner { display: flex; min-height: 78px; align-items: center; gap: 28px; }
.brand { display: inline-flex; min-width: 174px; align-items: center; gap: 10px; }
.brand__symbol {
  position: relative;
  display: block;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  overflow: hidden;
  border-radius: 10px;
  background: #ead6b9;
}
.brand__symbol img { position: absolute; top: -2px; left: -2px; width: 47px; max-width: none; height: 47px; object-fit: cover; object-position: top; }
.brand__text { display: flex; flex-direction: column; color: var(--charcoal); font-size: 1.15rem; font-weight: 900; letter-spacing: 0.08em; line-height: 1; }
.accent-dot { color: var(--orange); }
.brand__text small { margin-top: 5px; color: var(--muted); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.03em; }
.desktop-nav { margin-left: auto; }
.desktop-nav > ul { display: flex; margin: 0; padding: 0; align-items: center; gap: 4px; list-style: none; }
.desktop-nav > ul > li > a, .nav-locations > summary {
  position: relative;
  display: block;
  padding: 29px 12px 27px;
  color: #4c5057;
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 750;
  line-height: 1;
  list-style: none;
}
.nav-locations > summary::-webkit-details-marker { display: none; }
.desktop-nav a::after, .nav-locations > summary::after {
  position: absolute;
  right: 12px;
  bottom: 21px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.is-active::after, .nav-locations > summary:hover::after, .nav-locations > summary.is-active::after { opacity: 1; transform: scaleX(1); }
.desktop-nav a.is-active, .nav-locations > summary.is-active { color: var(--orange-dark); }
.nav-locations { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% - 9px);
  right: 0;
  display: grid;
  width: 265px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.nav-dropdown a { position: relative; display: flex; padding: 10px 12px; border-radius: 10px; align-items: center; justify-content: space-between; }
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: var(--orange-soft); }
.nav-dropdown span { font-size: 0.86rem; font-weight: 800; }
.nav-dropdown small { color: var(--muted); font-size: 0.67rem; }
.header-cta { flex: 0 0 auto; }
.mobile-menu { display: none; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 46px;
  padding-bottom: 64px;
  background: radial-gradient(circle at 100% 7%, rgba(255, 122, 26, 0.17), transparent 28%), linear-gradient(180deg, #fffdfa 0%, #ffffff 78%);
}
.hero::after {
  position: absolute;
  z-index: 0;
  top: 42px;
  right: -32px;
  width: 165px;
  height: 165px;
  background-image: radial-gradient(var(--orange) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  content: "";
  opacity: 0.22;
}
.hero .container { position: relative; z-index: 1; }
.breadcrumbs { margin-bottom: 30px; }
.breadcrumbs ol { display: flex; margin: 0; padding: 0; align-items: center; gap: 9px; color: var(--muted); font-size: 0.76rem; list-style: none; }
.breadcrumbs li + li::before { margin-right: 9px; color: #aaa49b; content: "/"; }
.breadcrumbs a:hover { color: var(--orange-dark); }
.hero-grid { display: grid; align-items: center; gap: clamp(42px, 6vw, 82px); grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr); }
.hero-copy h1 { max-width: 650px; margin-bottom: 24px; font-size: clamp(2.55rem, 5vw, 4.65rem); letter-spacing: -0.055em; }
.hero-copy > p { max-width: 610px; margin-bottom: 28px; color: #5d626a; font-size: 1.06rem; line-height: 1.75; }
.hero-actions { display: flex; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.hero-points { display: flex; margin: 0; padding: 0; flex-wrap: wrap; gap: 9px 18px; color: #555a61; font-size: 0.75rem; font-weight: 700; list-style: none; }
.hero-points span { display: inline-flex; width: 20px; height: 20px; margin-right: 6px; border-radius: 50%; align-items: center; justify-content: center; background: var(--orange-soft); color: var(--orange-dark); }
.hero-media { position: relative; }
.hero-media > img { width: 100%; border-radius: 28px 28px 28px 7px; aspect-ratio: 3 / 2; box-shadow: var(--shadow-md); object-fit: cover; }
.hero-note { position: absolute; right: 24px; bottom: -22px; display: flex; max-width: 260px; padding: 17px 20px; border: 1px solid rgba(255, 255, 255, 0.85); border-radius: 15px; flex-direction: column; background: rgba(47, 51, 58, 0.95); box-shadow: var(--shadow-sm); color: var(--white); backdrop-filter: blur(8px); }
.hero-note strong { color: var(--orange); font-size: 0.85rem; }
.hero-note span { color: #fff; font-size: 0.78rem; }
.trust-bar { position: relative; z-index: 3; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; min-height: 78px; align-items: center; gap: 0; grid-template-columns: repeat(4, 1fr); }
.trust-grid > span { display: flex; min-height: 42px; padding: 8px 22px; border-right: 1px solid var(--line); align-items: center; justify-content: center; color: #50545b; font-size: 0.77rem; font-weight: 800; text-align: center; }
.trust-grid > span:first-child { border-left: 1px solid var(--line); }
.trust-grid b { display: inline-flex; width: 24px; height: 24px; margin-right: 8px; border-radius: 50%; align-items: center; justify-content: center; background: var(--orange-soft); color: var(--orange-dark); font-size: 0.71rem; }

/* Common sections */
.section-heading { max-width: 740px; margin: 0 auto 44px; }
.section-heading--center { text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--left { margin-right: 0; margin-left: 0; text-align: left; }
.section-heading h2 { margin-bottom: 14px; font-size: clamp(2rem, 3.4vw, 3.15rem); }
.section-heading p { max-width: 650px; margin: 0 auto; font-size: 0.99rem; }
.section-heading--left p { margin-left: 0; }
.card-grid { display: grid; gap: 18px; }
.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card { position: relative; min-height: 275px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 4px 14px rgba(47, 51, 58, 0.025); transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease; }
.service-card::after { position: absolute; top: -40px; right: -40px; width: 105px; height: 105px; border-radius: 50%; background: var(--orange-soft); content: ""; opacity: 0; transition: opacity 0.25s ease; }
.service-card:hover { border-color: #ffc89d; box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.service-card:hover::after { opacity: 0.7; }
.icon-chip { position: relative; z-index: 1; display: inline-flex; width: 49px; height: 49px; margin-bottom: 22px; border: 1px solid #ffd5b4; border-radius: 14px; align-items: center; justify-content: center; background: var(--orange-soft); color: var(--orange-dark); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.05em; }
.service-card h3 { margin-bottom: 11px; font-size: 1rem; }
.service-card p { margin-bottom: 18px; font-size: 0.8rem; line-height: 1.65; }
.service-card > a { color: var(--orange-dark); font-size: 0.76rem; font-weight: 850; }
.center-action { display: flex; margin-top: 38px; justify-content: center; }
.split-balanced { display: grid; align-items: center; gap: clamp(40px, 7vw, 90px); grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr); }
.check-grid { display: grid; gap: 25px 30px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.check-item { display: flex; gap: 13px; }
.check-item > span { display: inline-flex; width: 25px; height: 25px; flex: 0 0 25px; border-radius: 50%; align-items: center; justify-content: center; background: var(--orange-soft); color: var(--orange-dark); font-size: 0.7rem; font-weight: 900; }
.check-item h3 { margin-bottom: 5px; font-size: 0.88rem; }
.check-item p { margin: 0; font-size: 0.75rem; }
.stats-panel { display: grid; padding: 16px; border: 1px solid #f3d4b8; border-radius: var(--radius-lg); background: linear-gradient(145deg, #fff8f0, #fff); box-shadow: var(--shadow-sm); grid-template-columns: repeat(2, 1fr); }
.stats-panel > div { display: flex; min-height: 135px; padding: 22px; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.stats-panel > div:nth-child(odd) { border-right: 1px solid #efd9c5; }
.stats-panel > div:nth-child(-n + 2) { border-bottom: 1px solid #efd9c5; }
.stats-panel strong { color: var(--charcoal-deep); font-size: 2rem; letter-spacing: -0.04em; }
.stats-panel span { color: var(--muted); font-size: 0.74rem; font-weight: 700; }
.process-grid { position: relative; display: grid; margin: 15px 0 0; padding: 0; gap: 0; grid-template-columns: repeat(5, 1fr); list-style: none; }
.process-grid::before { position: absolute; top: 30px; right: 9%; left: 9%; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent); content: ""; opacity: 0.5; }
.process-grid li { position: relative; z-index: 1; padding: 0 15px; text-align: center; }
.process-number { display: inline-flex; width: 61px; height: 61px; margin-bottom: 16px; border: 1px solid #ffd0ad; border-radius: 50%; align-items: center; justify-content: center; background: var(--white); box-shadow: 0 8px 24px rgba(47, 51, 58, 0.09); color: var(--orange-dark); font-size: 0.78rem; font-weight: 900; }
.process-grid h3 { margin-bottom: 7px; font-size: 0.82rem; }
.process-grid p { margin: 0 auto; font-size: 0.7rem; line-height: 1.55; }
.locations-grid { display: grid; gap: 13px; grid-template-columns: repeat(5, 1fr); }
.locations-grid a { display: flex; min-height: 92px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; align-items: center; gap: 12px; background: var(--white); box-shadow: 0 3px 10px rgba(47, 51, 58, 0.03); transition: transform 0.2s ease, border-color 0.2s ease; }
.locations-grid a:hover { border-color: var(--orange); transform: translateY(-3px); }
.location-code { display: inline-flex; width: 43px; height: 43px; flex: 0 0 43px; border-radius: 50%; align-items: center; justify-content: center; background: var(--orange-soft); color: var(--orange-dark); font-size: 0.72rem; font-weight: 900; }
.locations-grid strong, .locations-grid small { display: block; }
.locations-grid strong { color: var(--charcoal-deep); font-size: 0.83rem; }
.locations-grid small { margin-top: 2px; color: var(--muted); font-size: 0.62rem; }
.locations-grid b { margin-left: auto; color: var(--orange-dark); }
.testimonial-grid { display: grid; gap: 19px; grid-template-columns: repeat(3, 1fr); }
.testimonial-grid figure { margin: 0; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 24px rgba(47, 51, 58, 0.05); }
.stars { margin-bottom: 14px; color: var(--orange); font-size: 0.78rem; letter-spacing: 0.18em; }
.testimonial-grid blockquote { margin: 0 0 24px; color: #53575e; font-size: 0.88rem; line-height: 1.7; }
.testimonial-grid figcaption { display: flex; flex-direction: column; }
.testimonial-grid figcaption strong { color: var(--charcoal-deep); font-size: 0.78rem; }
.testimonial-grid figcaption span { color: var(--muted); font-size: 0.67rem; }
.article-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.article-grid > article { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 5px 18px rgba(47, 51, 58, 0.04); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.article-grid > article:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.article-image { display: block; overflow: hidden; }
.article-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 0.4s ease; }
.article-grid > article:hover .article-image img { transform: scale(1.035); }
.article-body { padding: 23px; }
.article-body > span { display: inline-block; margin-bottom: 9px; color: var(--orange-dark); font-size: 0.61rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.article-body h3 { margin-bottom: 10px; font-size: 1rem; }
.article-body p { margin-bottom: 17px; font-size: 0.75rem; }
.article-body > div { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 0.67rem; }
.article-body > div a { color: var(--charcoal-deep); font-weight: 800; }

/* Story and services */
.story-grid { display: grid; margin-bottom: 40px; align-items: center; gap: clamp(40px, 6vw, 78px); grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr); }
.story-grid--reverse .story-media { order: 2; }
.story-media img { width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 8px var(--radius-lg); aspect-ratio: 4 / 3; box-shadow: var(--shadow-md); object-fit: cover; }
.story-grid p { font-size: 0.94rem; }
.pillar-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.pillar-grid article { padding: 29px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.pillar-grid article > span { color: var(--orange); font-size: 0.75rem; font-weight: 900; }
.pillar-grid h3 { margin: 15px 0 9px; font-size: 1.18rem; }
.pillar-grid p { margin: 0; font-size: 0.78rem; }
.feature-list { display: grid; gap: 66px; }
.feature-row { display: grid; align-items: center; gap: clamp(38px, 7vw, 90px); grid-template-columns: 1fr 1fr; }
.feature-row--reverse img { order: 2; }
.feature-row img { width: 100%; border-radius: 25px; aspect-ratio: 16 / 10; box-shadow: var(--shadow-sm); object-fit: cover; }
.feature-row h2 { margin-bottom: 13px; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.feature-row ul { margin: 20px 0; padding: 0; list-style: none; }
.feature-row li { margin-bottom: 8px; color: #5b6068; font-size: 0.85rem; }
.feature-row li::before { display: inline-flex; width: 19px; height: 19px; margin-right: 8px; border-radius: 50%; align-items: center; justify-content: center; background: var(--orange-soft); color: var(--orange-dark); content: "✓"; font-size: 0.61rem; font-weight: 900; }
.subject-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); }
.subject-grid span { display: flex; min-height: 64px; padding: 14px 18px; border: 1px solid var(--line); border-radius: 13px; align-items: center; background: var(--white); color: var(--charcoal-deep); font-size: 0.78rem; font-weight: 800; }
.subject-grid span::before { width: 9px; height: 9px; margin-right: 10px; border: 2px solid var(--orange); border-radius: 50%; content: ""; }
.illustration-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.illustration-panel img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.illustration-panel p { display: flex; margin: 0; padding: 24px; flex-direction: column; font-size: 0.8rem; }
.illustration-panel strong { margin-bottom: 6px; color: var(--charcoal-deep); }

/* FAQs */
.faq-list { display: grid; gap: 11px; }
.faq-list > h3 { margin-bottom: 10px; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.faq-list summary { display: flex; min-height: 62px; padding: 17px 21px; align-items: center; justify-content: space-between; color: var(--charcoal-deep); cursor: pointer; font-size: 0.84rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: inline-flex; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; align-items: center; justify-content: center; background: var(--orange-soft); color: var(--orange-dark); font-size: 1rem; transition: transform 0.2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details[open] summary { color: var(--orange-dark); }
.faq-list details > div { padding: 0 21px 18px; }
.faq-list details p { max-width: 900px; margin: 0; font-size: 0.82rem; }
.faq-search { padding: 54px 0; background: linear-gradient(135deg, #fff0e5, #fff8f1); }
.faq-search label { display: block; margin-bottom: 10px; color: var(--charcoal-deep); font-size: 0.75rem; font-weight: 850; text-align: center; }
.faq-search .container > div { position: relative; max-width: 700px; margin: 0 auto 24px; }
.faq-search .container > div span { position: absolute; top: 50%; left: 19px; color: var(--orange-dark); transform: translateY(-50%); }
.faq-search input { width: 100%; height: 58px; padding: 0 20px 0 48px; border: 1px solid #ecdaca; border-radius: 13px; background: var(--white); color: var(--ink); }
.faq-search nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.faq-search nav a { padding: 7px 12px; border: 1px solid #edd9c8; border-radius: 999px; background: rgba(255, 255, 255, 0.75); color: #5b6066; font-size: 0.68rem; font-weight: 750; }
.faq-category-grid { display: grid; gap: 15px; grid-template-columns: repeat(6, 1fr); }
.faq-category-grid a { display: flex; min-height: 180px; padding: 22px 15px; border: 1px solid var(--line); border-radius: 15px; flex-direction: column; align-items: center; justify-content: center; background: var(--white); text-align: center; }
.faq-category-grid .icon-chip { margin-bottom: 14px; }
.faq-category-grid strong { color: var(--charcoal-deep); font-size: 0.75rem; }
.faq-category-grid small { margin-top: 7px; color: var(--muted); font-size: 0.63rem; }
.faq-layout { display: grid; gap: 52px; grid-template-columns: 240px 1fr; }
.faq-layout aside { display: flex; flex-direction: column; gap: 8px; }
.faq-layout aside a { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: #585d64; font-size: 0.75rem; font-weight: 750; }
.faq-layout aside a:hover { border-color: var(--orange); color: var(--orange-dark); }
.help-panel { display: grid; padding: clamp(30px, 5vw, 60px); border: 1px solid #f0d6bf; border-radius: var(--radius-lg); align-items: center; gap: 50px; background: linear-gradient(135deg, #fff7ef, #fff0e2); grid-template-columns: 1fr 0.9fr; }
.help-panel h2 { margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3rem); }
.help-panel > div > div { display: flex; margin-top: 24px; flex-wrap: wrap; gap: 11px; }
.help-panel img { width: 100%; border-radius: 22px; aspect-ratio: 16 / 10; object-fit: cover; }

/* Blog */
.featured-article { display: grid; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-lg); align-items: center; gap: 45px; background: var(--white); box-shadow: var(--shadow-sm); grid-template-columns: 1.1fr 0.9fr; }
.featured-article > img { width: 100%; border-radius: 20px; aspect-ratio: 16 / 10; object-fit: cover; }
.featured-article > div { padding: 25px 25px 25px 0; }
.featured-article h2 { margin-bottom: 13px; font-size: clamp(1.8rem, 3.5vw, 2.85rem); }
.category-grid { display: grid; gap: 12px; grid-template-columns: repeat(5, 1fr); }
.category-grid a { display: flex; min-height: 105px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; flex-direction: column; align-items: center; justify-content: center; background: var(--white); color: var(--charcoal-deep); font-size: 0.75rem; font-weight: 800; text-align: center; }
.category-grid a span { margin-bottom: 6px; color: var(--orange-dark); font-size: 0.67rem; }
.resource-strip > div:last-child { display: grid; gap: 12px; grid-template-columns: repeat(6, 1fr); }
.resource-strip > div > a { display: flex; min-height: 118px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; flex-direction: column; justify-content: center; background: var(--white); color: var(--charcoal-deep); font-size: 0.74rem; font-weight: 800; text-align: center; }
.resource-strip a span { margin-top: 8px; color: var(--orange-dark); font-size: 0.62rem; }
.newsletter { padding: 30px 0; background: linear-gradient(90deg, #fff0e3, #fff8ef); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.newsletter-inner > div { display: flex; align-items: center; gap: 16px; }
.newsletter-inner > div > span { display: inline-flex; width: 54px; height: 54px; border-radius: 50%; align-items: center; justify-content: center; background: var(--white); color: var(--orange-dark); font-size: 1.3rem; }
.newsletter p { display: flex; margin: 0; flex-direction: column; font-size: 0.76rem; }
.newsletter p strong { color: var(--charcoal-deep); font-size: 0.92rem; }
.newsletter form { display: flex; gap: 9px; }
.newsletter input { width: min(330px, 38vw); min-height: 48px; padding: 0 16px; border: 1px solid #e7d5c4; border-radius: 10px; background: var(--white); }

/* Contact */
.contact-layout { display: grid; align-items: start; gap: 32px; grid-template-columns: minmax(0, 1fr) 335px; }
.contact-form-card { padding: clamp(25px, 5vw, 55px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-form { position: relative; display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.honeypot { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }
.contact-form label { display: flex; color: #555a62; flex-direction: column; font-size: 0.73rem; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 8px; padding: 13px 15px; border: 1px solid #dcdfe3; border-radius: 10px; background: #fcfcfd; color: var(--ink); font-size: 0.83rem; font-weight: 500; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.contact-form input, .contact-form select { min-height: 49px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.12); outline: none; }
.form-full { grid-column: 1 / -1; }
.file-label small { margin-top: 5px; color: var(--muted); font-size: 0.65rem; font-weight: 500; }
.consent { display: flex !important; flex-direction: row !important; align-items: flex-start; gap: 9px; line-height: 1.5; }
.consent input { width: 17px; min-height: 17px; margin: 3px 0 0; accent-color: var(--orange); }
.consent a { color: var(--orange-dark); text-decoration: underline; }
.contact-details { position: sticky; top: 106px; padding: 30px; border-radius: var(--radius-md); background: var(--charcoal); color: var(--white); box-shadow: var(--shadow-md); }
.contact-details .eyebrow { color: #ffad6d; }
.contact-details h2, .contact-details p { color: var(--white); }
.contact-details h2 { font-size: 1.65rem; }
.contact-details p { color: #d1d3d6; font-size: 0.78rem; }
.contact-details > a { display: flex; padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, 0.13); align-items: center; gap: 12px; }
.contact-details > a > span { display: inline-flex; width: 35px; height: 35px; flex: 0 0 35px; border-radius: 50%; align-items: center; justify-content: center; background: rgba(255, 122, 26, 0.16); color: #ffad6d; }
.contact-details a div, .hours { display: flex; flex-direction: column; }
.contact-details small, .hours small { color: #adb0b6; font-size: 0.62rem; }
.contact-details strong, .hours strong { font-size: 0.75rem; }
.hours { padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.13); }

/* Location pages */
.standard-grid { display: grid; gap: 15px; grid-template-columns: repeat(3, 1fr); }
.standard-grid article { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.standard-grid article > span { color: var(--orange); font-size: 0.7rem; font-weight: 900; }
.standard-grid h3 { margin: 13px 0 8px; font-size: 0.98rem; }
.standard-grid p { margin: 0; font-size: 0.75rem; }
.level-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); }
.level-grid article { display: flex; min-height: 145px; padding: 25px; border: 1px solid #eadfd3; border-radius: 18px; align-items: flex-start; gap: 14px; background: var(--white); }
.level-grid article > span { color: var(--orange-dark); font-size: 1.25rem; }
.level-grid h3 { margin-bottom: 7px; font-size: 0.92rem; }
.level-grid p { margin: 0; font-size: 0.7rem; }
.reference-grid { display: grid; gap: 15px; grid-template-columns: repeat(6, 1fr); }
.reference-grid article { padding: 23px 16px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); text-align: center; }
.reference-grid article > span { display: block; color: var(--orange); font-family: Georgia, serif; font-size: 2.3rem; line-height: 0.8; }
.reference-grid h3 { margin: 13px 0 8px; font-size: 0.94rem; }
.reference-grid p { margin: 0; font-size: 0.65rem; }
.faq-resource-grid { display: grid; align-items: start; gap: 42px; grid-template-columns: 1fr 1fr; }
.faq-resource-grid .article-grid { grid-template-columns: 1fr; }
.faq-resource-grid .article-grid article { display: grid; grid-template-columns: 145px 1fr; }
.faq-resource-grid .article-image img { height: 100%; aspect-ratio: auto; }
.faq-resource-grid .article-body { padding: 18px; }
.faq-resource-grid .article-body p, .faq-resource-grid .article-body > div time { display: none; }

/* CTA */
.cta-wrap { padding: 38px 0 0; }
.cta-banner { position: relative; z-index: 2; display: grid; min-height: 155px; padding: 30px 42px; overflow: hidden; border-radius: 25px 25px 0 0; align-items: center; gap: 26px; background: radial-gradient(circle at 92% 20%, rgba(255, 122, 26, 0.26), transparent 28%), var(--charcoal); color: var(--white); grid-template-columns: auto 1fr auto; }
.cta-banner::after { position: absolute; right: 24px; width: 125px; height: 125px; background-image: radial-gradient(#ff9a4c 1.3px, transparent 1.3px); background-size: 10px 10px; content: ""; opacity: 0.28; }
.cta-icon { display: inline-flex; width: 72px; height: 72px; border: 5px solid rgba(255, 255, 255, 0.12); border-radius: 50%; align-items: center; justify-content: center; background: var(--cream); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18); color: var(--orange); font-size: 1.35rem; font-weight: 900; }
.cta-banner h2, .cta-banner p { color: var(--white); }
.cta-banner h2 { margin-bottom: 7px; font-size: clamp(1.45rem, 2.8vw, 2.25rem); }
.cta-banner p { max-width: 660px; margin: 0; color: #d7d8da; font-size: 0.84rem; }
.cta-banner .button { position: relative; z-index: 1; }

/* Footer */
.site-footer { background: var(--charcoal-deep); color: #e9eaeb; }
.footer-grid { display: grid; padding-top: 66px; padding-bottom: 46px; gap: 42px; grid-template-columns: 1.45fr repeat(4, 0.72fr); }
.brand--footer { color: var(--white); }
.brand--footer .brand__text { color: var(--white); }
.brand--footer .brand__text small { color: #bfc1c4; }
.footer-intro p { max-width: 280px; margin: 18px 0; color: #b7babf; font-size: 0.75rem; }
.social-links { display: flex; gap: 8px; }
.social-links span { display: inline-flex; width: 31px; height: 31px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; align-items: center; justify-content: center; color: #ececee; font-size: 0.65rem; font-weight: 800; }
.site-footer h2 { margin: 4px 0 18px; color: #fff; font-size: 0.83rem; letter-spacing: 0; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li, .footer-contact a, .footer-contact span { display: block; margin-bottom: 7px; color: #b7babf; font-size: 0.69rem; }
.site-footer a:hover { color: #ffac6c; }
.footer-contact { min-width: 155px; }
.footer-bottom { display: grid; padding: 21px 0 28px; border-top: 1px solid rgba(255, 255, 255, 0.11); align-items: center; gap: 18px; color: #92969c; font-size: 0.62rem; grid-template-columns: auto 1fr auto; }
.footer-bottom > span:nth-child(2) { text-align: center; }
.footer-bottom nav { display: flex; gap: 14px; }

/* Legal */
.legal-hero { padding: 65px 0 75px; background: linear-gradient(135deg, var(--cream), var(--orange-soft)); }
.legal-hero h1 { margin-bottom: 12px; font-size: clamp(2.8rem, 6vw, 5.25rem); }
.legal-content { max-width: 820px; }
.legal-content .lead { margin-bottom: 45px; color: #535860; font-size: 1.08rem; }
.legal-content section { padding: 28px 0; border-top: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 10px; font-size: 1.55rem; }

/* Responsive */
@media (max-width: 1100px) {
  .desktop-nav > ul > li > a, .nav-locations > summary { padding-right: 8px; padding-left: 8px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-category-grid, .reference-grid { grid-template-columns: repeat(3, 1fr); }
  .resource-strip > div:last-child { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .section-pad { padding: 76px 0; }
  .desktop-nav, .header-cta { display: none; }
  .header-inner { justify-content: space-between; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu > summary { display: flex; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; background: var(--white); cursor: pointer; list-style: none; }
  .mobile-menu > summary::-webkit-details-marker { display: none; }
  .mobile-menu > summary span { width: 19px; height: 2px; border-radius: 999px; background: var(--charcoal); }
  .mobile-menu > nav { position: absolute; top: 54px; right: 0; width: min(330px, calc(100vw - 40px)); padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow-md); }
  .mobile-menu ul { margin: 0 0 16px; padding: 0; list-style: none; }
  .mobile-menu li > a { display: block; padding: 10px 11px; border-radius: 8px; color: #50555c; font-size: 0.82rem; font-weight: 750; }
  .mobile-menu li > a.is-active, .mobile-menu li > a:hover { background: var(--orange-soft); color: var(--orange-dark); }
  .mobile-location-links { padding: 9px 11px 11px; border-top: 1px solid var(--line); }
  .mobile-location-links > span { color: var(--muted); font-size: 0.65rem; font-weight: 850; text-transform: uppercase; }
  .mobile-location-links > div { display: flex; margin-top: 8px; flex-wrap: wrap; gap: 6px; }
  .mobile-location-links div a { padding: 5px 8px; border-radius: 6px; background: var(--soft); color: var(--charcoal-deep); font-size: 0.65rem; font-weight: 750; }
  .mobile-menu .button { width: 100%; }
  .hero-grid, .story-grid, .feature-row, .split-balanced, .featured-article, .help-panel, .contact-layout, .faq-resource-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-media { max-width: 760px; }
  .story-grid--reverse .story-media, .feature-row--reverse img { order: 0; }
  .stats-panel, .illustration-panel { max-width: 650px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process-grid::before { display: none; }
  .article-grid, .pillar-grid, .standard-grid { grid-template-columns: repeat(2, 1fr); }
  .subject-grid, .level-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-details { position: static; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-layout aside { display: none; }
  .newsletter-inner { align-items: flex-start; flex-direction: column; }
  .newsletter form, .newsletter input { width: 100%; }
  .cta-banner { grid-template-columns: auto 1fr; }
  .cta-banner .button { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-intro { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom > span:nth-child(2), .footer-bottom nav { justify-content: center; text-align: center; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section-pad { padding: 62px 0; }
  .header-inner { min-height: 70px; }
  .brand { min-width: 0; }
  .brand__symbol { width: 39px; height: 39px; flex-basis: 39px; }
  .brand__symbol img { width: 43px; height: 43px; }
  .brand__text { font-size: 1rem; }
  .hero { padding-top: 34px; padding-bottom: 52px; }
  .breadcrumbs { margin-bottom: 22px; }
  .hero-grid { gap: 38px; }
  .hero-copy h1 { margin-bottom: 18px; font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .hero-copy > p { font-size: 0.93rem; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-note { right: 12px; bottom: -18px; max-width: calc(100% - 24px); }
  .trust-grid { padding: 12px 0; grid-template-columns: repeat(2, 1fr); }
  .trust-grid > span, .trust-grid > span:first-child { min-height: 52px; padding: 8px; border: 0; justify-content: flex-start; text-align: left; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: clamp(1.85rem, 9vw, 2.65rem); }
  .service-grid, .article-grid, .pillar-grid, .standard-grid, .testimonial-grid, .locations-grid, .category-grid, .faq-category-grid, .reference-grid, .resource-strip > div:last-child { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .check-grid, .contact-form { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .stats-panel { padding: 8px; }
  .stats-panel > div { min-height: 110px; padding: 14px; }
  .stats-panel strong { font-size: 1.5rem; }
  .process-grid { padding-left: 18px; gap: 0; grid-template-columns: 1fr; }
  .process-grid::after { position: absolute; top: 25px; bottom: 25px; left: 47px; width: 1px; background: #f0b98e; content: ""; }
  .process-grid li { display: grid; min-height: 95px; padding: 5px 0; align-items: center; gap: 1px 18px; grid-template-columns: 61px 1fr; text-align: left; }
  .process-number { z-index: 1; margin: 0; grid-row: 1 / 3; }
  .process-grid h3, .process-grid p { margin: 0; text-align: left; }
  .process-grid p { max-width: none; }
  .subject-grid, .level-grid { grid-template-columns: 1fr; }
  .feature-list { gap: 46px; }
  .featured-article { gap: 20px; }
  .featured-article > div { padding: 8px 10px 16px; }
  .newsletter form { flex-direction: column; }
  .help-panel { gap: 30px; }
  .contact-form-card { padding: 24px 18px; }
  .faq-resource-grid .article-grid article { grid-template-columns: 110px 1fr; }
  .cta-wrap { padding-top: 0; }
  .cta-wrap .container { width: 100%; }
  .cta-banner { padding: 30px 20px; border-radius: 0; grid-template-columns: 1fr; text-align: center; }
  .cta-icon { margin-inline: auto; }
  .cta-banner .button { width: 100%; grid-column: auto; justify-self: stretch; }
  .footer-grid { gap: 34px 20px; }
}

/* 2026 CMS-ready visual system: crop-safe illustrations and untouched brand mark */
.site-header {
  min-height: 86px;
}

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

.brand--header {
  display: inline-flex;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  align-items: center;
  justify-content: center;
}

.brand__logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: none;
  transform: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(42px, 6vw, 86px);
}

.hero-media {
  width: 100%;
  max-width: 620px;
  padding: 14px;
  overflow: visible;
  border: 1px solid #f2dcc9;
  border-radius: 28px;
  background: linear-gradient(145deg, #fffaf5, #fff1e4);
  box-shadow: 0 24px 65px rgba(8, 46, 80, 0.13);
}

.hero-media::before {
  right: -14px;
  bottom: -14px;
  border-radius: 28px;
}

.hero-media > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 18px;
  background: #fff7ef;
  object-fit: contain;
  object-position: center;
}

.editorial-visual,
.feature-art,
.featured-visual {
  position: relative;
  display: flex;
  min-height: 270px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #f1d7c0;
  border-radius: 22px;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 122, 26, 0.22) 0 9%, transparent 9.5%),
    radial-gradient(circle at 30% 40%, rgba(8, 46, 80, 0.11) 0 16%, transparent 16.5%),
    linear-gradient(135deg, #fff9f3, #fff0e2);
  color: var(--charcoal-deep);
  box-shadow: var(--shadow-sm);
}

.editorial-visual::before,
.feature-art::before,
.featured-visual::before {
  position: absolute;
  top: 28px;
  right: 30px;
  width: 122px;
  height: 88px;
  border: 2px solid rgba(8, 46, 80, 0.14);
  border-radius: 16px;
  background: repeating-linear-gradient(180deg, transparent 0 13px, rgba(8, 46, 80, 0.1) 14px 16px);
  content: "";
  transform: rotate(4deg);
}

.editorial-visual::after,
.feature-art::after,
.featured-visual::after {
  position: absolute;
  top: 72px;
  left: 54px;
  width: 78px;
  height: 78px;
  border: 18px solid rgba(255, 122, 26, 0.18);
  border-radius: 50%;
  content: "";
}

.editorial-visual > span,
.feature-art > span,
.featured-visual > span {
  position: relative;
  z-index: 1;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.editorial-visual > i,
.feature-art > i,
.featured-visual > i {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 4px;
  margin: 12px 0 10px;
  border-radius: 999px;
  background: var(--orange);
}

.editorial-visual > b,
.feature-art > b,
.featured-visual > b {
  position: relative;
  z-index: 1;
  max-width: 290px;
  font-size: 1.05rem;
}

.feature-row--reverse .feature-art {
  order: 2;
}

.feature-art--2,
.feature-art--4 {
  background:
    radial-gradient(circle at 23% 25%, rgba(255, 122, 26, 0.2) 0 10%, transparent 10.5%),
    radial-gradient(circle at 78% 58%, rgba(8, 46, 80, 0.12) 0 17%, transparent 17.5%),
    linear-gradient(145deg, #fff3e8, #fffaf5);
}

.illustration-panel--ethical .editorial-visual {
  min-height: 235px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.featured-article {
  grid-template-columns: 1.05fr 0.95fr;
}

.featured-visual {
  min-height: 300px;
}

.article-visual {
  position: relative;
  display: flex;
  min-height: 158px;
  padding: 22px;
  align-items: flex-end;
  justify-content: space-between;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 122, 26, 0.2) 0 12%, transparent 12.5%),
    linear-gradient(145deg, #fff8f1, #f7f9fb);
}

.article-visual::before {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 74px;
  height: 88px;
  border: 2px solid rgba(8, 46, 80, 0.17);
  border-radius: 10px;
  background: repeating-linear-gradient(180deg, transparent 0 12px, rgba(8, 46, 80, 0.09) 13px 15px);
  content: "";
  transform: rotate(5deg);
}

.article-visual span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: var(--charcoal-deep);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}

.article-visual i {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 42px;
  }
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 650px;
  }

  .hero-media > img {
    height: auto;
  }
}

@media (max-width: 640px) {
  .site-header,
  .header-inner {
    min-height: 72px;
  }

  .brand--header {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .brand__logo {
    width: 58px;
    height: 58px;
  }

  .hero-media {
    padding: 8px;
    border-radius: 18px;
  }

  .hero-media > img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 12px;
  }

  .editorial-visual,
  .feature-art,
  .featured-visual {
    min-height: 220px;
    padding: 24px;
  }

  .article-grid > article {
    grid-template-columns: 116px 1fr;
  }

  .article-visual {
    min-height: 145px;
    padding: 13px;
  }

  .article-visual::before {
    top: 18px;
    right: 15px;
    width: 54px;
    height: 68px;
  }
}

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

/* Visual refinement: compact editorial proportions based on the supplied layouts */
:root {
  --charcoal: #17364e;
  --charcoal-deep: #0a2d4a;
  --ink: #293742;
  --muted: #65717a;
  --soft: #f7f8f9;
  --line: #e4e7e9;
  --shadow-sm: 0 8px 24px rgba(10, 45, 74, 0.08);
  --shadow-md: 0 18px 42px rgba(10, 45, 74, 0.13);
}

body {
  font-size: 15px;
}

.container {
  width: min(1160px, calc(100% - 40px));
}

.section-pad {
  padding: 66px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 35%),
    #f6f7f8;
}

.section-cream {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 122, 26, 0.11), transparent 24%),
    #fff9f2;
}

.button {
  min-height: 43px;
  padding: 10px 20px;
  border-color: var(--charcoal-deep);
  border-radius: 8px;
  background: var(--charcoal-deep);
  box-shadow: 0 8px 18px rgba(10, 45, 74, 0.16);
  color: #fff;
  font-size: 0.82rem;
}

.button:hover {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(255, 122, 26, 0.2);
  color: #1f2c36;
}

.button--small {
  min-height: 39px;
  padding: 9px 17px;
  font-size: 0.75rem;
}

.button--ghost {
  border-color: #aeb7be;
  background: #fff;
  box-shadow: none;
  color: var(--charcoal-deep);
}

.button--ghost:hover {
  border-color: var(--orange);
  background: var(--orange-soft);
}

.button--light,
.contact-form > .button {
  border-color: var(--orange);
  background: var(--orange);
  color: #1b2d3b;
}

.eyebrow {
  margin-bottom: 11px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

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

.brand {
  min-width: 164px;
}

.brand__symbol {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  border-radius: 9px;
}

.brand__symbol img {
  width: 42px;
  height: 42px;
}

.brand__text {
  font-size: 1.02rem;
}

.desktop-nav > ul > li > a,
.nav-locations > summary {
  padding-top: 25px;
  padding-bottom: 23px;
  font-size: 0.73rem;
}

.desktop-nav a::after,
.nav-locations > summary::after {
  bottom: 17px;
}

.hero {
  padding-top: 34px;
  padding-bottom: 46px;
  background:
    radial-gradient(circle at 100% 4%, rgba(255, 122, 26, 0.13), transparent 25%),
    linear-gradient(180deg, #fffdfa, #fff 78%);
}

.hero::after {
  width: 130px;
  height: 130px;
  background-size: 11px 11px;
}

.breadcrumbs {
  margin-bottom: 22px;
}

.hero-grid {
  gap: clamp(38px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.94fr) minmax(450px, 1.06fr);
}

.hero-copy h1 {
  max-width: 560px;
  margin-bottom: 17px;
  font-size: clamp(2.35rem, 4.1vw, 3.35rem);
  letter-spacing: -0.045em;
}

.hero-copy > p {
  max-width: 540px;
  margin-bottom: 21px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.hero-actions {
  margin-bottom: 21px;
}

.hero-points {
  gap: 8px 14px;
  font-size: 0.68rem;
}

.hero-media {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.hero-media::before {
  position: absolute;
  z-index: -1;
  right: -9px;
  bottom: -9px;
  width: 70%;
  height: 72%;
  border-radius: 18px;
  background: var(--orange-soft);
  content: "";
}

.hero-media > img {
  width: 100%;
  height: clamp(285px, 31vw, 355px);
  border-radius: 18px 18px 18px 5px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  right: 16px;
  bottom: -14px;
  max-width: 225px;
  padding: 12px 15px;
  border-radius: 10px;
}

.hero-note strong {
  font-size: 0.75rem;
}

.hero-note span {
  font-size: 0.68rem;
}

.trust-grid {
  min-height: 62px;
}

.trust-grid > span {
  min-height: 34px;
  padding: 6px 16px;
  font-size: 0.7rem;
}

.trust-grid b {
  width: 21px;
  height: 21px;
  font-size: 0.62rem;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.section-heading p {
  font-size: 0.84rem;
}

.service-grid--compact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-card {
  min-height: 228px;
  padding: 21px;
  border-radius: 13px;
}

.service-grid--compact .service-card {
  min-height: 215px;
  padding: 18px 16px;
  text-align: center;
}

.icon-chip {
  width: 43px;
  height: 43px;
  margin-bottom: 16px;
  border-radius: 12px;
  font-size: 0.65rem;
}

.service-grid--compact .icon-chip {
  margin-inline: auto;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.service-card p {
  margin-bottom: 13px;
  font-size: 0.7rem;
  line-height: 1.55;
}

.service-card > a {
  font-size: 0.68rem;
}

.center-action {
  margin-top: 28px;
}

.split-balanced {
  gap: clamp(35px, 5vw, 68px);
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
}

.check-grid {
  gap: 18px 25px;
}

.check-item h3 {
  font-size: 0.8rem;
}

.check-item p {
  font-size: 0.68rem;
}

.stats-panel {
  max-width: 480px;
  justify-self: end;
  padding: 11px;
  border-radius: 20px;
}

.stats-panel > div {
  min-height: 105px;
  padding: 15px;
}

.stats-panel strong {
  font-size: 1.65rem;
}

.stats-panel span {
  font-size: 0.66rem;
}

.process-number {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
}

.process-grid::before {
  top: 26px;
}

.process-grid h3 {
  font-size: 0.76rem;
}

.process-grid p {
  max-width: 150px;
  font-size: 0.64rem;
}

.locations-grid a {
  min-height: 76px;
  padding: 12px;
  border-radius: 11px;
}

.location-code {
  width: 37px;
  height: 37px;
  flex-basis: 37px;
  font-size: 0.65rem;
}

.testimonial-grid figure {
  padding: 23px;
  border-radius: 14px;
}

.testimonial-grid blockquote {
  margin-bottom: 17px;
  font-size: 0.78rem;
}

.article-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.article-grid {
  gap: 16px;
}

.article-grid > article {
  border-radius: 13px;
}

.article-image img {
  height: 158px;
  aspect-ratio: auto;
}

.article-body {
  padding: 18px;
}

.article-body h3 {
  font-size: 0.88rem;
}

.article-body p {
  font-size: 0.68rem;
}

.story-grid {
  gap: clamp(35px, 5vw, 62px);
}

.story-media {
  max-width: 520px;
}

.story-media img {
  height: 310px;
  border-radius: 18px 18px 6px 18px;
  aspect-ratio: auto;
}

.story-grid p {
  font-size: 0.82rem;
}

.pillar-grid article {
  padding: 22px;
  border-radius: 14px;
}

.feature-list {
  gap: 44px;
}

.feature-row {
  gap: clamp(34px, 5vw, 66px);
}

.feature-row img {
  width: 100%;
  height: 270px;
  border-radius: 16px;
  aspect-ratio: auto;
}

.feature-row h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
}

.feature-row p,
.feature-row li {
  font-size: 0.75rem;
}

.subject-grid span {
  min-height: 52px;
  padding: 11px 15px;
  border-radius: 9px;
  font-size: 0.72rem;
}

.illustration-panel {
  max-width: 490px;
  justify-self: end;
  border-radius: 18px;
}

.illustration-panel img {
  height: 245px;
  aspect-ratio: auto;
}

.featured-article {
  max-width: 1060px;
  margin-inline: auto;
  padding: 12px;
  gap: 35px;
  border-radius: 19px;
}

.featured-article > img {
  height: 270px;
  border-radius: 13px;
  aspect-ratio: auto;
}

.featured-article h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.faq-category-grid a {
  min-height: 145px;
  padding: 18px 12px;
}

.faq-list summary {
  min-height: 54px;
  padding: 14px 18px;
  font-size: 0.76rem;
}

.faq-list details > div {
  padding: 0 18px 15px;
}

.help-panel {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 20px;
}

.help-panel img {
  height: 245px;
  border-radius: 15px;
  aspect-ratio: auto;
}

.contact-form-card {
  padding: clamp(25px, 4vw, 42px);
  border-radius: 20px;
}

.standard-grid article {
  padding: 21px;
}

.level-grid article {
  min-height: 120px;
  padding: 20px;
}

.reference-grid article {
  padding: 19px 13px;
}

.cta-wrap {
  padding-top: 26px;
}

.cta-banner {
  min-height: 128px;
  padding: 24px 34px;
  border-radius: 18px 18px 0 0;
}

.cta-icon {
  width: 58px;
  height: 58px;
  font-size: 1.1rem;
}

.cta-banner h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
}

.cta-banner p {
  font-size: 0.74rem;
}

.footer-grid {
  padding-top: 48px;
  padding-bottom: 34px;
}

.legal-hero {
  padding: 50px 0 58px;
}

.legal-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
}

@media (max-width: 1100px) {
  .service-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  }
}

@media (max-width: 920px) {
  .section-pad {
    padding: 58px 0;
  }

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

  .hero-copy {
    max-width: 680px;
  }

  .hero-media {
    max-width: 650px;
    justify-self: start;
  }

  .hero-media > img {
    height: 330px;
  }

  .stats-panel,
  .illustration-panel {
    justify-self: start;
  }

  .feature-row img {
    height: 300px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding: 48px 0;
  }

  .hero {
    padding-top: 27px;
    padding-bottom: 36px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10.5vw, 2.75rem);
  }

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

  .hero-actions,
  .hero-actions .button {
    width: auto;
  }

  .hero-media {
    width: 100%;
  }

  .hero-media > img {
    height: 220px;
    border-radius: 13px 13px 13px 4px;
  }

  .hero-note {
    right: 9px;
    bottom: -10px;
  }

  .trust-grid {
    min-height: auto;
  }

  .section-heading h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

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

  .service-card,
  .service-grid--compact .service-card {
    min-height: 0;
    padding: 17px 14px;
  }

  .service-card p {
    display: none;
  }

  .service-card h3 {
    min-height: 35px;
  }

  .icon-chip {
    margin-bottom: 11px;
  }

  .stats-panel {
    width: 100%;
  }

  .story-media img,
  .feature-row img,
  .illustration-panel img,
  .featured-article > img,
  .help-panel img {
    height: 220px;
  }

  .article-grid--four,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-grid > article {
    display: grid;
    grid-template-columns: 120px 1fr;
  }

  .article-image img {
    height: 100%;
    min-height: 145px;
  }

  .article-body {
    padding: 15px;
  }

  .article-body p,
  .article-body time {
    display: none;
  }

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

  .process-grid::after {
    left: 42px;
  }

  .process-grid li {
    grid-template-columns: 52px 1fr;
  }

  .cta-banner {
    min-height: 0;
    padding: 26px 20px;
  }
}

/* Final crop-safe asset overrides */
.site-header,
.header-inner {
  min-height: 86px;
}

.brand.brand--header {
  display: inline-flex;
  width: 76px;
  min-width: 76px;
  height: 76px;
  flex: 0 0 76px;
  align-items: center;
  justify-content: center;
}

.brand--header .brand__logo {
  display: block;
  width: 72px;
  max-width: 72px;
  height: 72px;
  object-fit: contain;
  filter: none;
  transform: none;
  animation: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(42px, 6vw, 86px);
}

.hero-media {
  width: 100%;
  max-width: 620px;
  height: auto;
  padding: 14px;
  overflow: visible;
  border: 1px solid #f2dcc9;
  border-radius: 28px;
  background: linear-gradient(145deg, #fffaf5, #fff1e4);
  box-shadow: 0 24px 65px rgba(8, 46, 80, 0.13);
}

.hero-media > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 18px;
  background: #fff7ef;
  object-fit: contain;
  object-position: center;
}

.article-image.article-visual {
  display: flex;
  min-height: 158px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 42px;
  }
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 650px;
  }

  .hero-media > img {
    height: auto;
  }
}

@media (max-width: 640px) {
  .site-header,
  .header-inner {
    min-height: 72px;
  }

  .brand.brand--header {
    width: 62px;
    min-width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .brand--header .brand__logo {
    width: 58px;
    max-width: 58px;
    height: 58px;
  }

  .hero-media {
    width: 100%;
    height: auto;
    padding: 8px;
    border-radius: 18px;
  }

  .hero-media > img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 12px;
  }

  .article-image.article-visual {
    min-height: 145px;
  }
}

/* Readability and content-detail enhancements */
html { font-size: 17px; }
body { font-size: 1rem; line-height: 1.7; }
.desktop-nav > ul > li > a,
.nav-locations > summary { font-size: 0.84rem; }
.button { font-size: 0.96rem; }
.button--small { font-size: 0.86rem; }
.eyebrow { font-size: 0.79rem; }
.hero-copy > p { font-size: 1.08rem; }
.hero-points,
.trust-grid > span { font-size: 0.81rem; }
.section-heading p { font-size: 1.02rem; }
.service-card h3 { font-size: 1.05rem; }
.service-card p { font-size: 0.86rem; }
.service-card > a { font-size: 0.82rem; }
.check-item h3 { font-size: 0.94rem; }
.check-item p { font-size: 0.81rem; }
.process-grid h3 { font-size: 0.88rem; }
.process-grid p { font-size: 0.76rem; }
.locations-grid strong { font-size: 0.89rem; }
.locations-grid small { font-size: 0.7rem; }
.testimonial-grid blockquote { font-size: 0.94rem; }
.testimonial-grid figcaption strong { font-size: 0.84rem; }
.testimonial-grid figcaption span { font-size: 0.73rem; }
.article-body > span { font-size: 0.68rem; }
.article-body h3 { font-size: 1.06rem; }
.article-body p { font-size: 0.82rem; }
.article-body > div { font-size: 0.74rem; }
.pillar-grid p,
.standard-grid p,
.faq-list details p,
.contact-details p { font-size: 0.84rem; }
.subject-grid span,
.faq-list summary { font-size: 0.88rem; }
.site-footer h2 { font-size: 0.9rem; }
.footer-intro p { font-size: 0.82rem; }
.site-footer li,
.footer-contact a,
.footer-contact span { font-size: 0.77rem; }
.footer-bottom { font-size: 0.7rem; }

.brand.brand--footer {
  width: 104px;
  min-width: 104px;
  height: 104px;
  align-items: center;
  justify-content: center;
}
.brand__footer-logo {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: none;
  transform: none;
  animation: none;
}

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: inline-flex;
  min-height: 52px;
  padding: 7px 16px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  background: #1f9d55;
  box-shadow: 0 13px 32px rgba(18, 91, 51, 0.3);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
}
.whatsapp-float:hover { background: #178448; transform: translateY(-2px); }
.whatsapp-float > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #178448;
  font-size: 0.72rem;
  font-weight: 950;
}

/* Service detail pages */
.detail-hero {
  position: relative;
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 70px;
  background: radial-gradient(circle at 95% 8%, rgba(255, 122, 26, 0.19), transparent 30%), linear-gradient(180deg, #fffaf4, #fff 85%);
}
.detail-hero::after {
  position: absolute;
  top: 55px;
  right: -20px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(var(--orange) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  content: "";
  opacity: 0.2;
}
.detail-hero .container { position: relative; z-index: 1; }
.detail-hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(46px, 8vw, 100px);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
}
.detail-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.4vw, 4.75rem);
  letter-spacing: -0.055em;
}
.detail-hero-copy > p {
  max-width: 690px;
  margin-bottom: 28px;
  color: #565c64;
  font-size: 1.1rem;
}
.detail-visual {
  position: relative;
  min-height: 370px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid #f0d2b8;
  border-radius: 30px 30px 8px 30px;
  background: linear-gradient(145deg, #fff, #fff0e2);
  box-shadow: var(--shadow-md);
}
.detail-visual::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 180px;
  height: 180px;
  border: 34px solid rgba(255, 122, 26, 0.1);
  border-radius: 50%;
  content: "";
}
.detail-visual__mark {
  display: inline-flex;
  width: 82px;
  height: 82px;
  margin-bottom: 27px;
  border: 1px solid #ffc595;
  border-radius: 24px;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(255, 122, 26, 0.23);
  color: #281505;
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: 0.06em;
}
.detail-visual > p { margin-bottom: 12px; color: var(--charcoal-deep); font-size: 0.8rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; }
.detail-visual ul { position: relative; z-index: 1; margin: 0 0 24px; padding: 0; list-style: none; }
.detail-visual li { display: flex; margin: 10px 0; align-items: center; gap: 9px; color: var(--charcoal-deep); font-size: 0.95rem; font-weight: 750; }
.detail-visual li span,
.detail-checklist li > span,
.takeaway-card li > span { display: inline-flex; width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%; align-items: center; justify-content: center; background: var(--orange-soft); color: var(--orange-dark); font-size: 0.68rem; font-weight: 900; }
.detail-visual small { color: var(--muted); font-size: 0.72rem; font-weight: 750; }
.detail-includes article { min-height: 230px; }
.detail-split { display: grid; align-items: center; gap: clamp(40px, 8vw, 100px); grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr); }
.detail-lead { max-width: 680px; font-size: 1.02rem; }
.detail-checklist { display: grid; margin: 28px 0 0; padding: 0; gap: 12px; grid-template-columns: repeat(2, 1fr); list-style: none; }
.detail-checklist li { display: flex; align-items: center; gap: 10px; color: var(--charcoal-deep); font-size: 0.9rem; font-weight: 750; }
.ethics-card {
  padding: clamp(30px, 5vw, 48px);
  border-radius: 28px 28px 8px 28px;
  background: radial-gradient(circle at 95% 5%, rgba(255, 122, 26, 0.24), transparent 35%), var(--charcoal-deep);
  box-shadow: var(--shadow-md);
  color: #fff;
}
.ethics-card > span { display: inline-flex; width: 50px; height: 50px; margin-bottom: 22px; border-radius: 15px; align-items: center; justify-content: center; background: var(--orange); color: #261306; font-weight: 950; }
.ethics-card h2 { color: #fff; font-size: 1.75rem; }
.ethics-card p { color: #d4d7da; font-size: 0.9rem; }
.ethics-card a { color: #ffae70; font-size: 0.82rem; font-weight: 850; }
.related-link-list { display: grid; gap: 12px; }
.related-link-list > a { display: grid; min-height: 112px; padding: 17px; border: 1px solid var(--line); border-radius: 15px; align-items: center; gap: 14px; background: #fff; grid-template-columns: auto 1fr auto; }
.related-link-list .icon-chip { margin: 0; }
.related-link-list strong,
.related-link-list small { display: block; }
.related-link-list strong { margin-bottom: 5px; color: var(--charcoal-deep); font-size: 0.9rem; }
.related-link-list small { color: var(--muted); font-size: 0.75rem; line-height: 1.5; }
.related-link-list b { color: var(--orange-dark); }

/* Long-form guide pages */
.article-hero {
  padding-top: 48px;
  padding-bottom: 76px;
  background: radial-gradient(circle at 82% 10%, rgba(255, 122, 26, 0.16), transparent 28%), linear-gradient(135deg, #fff8ef, #fff);
}
.article-hero-grid { display: grid; align-items: end; gap: clamp(45px, 8vw, 100px); grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr); }
.article-hero h1 { max-width: 880px; margin-bottom: 24px; font-size: clamp(2.65rem, 5.8vw, 5rem); letter-spacing: -0.055em; }
.article-hero-grid > div > p { max-width: 760px; margin-bottom: 24px; color: #555b63; font-size: 1.12rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--muted); font-size: 0.78rem; font-weight: 750; }
.article-meta > * + *::before { margin-right: 22px; color: var(--orange); content: "•"; }
.article-summary-card { padding: 30px; border: 1px solid #f0d2b8; border-radius: 24px 24px 6px 24px; background: #fff; box-shadow: var(--shadow-sm); }
.article-summary-card > span { display: block; margin-bottom: 11px; color: var(--orange-dark); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.article-summary-card strong { display: block; margin-bottom: 10px; color: var(--charcoal-deep); font-size: 1.22rem; }
.article-summary-card p { font-size: 0.86rem; }
.article-summary-card a { color: var(--orange-dark); font-size: 0.83rem; font-weight: 850; }
.article-layout { display: grid; align-items: start; gap: clamp(45px, 7vw, 90px); grid-template-columns: 260px minmax(0, 760px); justify-content: center; }
.article-toc { position: sticky; top: 115px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--soft); }
.article-toc > strong { color: var(--charcoal-deep); font-size: 0.95rem; }
.article-toc ol { margin: 18px 0 24px; padding-left: 20px; color: var(--orange-dark); }
.article-toc li { margin: 0 0 11px; padding-left: 4px; }
.article-toc li a { color: #555b63; font-size: 0.76rem; font-weight: 700; line-height: 1.45; }
.article-toc li a:hover { color: var(--orange-dark); }
.guide-content { min-width: 0; }
.guide-lead { margin-bottom: 48px; padding: 24px 28px; border-left: 4px solid var(--orange); border-radius: 0 14px 14px 0; background: var(--cream); color: var(--charcoal); font-size: 1.05rem; }
.guide-content > section { padding: 0 0 45px; scroll-margin-top: 115px; }
.guide-content > section + section { padding-top: 42px; border-top: 1px solid var(--line); }
.guide-content > section > span { display: inline-flex; margin-bottom: 13px; color: var(--orange-dark); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.1em; }
.guide-content h2 { margin-bottom: 19px; font-size: clamp(1.65rem, 3vw, 2.3rem); }
.guide-content p { color: #535960; font-size: 1rem; line-height: 1.85; }
.guide-content ul { margin: 24px 0 0; padding: 20px 22px 20px 42px; border-radius: 14px; background: var(--soft); }
.guide-content li { margin: 8px 0; padding-left: 4px; color: #50565d; font-size: 0.91rem; }
.guide-content li::marker { color: var(--orange); }
.takeaway-card { padding: 30px; border: 1px solid #f0d2b8; border-radius: 22px; background: linear-gradient(145deg, #fffaf5, #fff0e2); }
.takeaway-card h2 { font-size: 1.65rem; }
.takeaway-card ul { margin: 0; padding: 0; background: transparent; list-style: none; }
.takeaway-card li { display: flex; padding: 6px 0; align-items: center; gap: 10px; }

@media (max-width: 920px) {
  .detail-hero-grid,
  .detail-split,
  .article-hero-grid,
  .article-layout { grid-template-columns: 1fr; }
  .detail-visual { width: min(100%, 620px); min-height: 0; }
  .article-summary-card { max-width: 560px; }
  .article-toc { position: static; }
  .article-toc ol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 22px; }
}

@media (max-width: 640px) {
  html { font-size: 16px; }
  body { font-size: 1rem; }
  .detail-hero,
  .article-hero { padding-top: 28px; padding-bottom: 48px; }
  .detail-hero-copy h1,
  .article-hero h1 { font-size: clamp(2.15rem, 10vw, 3.1rem); }
  .detail-hero-copy > p,
  .article-hero-grid > div > p { font-size: 1rem; }
  .detail-visual { padding: 26px; border-radius: 22px 22px 6px 22px; }
  .detail-visual__mark { width: 64px; height: 64px; margin-bottom: 20px; border-radius: 18px; }
  .detail-checklist,
  .article-toc ol { grid-template-columns: 1fr; }
  .detail-includes article { min-height: 0; }
  .article-summary-card { padding: 24px; }
  .article-layout { gap: 35px; }
  .article-toc { padding: 20px; }
  .guide-lead { margin-bottom: 35px; padding: 19px 21px; }
  .guide-content > section { padding-bottom: 34px; }
  .guide-content > section + section { padding-top: 32px; }
  .guide-content p { font-size: 0.98rem; line-height: 1.75; }
  .service-card p { display: block; font-size: 0.82rem; }
  .article-body p { display: block; font-size: 0.8rem; }
  .article-body time { display: none; }
  .whatsapp-float { right: 13px; bottom: max(13px, env(safe-area-inset-bottom)); width: 52px; padding: 6px; }
  .whatsapp-float b { display: none; }
  .whatsapp-float > span { width: 38px; height: 38px; margin: auto; }
  .brand.brand--footer { width: 88px; min-width: 88px; height: 88px; }
  .brand__footer-logo { width: 86px; height: 86px; }
}

/* Semantic icon system and visual homepage refinements */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.theme-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
}

.icon-chip .theme-icon { width: 25px; height: 25px; }
.detail-visual__mark .theme-icon { width: 38px; height: 38px; }
.ethics-card > span .theme-icon { width: 28px; height: 28px; }
.social-links .theme-icon { width: 15px; height: 15px; }
.contact-details .theme-icon { width: 18px; height: 18px; }

.social-links span {
  color: #fff;
}

.contact-details > a > span {
  color: #ffad6d;
}

.location-code {
  border: 1px solid #ffd8b9;
  background: #fffaf5;
  line-height: 1;
}

.country-flag {
  display: block;
  width: 29px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(8, 46, 80, 0.2);
  object-fit: cover;
}

.editorial-flag {
  padding: 8px !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: none !important;
}

.editorial-flag img {
  display: block;
  width: 48px;
  height: 29px;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(8, 46, 80, 0.2);
  object-fit: cover;
}

.article-visual > .theme-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  color: var(--orange-dark);
}

.service-grid--visual {
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid--visual .service-card {
  min-height: 0;
  padding: 0 24px 26px;
  border-radius: 20px;
  text-align: left;
}

.service-card__image {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 -24px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  color: inherit;
  aspect-ratio: 4 / 3;
}

.service-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-grid--visual .service-card:hover .service-card__image img {
  transform: scale(1.025);
}

.service-grid--visual .icon-chip {
  width: 54px;
  height: 54px;
  margin: -27px 0 17px;
  border: 1px solid #ffd3b2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(57, 40, 25, 0.12);
}

.service-grid--visual .service-card h3 {
  min-height: 0;
  font-size: 1.08rem;
}

.service-grid--visual .service-card p {
  display: block;
  min-height: 4.15em;
  font-size: 0.84rem;
  line-height: 1.65;
}

.service-grid--visual .service-card > a:last-child {
  font-size: 0.82rem;
}

.home-why-grid {
  display: grid;
  align-items: center;
  gap: clamp(38px, 6vw, 72px);
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
}

.home-why-media {
  position: relative;
  width: min(100%, 430px);
  max-width: 430px;
  margin: 0;
  justify-self: start;
}

.home-why-media::before {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: 0;
  width: 125px;
  height: 125px;
  border-radius: 26px 8px 26px 8px;
  background: var(--orange-soft);
  content: "";
}

.home-why-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 323px;
  border: 1px solid #efd5bf;
  border-radius: 25px 25px 8px 25px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.home-why-media figcaption {
  position: absolute;
  right: -18px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  max-width: 280px;
  padding: 16px 19px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px 14px 4px 14px;
  flex-direction: column;
  background: var(--charcoal-deep);
  box-shadow: var(--shadow-sm);
  color: #fff;
}

.home-why-media figcaption strong {
  color: #ff9b50;
  font-size: 0.86rem;
}

.home-why-media figcaption span {
  margin-top: 3px;
  color: #e3e5e7;
  font-size: 0.72rem;
}

.home-why-copy .section-heading {
  margin-bottom: 20px;
}

.home-why-intro {
  margin-bottom: 29px;
  color: #555b62;
  font-size: 0.95rem;
  line-height: 1.8;
}

.home-why-copy .check-grid {
  gap: 18px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-why-copy .check-item p {
  font-size: 0.75rem;
}

.home-why-stats {
  margin-top: 48px;
}

.home-why-stats .stats-panel {
  width: 100%;
  max-width: none;
  padding: 10px;
  justify-self: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-why-stats .stats-panel > div {
  min-height: 108px;
  border-right: 1px solid #efd9c5;
  border-bottom: 0;
}

.home-why-stats .stats-panel > div:last-child {
  border-right: 0;
}

.cta-icon {
  padding: 5px;
  overflow: hidden;
  background: #fff;
}

.cta-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.whatsapp-float {
  width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
  gap: 0;
}

.whatsapp-float > .theme-icon {
  width: 30px;
  height: 30px;
  color: #fff;
}

@media (max-width: 920px) {
  .service-grid--visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-why-grid {
    grid-template-columns: 1fr;
  }

  .home-why-media {
    width: min(100%, 440px);
    max-width: 440px;
    justify-self: center;
  }

  .home-why-stats .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-why-stats .stats-panel > div:nth-child(2) {
    border-right: 0;
  }

  .home-why-stats .stats-panel > div:nth-child(-n + 2) {
    border-bottom: 1px solid #efd9c5;
  }
}

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

  .service-grid--visual .service-card {
    padding: 0 20px 23px;
  }

  .service-card__image {
    margin-inline: -20px;
  }

  .service-grid--visual .service-card p {
    min-height: 0;
    font-size: 0.86rem;
  }

  .home-why-media::before {
    top: -10px;
    left: -10px;
  }

  .home-why-media {
    width: min(100%, 410px);
  }

  .home-why-media figcaption {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .home-why-copy .check-grid {
    grid-template-columns: 1fr;
  }

  .home-why-stats {
    margin-top: 34px;
  }

  .home-why-stats .stats-panel strong {
    font-size: 1.4rem;
  }

  .whatsapp-float {
    right: 13px;
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
  }

  .whatsapp-float > .theme-icon {
    width: 28px;
    height: 28px;
    margin: auto;
  }
}

/* Final readability and CMS media enhancements. */
html {
  font-size: 18px;
}

body {
  font-size: 1rem;
  line-height: 1.72;
}

.article-visual--image {
  padding: 0;
  overflow: hidden;
  background: var(--cream);
}

.article-visual--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-media {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 18px 52px rgba(8, 46, 80, 0.12);
}

.article-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.social-links a {
  display: inline-flex;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #ececee;
}

.social-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

@media (max-width: 640px) {
  html {
    font-size: 17px;
  }

  .article-hero-media,
  .article-hero-media img {
    min-height: 230px;
  }
}

/* Reference-matched homepage layout. Scoped so every other page stays intact. */
.page-home .hero {
  padding-top: 48px;
  padding-bottom: 56px;
  background: radial-gradient(circle at 98% 10%, rgba(255, 122, 26, 0.14), transparent 27%), linear-gradient(180deg, #fffaf5 0%, #fff 86%);
}

.page-home .hero-grid {
  gap: clamp(42px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.page-home .hero-copy h1 {
  max-width: 570px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 4.15vw, 3.85rem);
  line-height: 1.06;
}

.page-home .hero-copy > p {
  max-width: 550px;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
}

.page-home .hero-actions {
  margin-bottom: 25px;
}

.page-home .hero-points {
  display: grid;
  max-width: 610px;
  gap: 9px 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-size: 0.77rem;
}

.page-home .hero-points li {
  display: flex;
  align-items: center;
}

.page-home .hero-media > img {
  border-radius: 24px 24px 24px 8px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .hero-note {
  right: 18px;
  bottom: -16px;
}

.page-home > .trust-bar,
.page-home main + .trust-bar {
  display: none;
}

.page-home .hero + .trust-bar {
  display: none;
}

.home-reference-section {
  padding: 66px 0;
}

.home-reference-section .section-heading {
  margin-bottom: 32px;
}

.home-reference-section .section-heading h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
}

.home-reference-section .section-heading p {
  font-size: 0.94rem;
}

.home-service-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.home-service-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(29, 32, 37, 0.035);
}

.home-service-grid article > a {
  display: flex;
  min-height: 232px;
  padding: 22px 13px 18px;
  border-radius: inherit;
  align-items: center;
  flex-direction: column;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-service-grid article > a:hover {
  box-shadow: 0 12px 32px rgba(29, 32, 37, 0.08);
  transform: translateY(-3px);
}

.home-service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  border: 1px solid #ffd5b4;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.home-service-icon .theme-icon {
  width: 27px;
  height: 27px;
}

.home-service-grid h3 {
  margin-bottom: 9px;
  font-size: 0.87rem;
  line-height: 1.25;
}

.home-service-grid p {
  margin: 0;
  color: #686d75;
  font-size: 0.72rem;
  line-height: 1.55;
}

.home-reference-section .center-action {
  margin-top: 28px;
}

.home-reference-section .center-action .button {
  min-height: 42px;
  padding: 9px 20px;
  font-size: 0.78rem;
}

.home-reference-commitment {
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.home-reference-commitment-grid {
  display: grid;
  align-items: stretch;
  gap: clamp(42px, 7vw, 92px);
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
}

.home-reference-commitment .section-heading {
  margin-bottom: 27px;
}

.home-reference-commitment .section-heading h2 {
  margin-bottom: 0;
}

.home-reference-commitment .check-grid {
  gap: 20px 28px;
}

.home-reference-commitment .check-item h3 {
  font-size: 0.86rem;
}

.home-reference-commitment .check-item p {
  font-size: 0.73rem;
  line-height: 1.55;
}

.home-impact {
  padding: 31px;
  border: 1px solid #f2d9c5;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff3e9, #fffaf6);
  box-shadow: 0 12px 38px rgba(216, 90, 0, 0.07);
}

.home-impact > h3 {
  margin-bottom: 18px;
  text-align: center;
  font-size: 1.02rem;
}

.home-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-impact-grid > div {
  display: flex;
  min-height: 132px;
  padding: 18px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.home-impact-grid > div:nth-child(odd) {
  border-right: 1px solid #efd9c5;
}

.home-impact-grid > div:nth-child(-n + 2) {
  border-bottom: 1px solid #efd9c5;
}

.home-impact-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
}

.home-impact-icon .theme-icon {
  width: 28px;
  height: 28px;
}

.home-impact-grid strong,
.home-impact-grid small {
  display: block;
}

.home-impact-grid strong {
  color: var(--charcoal-deep);
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.home-impact-grid small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.home-reference-process {
  border-top: 1px solid #f1ece7;
}

.home-process-grid {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.home-process-grid::before {
  position: absolute;
  top: 35px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  content: "";
  opacity: 0.55;
}

.home-process-grid li {
  position: relative;
  z-index: 1;
  padding: 0 15px;
  text-align: center;
}

.home-process-icon {
  display: inline-flex;
  width: 70px;
  height: 70px;
  margin-bottom: 11px;
  border: 1px solid #ffd0ad;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 9px 25px rgba(47, 51, 58, 0.08);
  color: var(--orange-dark);
}

.home-process-icon .theme-icon {
  width: 29px;
  height: 29px;
}

.home-process-grid small {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-dark);
  font-size: 0.64rem;
  font-weight: 850;
}

.home-process-grid h3 {
  margin-bottom: 6px;
  font-size: 0.82rem;
}

.home-process-grid p {
  max-width: 170px;
  margin: 0 auto;
  font-size: 0.7rem;
  line-height: 1.5;
}

.home-reference-locations {
  padding-top: 58px;
  padding-bottom: 58px;
  background: #fffaf6;
}

.home-reference-locations .locations-grid a {
  min-height: 82px;
}

.home-reference-testimonials {
  background: linear-gradient(180deg, #fff8f1 0%, #fff3e9 100%);
}

.home-testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-testimonial-grid figure {
  margin: 0;
  padding: 25px;
  border: 1px solid rgba(216, 90, 0, 0.13);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(47, 51, 58, 0.055);
}

.home-testimonial-grid blockquote {
  min-height: 104px;
  margin: 0 0 20px;
  color: #53575e;
  font-size: 0.82rem;
  line-height: 1.7;
}

.home-testimonial-grid figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-testimonial-avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.home-testimonial-avatar .theme-icon {
  width: 20px;
  height: 20px;
}

.home-testimonial-grid figcaption strong,
.home-testimonial-grid figcaption small {
  display: block;
}

.home-testimonial-grid figcaption strong {
  color: var(--charcoal-deep);
  font-size: 0.8rem;
}

.home-testimonial-grid figcaption small {
  color: var(--muted);
  font-size: 0.68rem;
}

.home-reference-blog {
  background: #fff;
}

.home-article-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-article-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(47, 51, 58, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-article-grid article:hover {
  box-shadow: 0 14px 34px rgba(47, 51, 58, 0.1);
  transform: translateY(-3px);
}

.home-article-image {
  display: block;
  height: 160px;
  overflow: hidden;
  background: var(--cream);
}

.home-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.home-article-grid article:hover .home-article-image img {
  transform: scale(1.035);
}

.home-article-grid article > div {
  padding: 19px;
}

.home-article-grid article > div > span {
  display: block;
  margin-bottom: 7px;
  color: var(--orange-dark);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-article-grid h3 {
  min-height: 2.5em;
  margin-bottom: 9px;
  font-size: 0.91rem;
  line-height: 1.25;
}

.home-article-grid p {
  min-height: 4.7em;
  margin-bottom: 15px;
  font-size: 0.72rem;
  line-height: 1.55;
}

.home-article-grid footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.65rem;
}

.home-article-grid footer a {
  color: var(--charcoal-deep);
  font-weight: 850;
}

.home-reference-cta {
  padding-top: 0;
}

.home-reference-cta .cta-banner {
  min-height: 126px;
  border-radius: 0;
}

@media (max-width: 1100px) {
  .home-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-article-image {
    height: 210px;
  }
}

@media (max-width: 920px) {
  .page-home .hero {
    padding-top: 36px;
  }

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

  .page-home .hero-copy {
    max-width: 700px;
  }

  .page-home .hero-media {
    width: min(100%, 720px);
    justify-self: center;
  }

  .home-reference-commitment-grid {
    grid-template-columns: 1fr;
  }

  .home-impact {
    width: min(100%, 650px);
    justify-self: center;
  }

  .home-process-grid {
    gap: 28px 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-process-grid::before {
    display: none;
  }

  .home-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home-testimonial-grid blockquote {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .page-home .hero {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .page-home .hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  .page-home .hero-copy > p {
    font-size: 1rem;
  }

  .page-home .hero-points {
    grid-template-columns: 1fr;
    font-size: 0.82rem;
  }

  .page-home .hero-note {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .home-reference-section {
    padding: 52px 0;
  }

  .home-reference-section .section-heading {
    margin-bottom: 26px;
  }

  .home-reference-section .section-heading h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

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

  .home-service-grid article > a {
    min-height: 225px;
    padding-inline: 12px;
  }

  .home-reference-commitment .check-grid {
    grid-template-columns: 1fr;
  }

  .home-impact {
    padding: 20px 14px;
  }

  .home-impact-grid > div {
    min-height: 122px;
    padding: 12px 8px;
  }

  .home-process-grid {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .home-process-grid li {
    max-width: 360px;
    margin-inline: auto;
  }

  .home-reference-locations .locations-grid {
    grid-template-columns: 1fr;
  }

  .home-article-grid {
    grid-template-columns: 1fr;
  }

  .home-article-image {
    height: 205px;
  }

  .home-article-grid h3,
  .home-article-grid p {
    min-height: 0;
  }

  .home-reference-cta .cta-banner {
    border-radius: 0;
  }
}

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

  .home-service-grid article > a {
    min-height: 0;
  }
}
