:root {
    color-scheme: light;
    --background: #f5f4ee;
    --surface: #ffffff;
    --surface-soft: #f5f4ee;
    --surface-muted: #edebe1;
    --ink: #2f2f2f;
    --ink-muted: #555852;
    --forest: #173628;
    --forest-deep: #173628;
    --gold: #b39454;
    --gold-strong: #9b7e3f;
    --sage: #bac2a7;
    --border: #bac2a7;
    --shadow: 0 22px 45px rgba(23, 54, 40, 0.08);
    --container: 1200px;
    --gutter: 24px;
    --radius: 8px;
    --body-font: "Commuters Sans", Inter, "Helvetica Neue", Arial, sans-serif;
    --headline-font: "Playfair Display", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--background);
    color: var(--ink);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--forest-deep);
    font-family: var(--headline-font);
    font-weight: 500;
    line-height: 1.15;
}

h1 {
    margin-bottom: 24px;
    max-width: 680px;
    color: var(--forest-deep);
    font-size: 4rem;
}

h1 span {
    color: var(--gold);
}

h2 {
    margin-bottom: 18px;
    font-size: 3rem;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

p {
    color: var(--ink-muted);
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-160%);
    border-radius: 4px;
    background: var(--forest-deep);
    color: var(--surface);
    padding: 10px 14px;
    font-weight: 700;
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(193, 200, 194, 0.5);
    background: rgba(245, 244, 238, 0.96);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    width: min(var(--container), calc(100% - 48px));
    min-height: 88px;
    margin: 0 auto;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    width: 184px;
    text-decoration: none;
}

.brand-logo img {
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.site-nav__item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.site-nav__link {
    position: relative;
    color: var(--ink-muted);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
}

.site-nav__link::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--forest-deep);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-section-active,
.site-nav__link.is-active {
    color: var(--forest-deep);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-section-active::after,
.site-nav__link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-nav__submenu {
    position: absolute;
    top: calc(100% + 22px);
    left: 50%;
    z-index: 80;
    display: grid;
    width: min(360px, calc(100vw - 48px));
    gap: 2px;
    border: 1px solid rgba(193, 200, 194, 0.72);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 58px rgba(23, 54, 40, 0.16);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    visibility: hidden;
}

.site-nav__submenu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 24px;
    content: "";
}

.site-nav__item--has-menu:hover .site-nav__submenu,
.site-nav__item--has-menu:focus-within .site-nav__submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.site-nav__submenu-link {
    display: block;
    border-radius: 4px;
    color: var(--ink-muted);
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
}

.site-nav__submenu-link:hover,
.site-nav__submenu-link:focus-visible,
.site-nav__submenu-link.is-active {
    background: var(--surface-soft);
    color: var(--forest-deep);
}

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

.site-header__cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 0 22px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-header__cta {
    min-height: 48px;
    padding: 0 24px;
    font-size: 0.88rem;
    white-space: nowrap;
}

.site-header__cta,
.button--gold {
    background: var(--gold);
    color: var(--surface);
}

.site-header__cta:hover,
.site-header__cta:focus-visible,
.site-header__cta.is-active,
.button--gold:hover,
.button--gold:focus-visible {
    background: var(--gold-strong);
    transform: translateY(-1px);
}

.site-header__cta--secondary {
    border-color: rgba(23, 54, 40, 0.34);
    background: transparent;
    color: var(--forest-deep);
}

.site-header__cta--secondary.is-active {
    border-color: rgba(23, 54, 40, 0.34);
    background: transparent;
    color: var(--forest-deep);
    transform: none;
}

.site-header__cta--secondary:hover,
.site-header__cta--secondary:focus-visible {
    border-color: var(--forest-deep);
    background: var(--forest-deep);
    color: var(--surface);
}

.button--outline {
    border-color: var(--forest);
    color: var(--forest);
}

.button--outline:hover,
.button--outline:focus-visible {
    background: var(--forest);
    color: var(--surface);
}

.button--dark {
    background: var(--forest-deep);
    color: var(--surface);
}

.button--dark:hover,
.button--dark:focus-visible {
    background: var(--forest);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--forest-deep);
}

.nav-toggle__bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
}

.site-main {
    overflow: hidden;
}

.flash-messages {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 12px;
    width: min(var(--container), calc(100% - 48px));
    margin: 24px auto -16px;
}

.flash-message {
    margin: 0;
    border: 1px solid rgba(186, 194, 167, 0.85);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--forest);
    padding: 14px 18px;
    font-size: 0.95rem;
}

.flash-message--error {
    border-color: rgba(179, 148, 84, 0.72);
    color: var(--ink);
}

.toast-region {
    position: fixed;
    top: 108px;
    right: 24px;
    z-index: 100;
    display: grid;
    gap: 12px;
    width: min(380px, calc(100vw - 48px));
    pointer-events: none;
}

.toast {
    border: 1px solid rgba(186, 194, 167, 0.85);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 18px 42px rgba(23, 54, 40, 0.16);
    color: var(--ink);
    padding: 14px 16px;
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.45;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 180ms ease, transform 180ms ease;
}

.toast--success {
    border-left-color: var(--forest);
}

.toast--error {
    border-left-color: var(--gold-strong);
}

.toast--info {
    border-left-color: var(--sage);
}

.toast.is-leaving {
    opacity: 0;
    transform: translateY(-8px);
}

.button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.hero-section {
    position: relative;
    display: grid;
    align-items: center;
    min-height: clamp(580px, 82svh, 720px);
    overflow: hidden;
    background: var(--forest);
    color: var(--surface);
}

.hero-section::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(23, 54, 40, 0.98) 0%, rgba(23, 54, 40, 0.88) 44%, rgba(23, 54, 40, 0.18) 76%);
    content: "";
}

.hero-section__media {
    position: absolute;
    inset: 0 0 0 auto;
    width: 58%;
}

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

.hero-section__content {
    position: relative;
    z-index: 2;
    padding: 88px 0;
}

.hero-section h1 {
    max-width: 780px;
    color: var(--surface);
}

.section-label {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;

}

.hero-section__lede,
.hero-section__support {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.1rem;
}

.hero-section__lede {
    margin-bottom: 18px;
}

.hero-section__support {
    margin-bottom: 38px;
}

.hero-section__actions,
.quote-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-section-heading {
    display: grid;
    justify-items: center;
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.home-section-heading h2,
.home-section-heading p:not(.section-label) {
    margin-right: auto;
    margin-left: auto;
}

.home-section-heading p:not(.section-label) {
    max-width: 680px;
    margin-bottom: 0;
    font-size: 1.04rem;
}

.home-section-heading--split {
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.7fr);
    align-items: end;
    justify-items: stretch;
    max-width: none;
    text-align: left;
}

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

.home-section-heading--split p:not(.section-label) {
    margin: 0;
}

.audience-section,
.services-section,
.trust-section,
.home-story-section,
.values-section,
.home-testimonials-section,
.quote-section {
    padding: 112px 0;
}

.audience-section {
    border-bottom: 1px solid rgba(193, 200, 194, 0.45);
    background: var(--surface-soft);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.audience-card {
    display: grid;
    min-height: 106px;
    align-content: end;
    border: 1px solid rgba(193, 200, 194, 0.72);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--forest-deep);
    padding: 22px;
    font-family: var(--headline-font);
    font-size: 1.15rem;
    line-height: 1.22;
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.audience-card:hover,
.audience-card:focus-visible {
    border-color: rgba(179, 148, 84, 0.84);
    background: #fbfaf6;
    transform: translateY(-2px);
}

.services-section {
    background: var(--background);
}

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

.service-photo-card {
    position: relative;
    display: grid;
    min-height: 290px;
    align-content: end;
    overflow: hidden;
    border: 1px solid rgba(193, 200, 194, 0.7);
    border-radius: var(--radius);
    background: var(--forest);
    color: var(--surface);
    padding: 24px;
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease;
}

.service-photo-card::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(23, 54, 40, 0.04), rgba(23, 54, 40, 0.86));
    content: "";
}

.service-photo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.service-photo-card span {
    position: relative;
    z-index: 2;
    max-width: 220px;
    color: var(--surface);
    font-family: var(--headline-font);
    font-size: 1.45rem;
    line-height: 1.16;
}

.service-photo-card:hover,
.service-photo-card:focus-visible {
    border-color: rgba(179, 148, 84, 0.8);
    transform: translateY(-2px);
}

.service-photo-card:hover img,
.service-photo-card:focus-visible img {
    transform: scale(1.035);
}

.trust-section {
    background: var(--forest);
    color: var(--surface);
}

.trust-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 72px;
    align-items: start;
}

.trust-copy {
    position: sticky;
    top: 118px;
}

.trust-copy h2,
.trust-card h3 {
    color: var(--surface);
}

.trust-copy p:not(.section-label),
.trust-card p {
    color: rgba(255, 255, 255, 0.78);
}

.trust-copy p:last-child {
    margin-bottom: 0;
}

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

.trust-card {
    min-height: 270px;
    border: 1px solid rgba(186, 194, 167, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    padding: 30px;
}

.trust-card span {
    display: block;
    margin-bottom: 48px;
    color: var(--gold);
    font-family: var(--headline-font);
    font-size: 2.7rem;
    line-height: 1;
}

.trust-card p {
    margin-bottom: 0;
}

.home-story-section {
    background: var(--surface);
}

.home-story-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.home-story__media {
    display: grid;
    min-height: 520px;
    place-items: center;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 46px;
}

.home-story__media img {
    display: block;
    width: min(100%, 430px);
    height: auto;
    aspect-ratio: 797 / 508;
    object-fit: contain;
}

.home-story__content p:last-child {
    margin-bottom: 0;
}

.values-section {
    background: var(--surface-soft);
}

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

.value-principle-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 280px;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 30px;
}

.value-principle-card__icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid rgba(179, 148, 84, 0.34);
    border-radius: 50%;
    background: rgba(179, 148, 84, 0.1);
    color: var(--gold-strong);
}

.value-principle-card__icon svg {
    width: 30px;
    height: 30px;
}

.value-principle-card h3 {
    margin-bottom: 0;
}

.value-principle-card p {
    margin-top: auto;
    margin-bottom: 0;
}

.home-testimonials-section {
    background: var(--background);
}

.home-reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 72px;
    align-items: start;
}

.home-review-list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.home-review,
.google-review-widget {
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 30px;
}

.home-review p,
.google-review-widget blockquote p {
    margin-bottom: 18px;
    color: var(--forest-deep);
    font-family: var(--headline-font);
    font-size: 1.32rem;
    font-style: italic;
    line-height: 1.35;
}

.home-review cite,
.google-review-widget cite {
    color: var(--ink-muted);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 600;
}

.google-review-widget {
    position: sticky;
    top: 118px;
    background: var(--surface-soft);
}

.google-review-widget__header {
    display: grid;
    gap: 6px;
    margin-bottom: 28px;
}

.google-review-widget__header span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
}

.google-review-widget__header strong {
    color: var(--forest-deep);
    font-family: var(--headline-font);
    font-size: 2.15rem;
    font-weight: 500;
    line-height: 1.1;
}

.google-review-widget__stars {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
}

.quote-section {
    background: var(--surface-muted);
}

.quote-section__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr) auto;
    gap: 36px;
    align-items: center;
}

.quote-section h2 {
    margin-bottom: 0;
}

.quote-section p:not(.section-label) {
    margin-bottom: 0;
}

.quote-section__actions {
    justify-content: flex-end;
}

.services-hero {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: center;
    overflow: hidden;
    background: var(--forest);
    padding: 104px 0;
    text-align: center;
}

.services-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(23, 54, 40, 0.82);
    content: "";
}

.services-hero__media {
    position: absolute;
    inset: 0;
    opacity: 0.28;
}

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

.services-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
}

.services-hero h1 {
    max-width: 860px;
    color: var(--surface);
}

.services-hero p:not(.section-label) {
    max-width: 700px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
}

.button--outline-light {
    border-color: var(--gold);
    color: var(--gold);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
    background: rgba(179, 148, 84, 0.16);
    color: var(--surface);
}

.services-catalog,
.process-section,
.services-cta {
    padding: 112px 0;
}

.services-catalog {
    background: var(--background);
}

.page-section-heading {
    margin-bottom: 56px;
    text-align: center;
}

.page-section-heading h2 {
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    max-width: 760px;
}

.services-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.service-feature,
.service-tile {
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-feature {
    display: grid;
    grid-column: span 8;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    background: var(--surface);
}

.service-feature__media {
    min-height: 390px;
    overflow: hidden;
}

.service-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.service-feature:hover .service-feature__media img {
    transform: scale(1.035);
}

.service-feature__content,
.service-tile {
    display: grid;
    align-content: start;
    padding: 38px;
}

.service-feature__content {
    background: var(--surface);
}

.service-feature__content p,
.service-tile p {
    margin-bottom: 26px;
}

.service-card__icon {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid rgba(179, 148, 84, 0.32);
    border-radius: 50%;
    background: rgba(179, 148, 84, 0.08);
    color: var(--gold);
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
}

.service-points {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.service-points li {
    position: relative;
    padding-left: 28px;
    color: var(--ink-muted);
    font-size: 0.94rem;
}

.service-points li::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 5px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    content: "";
    transform: rotate(-45deg);
}

.service-tile {
    grid-column: span 4;
    min-height: 330px;
    background: var(--surface);
    transition: border-color 180ms ease, transform 180ms ease;
}

.service-tile:hover {
    border-color: rgba(179, 148, 84, 0.8);
    transform: translateY(-2px);
}

.service-tile--wide,
.service-tile--image {
    grid-column: span 6;
}

.service-tile--image {
    position: relative;
    background: var(--surface-soft);
}

.service-tile--image > *:not(.service-tile__background) {
    position: relative;
    z-index: 1;
}

.service-tile__background {
    position: absolute;
    inset: 0;
    opacity: 0.12;
}

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

.text-link {
    align-self: end;
    width: fit-content;
    color: var(--forest);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;

}

.text-link::after {
    content: " ->";
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--gold-strong);
}

.service-link-stack {
    display: grid;
    gap: 10px;
    align-self: end;
}

.process-section {
    background: var(--surface-muted);
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 72px;
    align-items: center;
}

.process-layout__content > p:not(.section-label) {
    max-width: 580px;
    margin-bottom: 44px;
    font-size: 1.08rem;
}

.process-list {
    display: grid;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
}

.process-list span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-family: var(--headline-font);
    font-size: 1.28rem;
}

.process-list h3 {
    margin-bottom: 4px;
    font-family: var(--body-font);
    font-size: 0.82rem;
    font-weight: 600;

}

.process-list p {
    max-width: 520px;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.process-layout__media {
    overflow: hidden;
    border-radius: var(--radius);
}

.process-layout__media img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.services-cta {
    border-top: 1px solid rgba(193, 200, 194, 0.35);
    background: var(--surface);
}

.services-cta__inner {
    display: grid;
    justify-items: center;
    max-width: 820px;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.45rem;
}

.services-cta p {
    max-width: 620px;
    margin-bottom: 34px;
    font-size: 1.08rem;
}

.service-detail-hero,
.service-detail-section,
.service-detail-split-section,
.service-detail-link-section,
.service-detail-cta {
    padding: 112px 0;
}

.service-detail-hero {
    background: var(--background);
}

.service-detail-hero--commercial {
    background: var(--surface-soft);
}

.service-detail-hero__grid,
.service-detail-split {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
    gap: 72px;
    align-items: center;
}

.service-detail-split--content-only {
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
}

.service-detail-hero__content p:not(.section-label) {
    max-width: 620px;
    margin-bottom: 34px;
    font-size: 1.12rem;
}

.service-detail-hero__media,
.service-detail-split__media {
    overflow: hidden;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
}

.service-detail-hero__media img,
.service-detail-split__media img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.service-detail-section {
    background: var(--surface);
}

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

.service-detail-card {
    min-height: 320px;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 34px;
}

.service-detail-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 20px;
    color: var(--gold);
}

.service-detail-card__icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.service-detail-card p {
    margin-bottom: 0;
}

.service-detail-split-section--soft,
.service-detail-link-section {
    background: var(--surface-soft);
}

.service-detail-split-section--dark {
    background: var(--forest);
    color: var(--surface);
}

.service-detail-split-section--dark h2,
.service-detail-split-section--dark .service-detail-list li {
    color: var(--surface);
}

.service-detail-split-section--dark p:not(.section-label) {
    color: rgba(255, 255, 255, 0.82);
}

.service-detail-split__content > p:not(.section-label) {
    max-width: 640px;
    margin-bottom: 30px;
    font-size: 1.08rem;
}

.service-detail-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-detail-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink-muted);
}

.service-detail-list li::before {
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 6px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    content: "";
    transform: rotate(-45deg);
}

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

.service-detail-link-card {
    display: grid;
    gap: 14px;
    min-height: 250px;
    align-content: start;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    color: inherit;
    padding: 30px;
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease;
}

.service-detail-link-card:hover,
.service-detail-link-card:focus-visible {
    border-color: rgba(179, 148, 84, 0.8);
    transform: translateY(-2px);
}

.service-detail-link-card span {
    color: var(--forest-deep);
    font-family: var(--headline-font);
    font-size: 1.45rem;
    line-height: 1.2;
}

.service-detail-link-card p {
    margin-bottom: 0;
}

.service-detail-cta {
    border-top: 1px solid rgba(193, 200, 194, 0.35);
    background: var(--surface);
    text-align: center;
}

.service-detail-cta__inner {
    display: grid;
    justify-items: center;
    max-width: 840px;
}

.service-detail-cta p {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: 1.08rem;
}

.about-hero,
.story-section,
.renewal-section,
.principles-section,
.people-section,
.about-cta {
    padding: 112px 0;
}

.about-hero {
    background: var(--background);
}

.about-hero__grid,
.people-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    gap: 72px;
    align-items: center;
}

.about-hero__content > p:not(.section-label) {
    max-width: 600px;
    margin-bottom: 34px;
    font-size: 1.12rem;
}

.about-hero blockquote {
    max-width: 560px;
    margin-bottom: 0;
    border-left: 1px solid var(--forest);
    padding-left: 24px;
}

.about-hero blockquote p {
    margin-bottom: 0;
    color: var(--forest);
    font-family: var(--headline-font);
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.35;
}

.about-hero__media,
.people-section__media {
    overflow: hidden;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
}

.about-hero__media img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.story-section {
    border-top: 1px solid rgba(193, 200, 194, 0.42);
    background: var(--surface);
}

.story-section__inner {
    max-width: 840px;
    text-align: center;
}

.story-section__inner h2 {
    margin-bottom: 28px;
}

.story-section__inner p {
    margin-right: auto;
    margin-left: auto;
    max-width: 760px;
    font-size: 1.08rem;
}

.story-section__inner p:last-child {
    margin-bottom: 0;
}

.renewal-section {
    background: var(--forest);
    color: var(--surface);
}

.renewal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 56px;
    align-items: stretch;
}

.renewal-card {
    border-left: 1px solid rgba(179, 148, 84, 0.58);
    padding-left: 34px;
}

.renewal-card h2 {
    max-width: 720px;
    color: var(--surface);
}

.renewal-card p:not(.section-label) {
    max-width: 850px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
}

.renewal-card p:last-child {
    margin-bottom: 0;
}

.renewal-aside {
    display: grid;
    align-content: space-between;
    gap: 46px;
    border: 1px solid rgba(186, 194, 167, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    padding: 30px;
}

.renewal-aside__icon {
    width: min(150px, 70%);
    aspect-ratio: 1;
    display: block;
    justify-self: end;
    background: currentColor;
    color: var(--gold);
    mask: url("../images/icon-dove.svg") center / contain no-repeat;
    opacity: 0.95;
    -webkit-mask: url("../images/icon-dove.svg") center / contain no-repeat;
}

.renewal-aside__title {
    display: block;
    margin-bottom: 28px;
    color: var(--gold);
    font-family: var(--headline-font);
    font-size: 2.4rem;
    line-height: 1;
}

.renewal-aside p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.principles-section {
    background: var(--surface-soft);
}

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

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

.principle-card {
    min-height: 300px;
    border: 1px solid rgba(193, 200, 194, 0.55);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 34px;
    transition: border-color 180ms ease, transform 180ms ease;
}

.principle-card:hover {
    border-color: rgba(70, 101, 85, 0.55);
    transform: translateY(-2px);
}

.principle-card--wide {
    grid-column: span 2;
}

.principle-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 22px;
    color: var(--forest);
}

.principle-card__icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.principle-card p {
    margin-bottom: 0;
}

.people-section {
    background: var(--background);
}

.people-section__grid {
    grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr);
}

.people-section__media img {
    width: 100%;
    height: 520px;
    filter: grayscale(0.35);
    object-fit: cover;
    transition: filter 180ms ease, transform 420ms ease;
}

.people-section__media:hover img {
    filter: grayscale(0);
    transform: scale(1.02);
}

.people-section__content p:not(.section-label) {
    max-width: 620px;
    font-size: 1.05rem;
}

.about-cta {
    background: var(--forest-deep);
    color: var(--surface);
    text-align: center;
}

.about-cta__inner {
    display: grid;
    justify-items: center;
    max-width: 820px;
}

.about-cta h2 {
    color: var(--surface);
}

.about-cta p {
    max-width: 620px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
}

.quote-page-hero {
    position: relative;
    display: grid;
    min-height: 500px;
    place-items: center;
    overflow: hidden;
    background: var(--forest-deep);
    padding: 104px 0;
    text-align: center;
}

.quote-page-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(23, 54, 40, 0.78);
    content: "";
}

.quote-page-hero__media {
    position: absolute;
    inset: 0;
    opacity: 0.34;
}

.quote-page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-page-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
}

.quote-page-hero h1 {
    max-width: 820px;
    color: var(--surface);
}

.quote-page-hero p:not(.section-label) {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
}

.quote-request-section {
    background: var(--background);
    padding: 112px 0;
}

.quote-request-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 56px;
    align-items: start;
}

.quote-sidebar {
    position: sticky;
    top: 118px;
}

.quote-sidebar h2 {
    margin-bottom: 28px;
    font-size: 2.45rem;
}

.quote-steps {
    display: grid;
    gap: 24px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.quote-steps li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
}

.quote-steps span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-family: var(--headline-font);
    font-size: 1.1rem;
}

.quote-steps h3,
.quote-contact-card h3 {
    margin-bottom: 6px;
    font-family: var(--body-font);
    font-size: 0.82rem;
    font-weight: 600;

}

.quote-steps p {
    margin-bottom: 0;
    font-size: 0.94rem;
}

.quote-contact-card {
    display: grid;
    gap: 8px;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 24px;
}

.quote-contact-card a {
    width: fit-content;
    color: var(--forest);
    font-weight: 700;
    text-decoration: none;
}

.quote-contact-card a:hover,
.quote-contact-card a:focus-visible {
    color: var(--gold-strong);
}

.quote-contact-card address {
    margin-bottom: 0;
    color: var(--ink-muted);
    font-style: normal;
    line-height: 1.55;
}

.employment-apply-card {
    margin-bottom: 18px;
}

.employment-apply-card p {
    margin-bottom: 10px;
}

.employment-language-toggle {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 10px 8px 18px;
    color: var(--surface);
}

.employment-language-toggle span {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.employment-language-toggle__buttons {
    display: inline-flex;
    gap: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 4px;
}

.employment-language-toggle__button {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 14px;
}

.employment-language-toggle__button.is-active {
    background: var(--gold);
    color: var(--forest-deep);
}

.employment-language-toggle__button:focus-visible {
    outline: 2px solid var(--surface);
    outline-offset: 2px;
}

.employment-verification-section {
    background: var(--surface);
    padding: 86px 0;
}

.employment-verification {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 56px;
    align-items: start;
}

.employment-verification h2 {
    margin-bottom: 0;
}

.employment-verification__content {
    display: grid;
    gap: 18px;
    color: var(--ink-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.employment-verification__content p {
    margin-bottom: 0;
}

.employment-verification__contacts {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    border: 1px solid rgba(193, 200, 194, 0.72);
    border-radius: var(--radius);
    background: var(--background);
    padding: 22px;
}

.employment-verification__contacts strong {
    color: var(--forest-deep);
}

.employment-verification__contacts a {
    color: var(--forest);
    font-weight: 700;
    text-decoration: none;
}

.employment-verification__contacts a:hover,
.employment-verification__contacts a:focus-visible {
    color: var(--gold-strong);
}

.quote-contact-card .button {
    width: fit-content;
    color: var(--forest-deep);
}

.quote-contact-card .button:hover,
.quote-contact-card .button:focus-visible {
    color: var(--forest-deep);
}

.employment-apply-card .button,
.employment-apply-card .button:hover,
.employment-apply-card .button:focus-visible {
    color: var(--surface);
}

.quote-form {
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 38px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label,
.form-fieldset legend {
    color: var(--forest-deep);
    font-size: 0.78rem;
    font-weight: 600;

}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(193, 200, 194, 0.9);
    border-radius: 4px;
    background: var(--background);
    color: var(--ink);
    font: inherit;
    padding: 13px 14px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 0;
    border-color: var(--gold);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(179, 148, 84, 0.16);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(47, 47, 47, 0.58);
}

.form-fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    margin: 28px 0 0;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    padding: 22px;
}

.form-fieldset legend {
    padding: 0 8px;
}

.form-fieldset label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-muted);
}

.form-fieldset input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.quote-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
}

.quote-form__actions p {
    max-width: 320px;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.terms-hero {
    background: var(--forest-deep);
    padding: 112px 0 92px;
    color: var(--surface);
}

.terms-hero__content {
    display: grid;
    max-width: 880px;
}

.terms-hero h1 {
    color: var(--surface);
}

.terms-hero p:not(.section-label) {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
}

.terms-page-section {
    background: var(--background);
    padding: 96px 0;
}

.terms-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.34fr) minmax(0, 0.66fr);
    gap: 54px;
    align-items: start;
}

.terms-sidebar {
    position: sticky;
    top: 118px;
    display: grid;
    gap: 22px;
}

.terms-sidebar h2 {
    margin-bottom: 0;
    font-size: 2.1rem;
}

.terms-anchor-list {
    display: grid;
    gap: 7px;
    border: 1px solid rgba(193, 200, 194, 0.68);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 16px;
}

.terms-anchor-list a {
    border-radius: 4px;
    color: var(--ink-muted);
    padding: 9px 10px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.terms-anchor-list a:hover,
.terms-anchor-list a:focus-visible {
    background: var(--surface-soft);
    color: var(--forest-deep);
}

.terms-content {
    display: grid;
    gap: 22px;
}

.terms-card {
    border: 1px solid rgba(193, 200, 194, 0.68);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 34px;
}

.terms-card h2 {
    margin-bottom: 18px;
    font-size: 2rem;
}

.terms-card h3 {
    margin: 20px 0 10px;
    font-family: var(--body-font);
    font-size: 0.92rem;
    font-weight: 800;
}

.terms-card p,
.terms-card li {
    color: var(--ink-muted);
    line-height: 1.7;
}

.terms-card p:last-child,
.terms-card ul:last-child {
    margin-bottom: 0;
}

.terms-card ul {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding-left: 20px;
}

.terms-card a:not(.button) {
    color: var(--forest);
    font-weight: 700;
    text-decoration: none;
}

.terms-card a:not(.button):hover,
.terms-card a:not(.button):focus-visible {
    color: var(--gold-strong);
}

.terms-rate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0 22px;
}

.terms-rate-grid div {
    border: 1px solid rgba(193, 200, 194, 0.72);
    border-radius: 6px;
    background: var(--background);
    padding: 18px;
}

.terms-rate-grid h3 {
    margin-top: 0;
}

.terms-rate-grid p {
    margin-bottom: 0;
    color: var(--forest-deep);
    font-weight: 800;
}

.terms-card--closing {
    background: var(--forest-deep);
}

.terms-card--closing p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.client-access-hero {
    background: var(--forest-deep);
    padding: 112px 0 92px;
    color: var(--surface);
    text-align: center;
}

.client-access-hero__content {
    display: grid;
    justify-items: center;
    max-width: 820px;
}

.client-access-hero h1 {
    color: var(--surface);
}

.client-access-hero p:not(.section-label) {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
}

.client-access-section {
    background: var(--background);
    padding: 96px 0;
}

.client-access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.client-access-card {
    display: grid;
    gap: 24px;
    border: 1px solid rgba(193, 200, 194, 0.68);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 36px;
}

.client-access-card__icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(179, 148, 84, 0.34);
    border-radius: 50%;
    background: rgba(179, 148, 84, 0.1);
    color: var(--gold-strong);
}

.client-access-card__icon svg {
    width: 30px;
    height: 30px;
}

.client-access-card h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.client-access-card p {
    margin-bottom: 0;
    color: var(--ink-muted);
    line-height: 1.7;
}

.client-access-card .button {
    justify-self: start;
}

.client-request-panel {
    margin-top: 62px;
}

.client-request-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.client-request-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    border: 1px solid rgba(193, 200, 194, 0.68);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    padding: 24px;
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.client-request-card:hover,
.client-request-card:focus-visible {
    border-color: rgba(179, 148, 84, 0.65);
    box-shadow: 0 18px 44px rgba(23, 54, 40, 0.12);
    transform: translateY(-2px);
}

.client-request-card strong,
.client-request-card small {
    display: block;
}

.client-request-card strong {
    margin-bottom: 6px;
    color: var(--forest-deep);
    font-family: var(--headline-font);
    font-size: 1.35rem;
    font-weight: 500;
}

.client-request-card small {
    color: var(--ink-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.industry-hero {
    position: relative;
    display: grid;
    min-height: 690px;
    place-items: center;
    overflow: hidden;
    background: var(--surface-muted);
    padding: 112px 0;
    text-align: center;
}

.industry-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(237, 235, 225, 0.55), rgba(237, 235, 225, 0.94));
    content: "";
}

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

.industry-hero__media img {
    width: 100%;
    height: 100%;
    filter: grayscale(0.75);
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.55;
}

.industry-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
}

.industry-hero h1 {
    max-width: 920px;
}

.industry-hero p:not(.industry-kicker) {
    max-width: 760px;
    margin-bottom: 36px;
    font-size: 1.12rem;
}

.industry-kicker {
    margin-bottom: 22px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--gold);
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;

}

.law-refinement-section,
.law-discretion-section {
    padding: 112px 0;
}

.law-refinement-section {
    background: var(--background);
}

.page-section-heading p:not(.section-label) {
    max-width: 720px;
    margin: 16px auto 0;
}

.law-feature-grid {
    display: grid;
    grid-auto-rows: minmax(320px, auto);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.law-feature-card {
    position: relative;
    display: grid;
    align-content: end;
    overflow: hidden;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 34px;
}

.law-feature-card--image {
    grid-column: span 2;
    color: var(--surface);
}

.law-feature-card--image::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(23, 54, 40, 0.05), rgba(23, 54, 40, 0.9));
    content: "";
}

.law-feature-card--image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

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

.law-feature-card--image > div {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.law-feature-card--image h3,
.law-feature-card--dark h3 {
    color: var(--surface);
}

.law-feature-card--image p,
.law-feature-card--dark p:not(.section-label) {
    color: rgba(255, 255, 255, 0.8);
}

.law-feature-card--centered {
    align-content: center;
    justify-items: center;
    text-align: center;
}

.law-feature-card--dark {
    grid-column: span 2;
    background: var(--forest);
}

.law-feature-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 18px;
    color: var(--gold);
}

.law-feature-card__icon svg,
.law-assurance-list svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.law-feature-card p {
    margin-bottom: 0;
}

.law-discretion-section {
    border-top: 1px solid rgba(193, 200, 194, 0.35);
    background: var(--surface);
}

.law-discretion-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.law-discretion-layout--content-only {
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
}

.law-discretion-layout__media {
    position: relative;
}

.law-discretion-layout__media::after {
    position: absolute;
    right: -22px;
    bottom: -22px;
    z-index: 0;
    width: 44%;
    height: 34%;
    border-radius: var(--radius);
    background: var(--sage);
    content: "";
}

.law-discretion-layout__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    object-fit: cover;
}

.law-discretion-layout__content > p:not(.section-label) {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: 1.08rem;
}

.law-assurance-list {
    display: grid;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.law-assurance-list li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
}

.law-assurance-list span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(23, 54, 40, 0.12);
    border-radius: 50%;
    background: var(--background);
    color: var(--forest);
}

.law-assurance-list svg {
    width: 28px;
    height: 28px;
}

.law-assurance-list h3 {
    margin-bottom: 4px;
    font-size: 1.28rem;
}

.law-assurance-list p {
    margin-bottom: 0;
}

.law-testimonial {
    background: var(--forest);
    color: var(--surface);
    padding: 96px 0;
    text-align: center;
}

.law-testimonial__inner {
    display: grid;
    justify-items: center;
}

.law-testimonial blockquote {
    position: relative;
    max-width: 860px;
    margin-bottom: 34px;
    padding-top: 54px;
}

.law-testimonial blockquote::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 38px;
    background: var(--gold);
    content: "";
    transform: translateX(-50%);
}

.law-testimonial blockquote p {
    color: var(--surface);
    font-family: var(--headline-font);
    font-size: 1.9rem;
    font-style: italic;
    line-height: 1.36;
}

.law-testimonial cite {
    color: var(--gold);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 600;

}

.dealership-hero .industry-hero__media img {
    filter: grayscale(0.25);
    opacity: 0.62;
}

.dealership-standards-section,
.dealership-experience-section,
.dealership-cta {
    padding: 112px 0;
}

.dealership-standards-section {
    background: var(--surface-soft);
}

.dealership-standards-grid {
    display: grid;
    grid-auto-rows: minmax(300px, auto);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.dealership-card {
    position: relative;
    display: grid;
    align-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 34px;
}

.dealership-card--image {
    grid-column: span 2;
    grid-row: span 2;
    align-content: end;
    min-height: 620px;
}

.dealership-card--image::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(245, 244, 238, 0.1), rgba(245, 244, 238, 0.92));
    content: "";
}

.dealership-card--image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

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

.dealership-card--image > div {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.dealership-card--dark {
    background: var(--forest);
}

.dealership-card--dark h3 {
    color: var(--surface);
}

.dealership-card--dark p {
    color: rgba(255, 255, 255, 0.78);
}

.dealership-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 18px;
    color: var(--gold);
}

.dealership-card__icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.dealership-card p {
    margin-bottom: 0;
}

.dealership-experience-section {
    background: var(--surface);
}

.dealership-experience-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.dealership-experience-layout__media {
    overflow: hidden;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
}

.dealership-experience-layout__media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.dealership-experience-layout__content > p:not(.section-label) {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: 1.08rem;
}

.dealership-detail-list {
    display: grid;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dealership-detail-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 16px;
}

.dealership-detail-list span {
    position: relative;
    top: 8px;
    width: 16px;
    height: 8px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    transform: rotate(-45deg);
}

.dealership-detail-list h3 {
    margin-bottom: 4px;
    font-family: var(--body-font);
    font-size: 0.82rem;
    font-weight: 600;

}

.dealership-detail-list p {
    margin-bottom: 0;
}

.dealership-cta {
    border-top: 1px solid rgba(193, 200, 194, 0.35);
    background: var(--surface-muted);
    text-align: center;
}

.dealership-cta__inner {
    display: grid;
    justify-items: center;
    max-width: 840px;
}

.dealership-cta p {
    max-width: 620px;
    margin-bottom: 34px;
    font-size: 1.08rem;
}

.retail-hero,
.retail-atmosphere-section,
.retail-brilliance-section,
.retail-scent-section {
    padding: 112px 0;
}

.retail-hero {
    background: var(--background);
}

.retail-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
    gap: 72px;
    align-items: center;
}

.retail-hero__content p:not(.section-label) {
    max-width: 540px;
    margin-bottom: 36px;
    font-size: 1.12rem;
}

.retail-hero__media {
    overflow: hidden;
    border-radius: var(--radius);
}

.retail-hero__media img {
    width: 100%;
    height: 600px;
    filter: grayscale(0.2);
    object-fit: cover;
}

.retail-atmosphere-section {
    background: var(--surface-soft);
}

.retail-split-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.retail-split-layout__media {
    overflow: hidden;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
}

.retail-split-layout__media img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

.retail-split-layout__content > p:not(.section-label) {
    max-width: 640px;
    margin-bottom: 34px;
    font-size: 1.05rem;
}

.retail-care-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.retail-care-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 16px;
    border-top: 1px solid rgba(193, 200, 194, 0.55);
    padding-top: 18px;
}

.retail-care-list span,
.retail-scent-list li::before {
    width: 16px;
    height: 8px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    transform: rotate(-45deg);
}

.retail-care-list span {
    position: relative;
    top: 8px;
}

.retail-care-list h3 {
    margin-bottom: 4px;
    font-family: var(--body-font);
    font-size: 0.82rem;
    font-weight: 600;

}

.retail-care-list p {
    margin-bottom: 0;
}

.retail-brilliance-section {
    background: var(--surface);
}

.retail-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.retail-bento-card {
    position: relative;
    display: grid;
    align-content: center;
    min-height: 300px;
    overflow: hidden;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface-muted);
    padding: 34px;
}

.retail-bento-card--image {
    grid-column: span 8;
    align-content: end;
    min-height: 430px;
    color: var(--surface);
}

.retail-bento-card--image::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(23, 54, 40, 0.02), rgba(23, 54, 40, 0.86));
    content: "";
}

.retail-bento-card--image img,
.retail-bento-card--shelves img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.retail-bento-card--image:hover img,
.retail-bento-card--shelves:hover img {
    transform: scale(1.035);
}

.retail-bento-card--image > div {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.retail-bento-card--image h3,
.retail-scent-section h2 {
    color: var(--surface);
}

.retail-bento-card--image p,
.retail-scent-section p:not(.section-label) {
    color: rgba(255, 255, 255, 0.82);
}

.retail-bento-card--soft {
    grid-column: span 5;
    background: var(--surface-soft);
}

.retail-bento-card--shelves {
    grid-column: span 7;
    min-height: 300px;
    padding: 0;
}

.retail-bento-card:not(.retail-bento-card--image):not(.retail-bento-card--soft):not(.retail-bento-card--shelves) {
    grid-column: span 4;
}

.retail-bento-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 18px;
    color: var(--gold);
}

.retail-bento-card__icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.retail-bento-card p {
    margin-bottom: 0;
}

.retail-scent-section {
    position: relative;
    overflow: hidden;
    background: var(--forest-deep);
    color: var(--surface);
}

.retail-scent-section__background {
    position: absolute;
    inset: 0;
    opacity: 0.12;
}

.retail-scent-section__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.retail-scent-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
    gap: 72px;
    align-items: center;
}

.retail-scent-layout__content > p:not(.section-label) {
    max-width: 650px;
    margin-bottom: 32px;
    font-size: 1.08rem;
}

.retail-scent-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.retail-scent-list li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0 0 18px 34px;
    color: rgba(255, 255, 255, 0.86);
}

.retail-scent-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.retail-scent-list li::before {
    position: absolute;
    top: 8px;
    left: 0;
    content: "";
}

.retail-scent-layout__media {
    position: relative;
}

.retail-scent-layout__media::before {
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(186, 194, 167, 0.35);
    border-radius: var(--radius);
    content: "";
}

.retail-scent-layout__media img {
    position: relative;
    width: 100%;
    height: 560px;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.25);
}

.wellness-hero {
    position: relative;
    display: grid;
    min-height: 690px;
    align-items: center;
    overflow: hidden;
    background: var(--forest);
    color: var(--surface);
}

.wellness-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(23, 54, 40, 0.96), rgba(23, 54, 40, 0.74) 50%, rgba(23, 54, 40, 0.18));
    content: "";
}

.church-hero::before {
    background: linear-gradient(90deg, rgba(23, 54, 40, 0.94), rgba(23, 54, 40, 0.72) 48%, rgba(179, 148, 84, 0.2));
}

.construction-hero::before {
    background: linear-gradient(90deg, rgba(23, 54, 40, 0.95), rgba(23, 54, 40, 0.7) 52%, rgba(47, 47, 47, 0.16));
}

.dealership-hero.wellness-hero::before {
    background: linear-gradient(90deg, rgba(23, 54, 40, 0.94), rgba(23, 54, 40, 0.68) 50%, rgba(47, 47, 47, 0.12));
}

.window-hero::before {
    background: linear-gradient(90deg, rgba(23, 54, 40, 0.92), rgba(23, 54, 40, 0.64) 50%, rgba(179, 148, 84, 0.16));
}

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

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

.wellness-hero__content {
    position: relative;
    z-index: 2;
    padding: 112px 0;
}

.wellness-hero h1 {
    max-width: 820px;
    color: var(--surface);
}

.wellness-hero p:not(.section-label) {
    max-width: 680px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
}

.wellness-hero__actions,
.wellness-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.wellness-positioning-section,
.wellness-industries-section,
.wellness-difference-section,
.wellness-services-section,
.wellness-trust-section,
.wellness-experience-section,
.wellness-gallery-section,
.wellness-reviews-section,
.wellness-faq-section,
.wellness-area-section,
.wellness-final-cta {
    padding: 112px 0;
}

.wellness-positioning-section {
    background: var(--surface);
}

.wellness-positioning,
.wellness-difference-layout,
.wellness-trust-layout,
.wellness-faq-layout,
.wellness-area-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 72px;
    align-items: start;
}

.wellness-positioning__copy p {
    font-size: 1.08rem;
}

.wellness-positioning__copy p:last-child {
    margin-bottom: 0;
}

.church-scripture-note {
    margin-top: 30px;
    border: 1px solid rgba(179, 148, 84, 0.35);
    border-radius: var(--radius);
    background: rgba(179, 148, 84, 0.08);
    padding: 24px;
}

.church-scripture-note p {
    margin-bottom: 10px;
    color: var(--forest-deep);
    font-family: var(--headline-font);
    font-size: 1.35rem;
    line-height: 1.35;
}

.church-scripture-note span {
    color: var(--ink-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.construction-phase-card {
    display: grid;
    align-content: start;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 28px;
}

.construction-phase-card--accent {
    background: var(--forest);
    color: var(--surface);
}

.construction-phase-card span {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid rgba(179, 148, 84, 0.42);
    border-radius: 50%;
    color: var(--gold);
    font-family: var(--headline-font);
}

.construction-phase-card h3 {
    font-size: 1.72rem;
}

.construction-phase-card--accent h3 {
    color: var(--surface);
}

.construction-phase-card p {
    margin-bottom: 20px;
}

.construction-phase-card--accent p {
    color: rgba(255, 255, 255, 0.8);
}

.construction-phase-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.construction-phase-card li {
    color: var(--ink-muted);
    line-height: 1.45;
}

.construction-phase-card--accent li {
    color: rgba(255, 255, 255, 0.78);
}

.construction-related-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.construction-related-links a {
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface-soft);
    color: var(--forest-deep);
    padding: 18px 20px;
    font-family: var(--headline-font);
    font-size: 1.16rem;
}

.construction-related-links a:hover,
.construction-related-links a:focus-visible {
    border-color: rgba(179, 148, 84, 0.62);
    color: var(--forest);
}

.wellness-industries-section,
.wellness-services-section,
.wellness-gallery-section,
.wellness-area-section {
    background: var(--background);
}

.wellness-industry-grid,
.wellness-service-grid,
.wellness-gallery-grid {
    display: grid;
    gap: 22px;
}

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

.wellness-industry-card {
    display: grid;
    grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
    min-height: 260px;
    overflow: hidden;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
}

.wellness-industry-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.wellness-industry-card div {
    display: grid;
    align-content: end;
    padding: 30px;
}

.wellness-industry-card p {
    margin-bottom: 0;
}

.wellness-difference-section,
.wellness-reviews-section {
    background: var(--surface-soft);
}

.wellness-difference-layout > div:first-child p:not(.section-label),
.wellness-trust-layout > div:first-child p:not(.section-label) {
    max-width: 560px;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.wellness-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.wellness-detail-grid span {
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--forest-deep);
    padding: 18px 20px;
    font-family: var(--headline-font);
    font-size: 1.18rem;
    line-height: 1.2;
}

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

.wellness-service-card {
    display: grid;
    min-height: 270px;
    align-content: space-between;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 30px;
}

.wellness-service-card--feature {
    grid-column: span 3;
    min-height: auto;
    background: var(--forest);
}

.wellness-service-card--feature h3 {
    color: var(--surface);
}

.wellness-service-card--feature p {
    color: rgba(255, 255, 255, 0.8);
}

.wellness-service-card p {
    margin-bottom: 0;
}

.wellness-trust-section {
    background: var(--forest);
    color: var(--surface);
}

.wellness-trust-section h2,
.wellness-final-cta h2 {
    color: var(--surface);
}

.wellness-trust-layout > div:first-child p:not(.section-label) {
    color: rgba(255, 255, 255, 0.82);
}

.wellness-trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wellness-trust-list li {
    border: 1px solid rgba(186, 194, 167, 0.26);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.84);
    padding: 16px 18px;
}

.wellness-experience-section {
    background: var(--surface);
    text-align: center;
}

.wellness-experience {
    display: grid;
    justify-items: center;
    max-width: 880px;
}

.wellness-experience p:not(.section-label) {
    max-width: 780px;
    margin-bottom: 0;
    font-size: 1.12rem;
}

.wellness-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wellness-gallery-grid figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
}

.wellness-gallery-grid img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.wellness-gallery-grid figcaption {
    color: var(--forest-deep);
    padding: 18px 20px;
    font-family: var(--headline-font);
    font-size: 1.2rem;
}

.wellness-reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 72px;
    align-items: start;
}

.wellness-testimonial-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.wellness-testimonial-list blockquote,
.wellness-google-widget {
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 30px;
}

.wellness-testimonial-list p {
    margin-bottom: 18px;
    color: var(--forest-deep);
    font-family: var(--headline-font);
    font-size: 1.32rem;
    font-style: italic;
    line-height: 1.35;
}

.wellness-testimonial-list cite {
    color: var(--ink-muted);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 600;
}

.wellness-google-widget {
    position: sticky;
    top: 118px;
}

.wellness-google-widget h3 {
    font-size: 2rem;
}

.wellness-google-widget__stars {
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: 0;
    line-height: 1;
}

.wellness-faq-section {
    background: var(--surface);
}

.wellness-faq-layout > div:first-child {
    position: sticky;
    top: 118px;
}

.wellness-faq-list {
    display: grid;
    gap: 12px;
}

.wellness-faq-list details {
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 20px 22px;
}

.wellness-faq-list summary {
    cursor: pointer;
    color: var(--forest-deep);
    font-family: var(--headline-font);
    font-size: 1.18rem;
    line-height: 1.25;
}

.wellness-faq-list p {
    margin: 14px 0 0;
}

.wellness-map {
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface-muted);
}

.wellness-map iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
}

.wellness-final-cta {
    background: var(--forest);
    color: var(--surface);
    text-align: center;
}

.wellness-final-cta__inner {
    display: grid;
    justify-items: center;
    max-width: 880px;
}

.wellness-final-cta p:not(.section-label) {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.reviews-page-hero {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: center;
    overflow: hidden;
    background: var(--forest);
    padding: 104px 0;
    text-align: center;
}

.reviews-page-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(23, 54, 40, 0.78);
    content: "";
}

.reviews-page-hero__media {
    position: absolute;
    inset: 0;
    opacity: 0.36;
}

.reviews-page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-page-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
}

.reviews-page-hero h1 {
    max-width: 850px;
    color: var(--surface);
}

.reviews-page-hero p:not(.section-label) {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
}

.reviews-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.reviews-page-section,
.reviews-cta {
    padding: 112px 0;
}

.reviews-page-section {
    background: var(--background);
}

.reviews-page-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 56px;
    align-items: start;
}

.reviews-scoreboard {
    position: sticky;
    top: 118px;
}

.reviews-scoreboard h2 {
    margin-bottom: 28px;
}

.review-score {
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 28px;
    margin-bottom: 22px;
}

.review-score span {
    display: block;
    color: var(--forest);
    font-family: var(--headline-font);
    font-size: 4rem;
    line-height: 1;
}

.review-score p {
    margin-bottom: 0;
    font-weight: 700;
}

.review-metrics {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.review-metrics li {
    border: 1px solid rgba(193, 200, 194, 0.55);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 18px;
}

.review-metrics span {
    display: block;
    margin-bottom: 4px;
    color: var(--gold);
    font-family: var(--headline-font);
    font-size: 1.6rem;
    line-height: 1;
}

.review-metrics p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.reviews-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.review-card {
    border: 1px solid rgba(193, 200, 194, 0.65);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 30px;
}

.review-card--featured {
    grid-column: span 2;
    background: var(--surface-soft);
}

.review-card__stars {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.9rem;
    line-height: 1;
}

.review-card blockquote {
    margin-bottom: 0;
}

.review-card blockquote p {
    margin-bottom: 22px;
    color: var(--forest-deep);
    font-family: var(--headline-font);
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.35;
}

.review-card cite {
    color: var(--ink-muted);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 600;

}

.reviews-cta {
    border-top: 1px solid rgba(193, 200, 194, 0.35);
    background: var(--forest);
    color: var(--surface);
    text-align: center;
}

.reviews-cta__inner {
    display: grid;
    justify-items: center;
    max-width: 840px;
}

.reviews-cta h2 {
    color: var(--surface);
}

.reviews-cta p {
    max-width: 620px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.reviews-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.leave-review-hero {
    position: relative;
    display: grid;
    min-height: 500px;
    place-items: center;
    overflow: hidden;
    background: var(--forest-deep);
    padding: 104px 0;
    text-align: center;
}

.leave-review-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(23, 54, 40, 0.76);
    content: "";
}

.leave-review-hero__media {
    position: absolute;
    inset: 0;
    opacity: 0.34;
}

.leave-review-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leave-review-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
}

.leave-review-hero h1 {
    max-width: 880px;
    color: var(--surface);
}

.leave-review-hero p:not(.section-label) {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
}

.leave-review-section {
    background: var(--background);
    padding: 112px 0;
}

.leave-review-layout {
    display: grid;
    grid-template-columns: minmax(270px, 0.66fr) minmax(0, 1.34fr);
    gap: 56px;
    align-items: start;
}

.leave-review-sidebar {
    position: sticky;
    top: 118px;
    display: grid;
    gap: 20px;
}

.leave-review-sidebar h2,
.leave-review-sidebar p {
    margin-bottom: 0;
}

.leave-review-sidebar p:not(.section-label) {
    color: var(--ink-muted);
    line-height: 1.75;
}

.leave-review-note {
    display: grid;
    gap: 8px;
    border: 1px solid rgba(193, 200, 194, 0.68);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 22px;
}

.leave-review-note strong {
    color: var(--forest-deep);
}

.leave-review-note a {
    width: fit-content;
    color: var(--forest);
    font-weight: 800;
    text-decoration: none;
}

.leave-review-note a:hover,
.leave-review-note a:focus-visible {
    color: var(--gold-strong);
}

.leave-review-form {
    display: grid;
    gap: 30px;
}

.review-rating-field {
    border: 1px solid rgba(193, 200, 194, 0.68);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 28px;
}

.review-rating-field legend {
    margin-bottom: 16px;
    color: var(--forest-deep);
    font-family: var(--headline-font);
    font-size: 1.8rem;
    font-weight: 500;
}

.review-rating-field p {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--ink-muted);
    line-height: 1.6;
}

.review-rating {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-rating__star {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(193, 200, 194, 0.76);
    border-radius: 50%;
    background: var(--surface);
    color: rgba(85, 88, 82, 0.36);
    cursor: pointer;
    font-size: 2.15rem;
    line-height: 1;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.review-rating__star:hover,
.review-rating__star:focus-visible,
.review-rating__star.is-selected,
.review-rating__star.is-preview {
    border-color: rgba(179, 148, 84, 0.65);
    color: var(--gold);
}

.review-rating__star:hover,
.review-rating__star:focus-visible {
    transform: translateY(-1px);
}

.review-positive-panel,
.review-feedback-panel {
    border: 1px solid rgba(193, 200, 194, 0.68);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 30px;
}

.review-positive-panel {
    display: grid;
    justify-items: start;
    gap: 16px;
}

.review-positive-panel h2,
.review-positive-panel p {
    margin-bottom: 0;
}

.review-positive-panel p:not(.section-label),
.review-feedback-panel .page-section-heading p {
    color: var(--ink-muted);
    line-height: 1.7;
}

.review-feedback-panel .page-section-heading {
    margin-bottom: 28px;
    text-align: left;
}

.review-feedback-panel .page-section-heading h2 {
    max-width: none;
    margin-left: 0;
}

.site-footer {
    border-top: 1px solid rgba(193, 200, 194, 0.45);
    background: var(--surface);
    padding: 86px 0 32px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 1fr));
    gap: 42px;
    margin-bottom: 58px;
}

.site-footer__brand p,
.footer-links p,
.footer-links address {
    margin-bottom: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    width: 206px;
    max-width: 100%;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    aspect-ratio: 532 / 339;
    object-fit: contain;
}

.footer-links {
    display: grid;
    gap: 12px;
    align-content: start;
}

.footer-links h2 {
    margin-bottom: 4px;
    font-family: var(--body-font);
    font-size: 0.78rem;
    font-weight: 600;

}

.footer-links a {
    width: fit-content;
    color: var(--ink-muted);
    font-size: 0.94rem;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--forest-deep);
}

.footer-links address {
    color: var(--ink-muted);
    font-style: normal;
    line-height: 1.55;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links .footer-social-link {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(186, 194, 167, 0.85);
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--forest);
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.footer-social-link path,
.footer-social-link__dot {
    fill: currentColor;
    stroke: none;
}

.footer-links .footer-social-link:hover,
.footer-links .footer-social-link:focus-visible {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--surface);
    transform: translateY(-1px);
}

.footer-links a.footer-links__cta {
    width: 100%;
    margin-top: 10px;
    color: var(--surface);
}

.footer-links a.footer-links__cta:hover,
.footer-links a.footer-links__cta:focus-visible {
    color: var(--surface);
}

.site-footer__bottom {
    border-top: 1px solid rgba(193, 200, 194, 0.35);
    padding-top: 24px;
    text-align: center;
}

.site-footer__bottom p {
    margin-bottom: 0;
    font-size: 0.82rem;
}

.not-found-section {
    display: grid;
    min-height: 520px;
    place-content: center;
    width: min(720px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0;
    text-align: center;
}

.not-found-section h1 {
    max-width: none;
}

.not-found-section p:not(.section-label) {
    margin-bottom: 28px;
}

.not-found-section .button {
    justify-self: center;
}

@media (max-width: 1000px) {
    h1 {
        max-width: 600px;
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.35rem;
    }

    .site-header__inner {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .site-nav,
    .site-header__actions {
        display: none;
    }

    .site-nav {
        grid-column: 1 / -1;
        justify-content: stretch;
        gap: 0;
        border-top: 1px solid rgba(193, 200, 194, 0.5);
        padding: 10px 0 18px;
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav__link {
        padding: 12px 0;
    }

    .site-nav__link::after {
        display: none;
        bottom: 6px;
        right: auto;
        width: 44px;
    }

    .site-nav__item {
        display: grid;
        align-items: stretch;
    }

    .site-nav__submenu {
        position: static;
        width: 100%;
        border: 0;
        border-left: 1px solid rgba(179, 148, 84, 0.35);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        padding: 0 0 8px 16px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .site-nav__submenu::before {
        display: none;
    }

    .site-nav__item--has-menu:hover .site-nav__submenu,
    .site-nav__item--has-menu:focus-within .site-nav__submenu {
        transform: none;
    }

    .site-nav__submenu-link {
        padding: 9px 0;
        font-size: 0.88rem;
    }

    .site-nav__submenu-link:hover,
    .site-nav__submenu-link:focus-visible,
    .site-nav__submenu-link.is-active {
        background: transparent;
    }

    .site-nav__link.is-active,
    .site-nav__submenu-link.is-active {
        text-decoration: underline;
        text-decoration-color: var(--gold);
        text-decoration-thickness: 2px;
        text-underline-offset: 6px;
    }

    .hero-section {
        min-height: 680px;
    }

    .hero-section__media {
        width: 100%;
        opacity: 0.36;
    }

    .hero-section::before {
        background: rgba(23, 54, 40, 0.88);
    }

    .audience-grid,
    .trust-grid,
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-section-heading--split,
    .services-photo-grid,
    .trust-layout,
    .home-story-layout,
    .home-reviews-layout,
    .renewal-layout,
    .quote-section__inner,
    .process-layout,
    .service-detail-hero__grid,
    .service-detail-split,
    .about-hero__grid,
    .people-section__grid,
    .quote-request-layout,
    .law-discretion-layout,
    .dealership-experience-layout,
    .retail-hero__grid,
    .retail-split-layout,
    .retail-scent-layout,
    .reviews-page-layout,
    .leave-review-layout,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .home-section-heading--split {
        gap: 18px;
        text-align: center;
    }

    .trust-copy,
    .google-review-widget {
        position: static;
    }

    .service-feature,
    .service-tile,
    .service-tile--wide,
    .service-tile--image {
        grid-column: span 12;
    }

    .service-feature {
        grid-template-columns: 1fr;
    }

    .service-detail-card-grid,
    .service-detail-link-grid {
        grid-template-columns: 1fr;
    }

    .process-layout__media img {
        height: 420px;
    }

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

    .principle-card--wide {
        grid-column: span 2;
    }

    .quote-sidebar {
        position: static;
    }

    .law-feature-grid {
        grid-auto-rows: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .law-feature-card--image,
    .law-feature-card--dark {
        grid-column: span 2;
        min-height: 360px;
    }

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

    .dealership-card--image {
        grid-column: span 2;
        min-height: 460px;
    }

    .retail-bento-card--image,
    .retail-bento-card--soft,
    .retail-bento-card--shelves,
    .retail-bento-card:not(.retail-bento-card--image):not(.retail-bento-card--soft):not(.retail-bento-card--shelves) {
        grid-column: span 12;
    }

    .reviews-scoreboard,
    .leave-review-sidebar {
        position: static;
    }

    .quote-section__inner {
        align-items: start;
    }

    .quote-section__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .container,
    .site-header__inner {
        width: min(100% - 32px, var(--container));
    }

    .toast-region {
        top: 90px;
        right: 16px;
        left: 16px;
        width: auto;
    }

    .brand-logo {
        width: 144px;
    }

    h1 {
        font-size: 2.55rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section,
    .audience-section,
    .services-section,
    .trust-section,
    .home-story-section,
    .values-section,
    .home-testimonials-section,
    .quote-section,
    .renewal-section,
    .services-hero,
    .services-catalog,
    .process-section,
    .services-cta,
    .service-detail-hero,
    .service-detail-section,
    .service-detail-split-section,
    .service-detail-link-section,
    .service-detail-cta,
    .about-hero,
    .story-section,
    .principles-section,
    .people-section,
    .about-cta,
    .quote-page-hero,
    .quote-request-section,
    .industry-hero,
    .law-refinement-section,
    .law-discretion-section,
    .law-testimonial,
    .dealership-standards-section,
    .dealership-experience-section,
    .dealership-cta,
    .retail-hero,
    .retail-atmosphere-section,
    .retail-brilliance-section,
    .retail-scent-section,
    .reviews-page-hero,
    .reviews-page-section,
    .reviews-cta,
    .leave-review-hero,
    .leave-review-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-section {
        min-height: 620px;
    }

    .hero-section__content {
        padding: 28px 0;
    }

    .audience-grid,
    .services-photo-grid,
    .trust-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        min-height: 86px;
    }

    .service-photo-card {
        min-height: 250px;
    }

    .trust-card,
    .value-principle-card {
        min-height: auto;
    }

    .home-story__media {
        min-height: 330px;
        padding: 28px;
    }

    .renewal-card {
        border-top: 1px solid rgba(179, 148, 84, 0.58);
        border-left: 0;
        padding-top: 28px;
        padding-left: 0;
    }

    .quote-section__actions,
    .hero-section__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .services-hero {
        min-height: 460px;
    }

    .services-bento {
        gap: 16px;
    }

    .service-feature__media {
        min-height: 260px;
    }

    .service-feature__content,
    .service-tile {
        min-height: auto;
        padding: 28px;
    }

    .process-list li {
        grid-template-columns: 42px 1fr;
        gap: 16px;
    }

    .process-list span {
        width: 42px;
        height: 42px;
    }

    .process-layout__media img {
        height: 320px;
    }

    .service-detail-hero__media img,
    .service-detail-split__media img {
        height: 360px;
    }

    .about-hero__media img,
    .people-section__media img {
        height: 380px;
    }

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

    .principle-card,
    .principle-card--wide {
        grid-column: auto;
        min-height: auto;
        padding: 28px;
    }

    .quote-page-hero {
        min-height: 440px;
    }

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

    .terms-sidebar {
        position: static;
    }

    .terms-rate-grid {
        grid-template-columns: 1fr;
    }

    .client-access-grid {
        grid-template-columns: 1fr;
    }

    .client-request-grid {
        grid-template-columns: 1fr;
    }

    .employment-verification {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .quote-form {
        padding: 24px;
    }

    .review-positive-panel,
    .review-feedback-panel,
    .review-rating-field {
        padding: 24px;
    }

    .review-rating {
        flex-wrap: nowrap;
        gap: clamp(4px, 1.6vw, 8px);
    }

    .review-rating__star {
        flex: 0 0 auto;
        width: clamp(38px, 12vw, 48px);
        height: clamp(38px, 12vw, 48px);
        font-size: clamp(1.55rem, 7vw, 1.9rem);
    }

    .form-grid,
    .form-fieldset {
        grid-template-columns: 1fr;
    }

    .quote-form__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .quote-form__actions .button {
        width: 100%;
    }

    .industry-hero {
        min-height: 520px;
    }

    .law-feature-grid {
        grid-template-columns: 1fr;
    }

    .law-feature-card,
    .law-feature-card--image,
    .law-feature-card--dark {
        grid-column: auto;
        min-height: auto;
        padding: 28px;
    }

    .law-feature-card--image {
        min-height: 420px;
    }

    .law-discretion-layout__media::after {
        right: -12px;
        bottom: -12px;
    }

    .law-assurance-list li {
        grid-template-columns: 46px 1fr;
        gap: 14px;
    }

    .law-assurance-list span {
        width: 46px;
        height: 46px;
    }

    .law-testimonial blockquote p {
        font-size: 1.45rem;
    }

    .dealership-standards-grid {
        grid-auto-rows: auto;
        grid-template-columns: 1fr;
    }

    .dealership-card,
    .dealership-card--image {
        grid-column: auto;
        min-height: auto;
        padding: 28px;
    }

    .dealership-card--image {
        min-height: 420px;
    }

    .dealership-experience-layout__media img {
        height: 360px;
    }

    .retail-hero__media img,
    .retail-split-layout__media img,
    .retail-scent-layout__media img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .retail-hero__media img {
        object-position: center;
    }

    .retail-split-layout__media img {
        object-position: center 58%;
    }

    .retail-scent-layout__media img {
        aspect-ratio: 1 / 1;
        object-position: center;
    }

    .retail-scent-layout__media::before {
        inset: 10px -10px -10px 10px;
    }

    .retail-bento-grid {
        grid-template-columns: 1fr;
    }

    .retail-bento-card,
    .retail-bento-card--image,
    .retail-bento-card--soft,
    .retail-bento-card--shelves {
        grid-column: auto;
        min-height: auto;
        padding: 28px;
    }

    .retail-bento-card--image,
    .retail-bento-card--shelves {
        min-height: 300px;
        aspect-ratio: 4 / 3;
    }

    .retail-bento-card--image img {
        object-position: center;
    }

    .retail-bento-card--shelves img {
        object-position: center 42%;
    }

    .reviews-page-hero {
        min-height: 440px;
    }

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

    .review-card--featured {
        grid-column: auto;
    }

    .review-card {
        padding: 24px;
    }

    .site-footer {
        padding-top: 64px;
    }
}

@media (max-width: 1000px) {
    body.nav-open .site-header {
        max-height: 100svh;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .site-nav.is-open {
        max-height: calc(100svh - 88px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .site-nav__item--has-menu .site-nav__submenu {
        display: none;
    }

    .site-nav__item--has-menu.is-submenu-open .site-nav__submenu {
        display: grid;
    }

    .site-nav__link[data-services-menu-trigger] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .site-nav__link[data-services-menu-trigger] span[aria-hidden="true"] {
        font-size: 1rem;
        line-height: 1;
        transition: transform 160ms ease;
    }

    .site-nav__item--has-menu.is-submenu-open .site-nav__link[data-services-menu-trigger] span[aria-hidden="true"] {
        transform: rotate(180deg);
    }
}

@media (max-width: 1100px) {
    .retail-bento-grid {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
    }

    .retail-bento-grid > .retail-bento-card,
    .retail-bento-grid > .retail-bento-card--image,
    .retail-bento-grid > .retail-bento-card--soft,
    .retail-bento-grid > .retail-bento-card--shelves {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
    }

    .retail-bento-card {
        min-width: 0;
    }

    .retail-bento-card--image,
    .retail-bento-card--shelves {
        min-height: clamp(280px, 64vw, 430px);
        aspect-ratio: 4 / 3;
    }

    .retail-bento-card--shelves {
        padding: 0;
    }

    .retail-bento-card--image img,
    .retail-bento-card--shelves img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 760px) {
    .retail-hero,
    .retail-atmosphere-section,
    .retail-brilliance-section,
    .retail-scent-section {
        overflow-x: hidden;
    }

    .retail-hero__grid,
    .retail-split-layout,
    .retail-scent-layout {
        gap: 28px;
    }

    .retail-brilliance-section .page-section-heading {
        text-align: left;
    }

    .retail-brilliance-section .page-section-heading h2 {
        max-width: 100%;
        font-size: 2rem;
    }

    .retail-bento-grid {
        gap: 18px;
        width: 100%;
    }

    .retail-bento-card,
    .retail-bento-card--soft {
        display: block;
        min-height: 0;
        padding: 24px;
    }

    .retail-bento-card--image {
        display: block;
        min-height: 0;
        padding: 0;
        background: var(--surface);
        color: var(--ink);
    }

    .retail-bento-card--image::before {
        display: none;
    }

    .retail-bento-card--image img,
    .retail-bento-card--shelves img {
        position: relative;
        inset: auto;
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        transform: none;
    }

    .retail-bento-card--image:hover img,
    .retail-bento-card--shelves:hover img {
        transform: none;
    }

    .retail-bento-card--image > div {
        max-width: none;
        padding: 24px;
    }

    .retail-bento-card--image h3,
    .retail-bento-card h3 {
        color: var(--forest-deep);
        font-size: 1.7rem;
        line-height: 1.15;
    }

    .retail-bento-card--image p,
    .retail-bento-card p {
        color: var(--ink-muted);
        font-size: 1rem;
        line-height: 1.6;
    }

    .retail-bento-card__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
    }

    .retail-bento-card__icon svg {
        width: 34px;
        height: 34px;
    }

    .retail-bento-card--shelves {
        min-height: 0;
        padding: 0;
    }

    .retail-hero__media img,
    .retail-split-layout__media img,
    .retail-scent-layout__media img {
        height: auto;
        max-height: none;
        aspect-ratio: 4 / 3;
    }

    .retail-care-list li {
        grid-template-columns: 1fr;
    }

    .retail-care-list span {
        display: none;
    }
}

@media (max-width: 1000px) {
    .wellness-positioning,
    .wellness-difference-layout,
    .wellness-trust-layout,
    .wellness-faq-layout,
    .wellness-area-layout,
    .wellness-reviews-layout {
        grid-template-columns: 1fr;
    }

    .wellness-industry-grid,
    .wellness-service-grid,
    .wellness-gallery-grid,
    .construction-phase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wellness-service-card--feature {
        grid-column: span 2;
    }

    .wellness-google-widget,
    .wellness-faq-layout > div:first-child {
        position: static;
    }
}

@media (max-width: 640px) {
    .wellness-hero,
    .wellness-positioning-section,
    .wellness-industries-section,
    .wellness-difference-section,
    .wellness-services-section,
    .wellness-trust-section,
    .wellness-experience-section,
    .wellness-gallery-section,
    .wellness-reviews-section,
    .wellness-faq-section,
    .wellness-area-section,
    .wellness-final-cta {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .wellness-hero {
        min-height: 620px;
    }

    .wellness-hero__content {
        padding: 28px 0;
    }

    .wellness-hero__actions,
    .wellness-final-cta__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .wellness-industry-grid,
    .wellness-service-grid,
    .wellness-detail-grid,
    .wellness-trust-list,
    .wellness-gallery-grid,
    .construction-phase-grid,
    .construction-related-links {
        grid-template-columns: 1fr;
    }

    .wellness-industry-card {
        grid-template-columns: 1fr;
    }

    .wellness-industry-card img {
        height: 240px;
        min-height: 0;
    }

    .wellness-service-card,
    .wellness-service-card--feature {
        grid-column: auto;
        min-height: auto;
        padding: 26px;
    }

    .wellness-gallery-grid img {
        height: 260px;
    }
}
