:root {
    --ink: #151a17;
    --muted: #5e6766;
    --line: #e5ebe4;
    --paper: #ffffff;
    --soft: #f3f6f2;
    --white: #ffffff;
    --gold: #f0c21b;
    --gold-dark: #b68a00;
    --deep: #255c2b;
    --deep-2: #153f18;
    --blue: #21677a;
    --clay: #7a5537;
    --shadow: 0 24px 70px rgba(16, 24, 32, 0.12);
    --soft-shadow: 0 18px 50px rgba(16, 24, 32, 0.06);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
    width: 100%;
    overflow-x: hidden;
}

body,
main {
    max-width: 100%;
}

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

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

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px clamp(18px, 4vw, 56px);
    color: var(--white);
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, #2a642f 0%, #255c2b 100%);
    box-shadow: none;
    transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    color: var(--white);
    border: 0;
    background: linear-gradient(180deg, #2a642f 0%, #255c2b 100%);
    box-shadow: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: clamp(60px, 5.8vw, 78px);
    height: auto;
    flex: 0 0 auto;
    object-fit: contain;
}

.brand > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    max-width: clamp(180px, 26vw, 360px);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: clamp(1.06rem, 0.45vw + 0.9rem, 1.14rem);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 1.05;
}

.brand small {
    font-size: 0.66rem;
    line-height: 1.08;
    color: currentColor;
    opacity: 0.78;
}

.brand-legal {
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 0.92rem;
}

.site-nav a {
    position: relative;
    padding: 8px 12px;
    border-radius: 999px;
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a:active {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.site-nav a.is-active {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-scrolled .site-nav a:active,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible,
.site-header.is-open .site-nav a:active {
    background: var(--gold);
    color: var(--ink);
}

.site-nav .nav-cta {
    margin-left: 4px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta:active {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 8px;
    background: transparent;
    color: inherit;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    margin: 5px 0;
}

.hero {
    position: relative;
    min-height: clamp(680px, 86vh, 860px);
    padding: 126px clamp(18px, 5vw, 72px) 72px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 32%),
        linear-gradient(180deg, #0b2416 0%, #081611 100%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    min-height: min(100%, 620px);
}

.hero-bg-video,
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-video {
    object-fit: cover;
    object-position: 66% center;
}

.hero-bg-overlay {
    background:
        radial-gradient(circle at 24% 44%, rgba(240, 194, 27, 0.12) 0%, rgba(240, 194, 27, 0) 30%),
        linear-gradient(90deg, rgba(4, 10, 12, 0.84) 0%, rgba(4, 10, 12, 0.72) 33%, rgba(4, 10, 12, 0.34) 68%, rgba(4, 10, 12, 0.14) 100%),
        linear-gradient(180deg, rgba(4, 10, 12, 0.16) 0%, rgba(4, 10, 12, 0.32) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(780px, 100%);
    min-width: 0;
    padding-top: clamp(40px, 7vh, 90px);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.hero-badges span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 12px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 18px;
    max-width: 12ch;
    font-size: 6.2rem;
    line-height: 0.93;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

h2 {
    margin-bottom: 16px;
    font-size: 3.4rem;
    line-height: 1.03;
    letter-spacing: 0;
}

.section-heading h2 {
    color: #4d5856;
}

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

.hero-copy {
    width: min(660px, 100%);
    margin-bottom: 26px;
    font-size: 1.16rem;
    color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.contact-layout {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

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

.button.primary {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 12px 30px rgba(212, 165, 54, 0.28);
}

.button.secondary {
    color: var(--ink);
    background: var(--white);
}

.button.ghost {
    border-color: rgba(255, 255, 255, 0.36);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.button.light {
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 150px));
    gap: 10px;
    margin-top: 30px;
}

.hero-metrics div {
    min-height: 82px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
}

.quick-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}

.quick-strip div {
    padding: 26px clamp(18px, 4vw, 42px);
    background: var(--white);
}

.quick-strip span,
.about-panel span,
.contact-method span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.section,
.split-section,
.contact-section {
    padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section,
.process-section,
.calculator-section,
.split-section,
.contact-section {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
    scroll-margin-top: 210px;
}

.section-heading {
    width: min(900px, 100%);
    margin-bottom: 38px;
}

.section-heading p,
.split-content p,
.about-copy p,
.contact-copy p {
    color: var(--muted);
    font-size: 1.06rem;
}

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

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

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

.visitor-grid article {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.visitor-grid p {
    color: var(--muted);
}

.visitor-grid a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: auto;
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--gold);
    font-weight: 900;
}

.page-directory {
    background: var(--soft);
}

.page-directory .visitor-grid a {
    width: 100%;
}

.service-card {
    position: relative;
    min-height: 292px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 165, 54, 0.5);
    box-shadow: 0 24px 70px rgba(16, 24, 32, 0.13);
}

.service-number {
    position: absolute;
    top: 26px;
    right: 26px;
    display: inline-block;
    color: rgba(33, 103, 122, 0.5);
    font-weight: 900;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 46px;
    border-radius: 8px;
    color: var(--ink);
    background: #f2dfaa;
    font-size: 0.78rem;
    font-weight: 900;
}

.service-card p {
    color: var(--muted);
}

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

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    box-shadow: var(--soft-shadow);
}

.audience-grid div {
    min-height: 200px;
    padding: 26px;
    background: var(--white);
}

.audience-grid strong,
.audience-grid span {
    display: block;
}

.audience-grid strong {
    margin-bottom: 12px;
    font-size: 1.08rem;
}

.audience-grid span {
    color: var(--muted);
}

.process-section {
    padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
    background: var(--white);
}

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

.process-steps article {
    position: relative;
    min-height: 274px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f8fbfa);
    box-shadow: var(--soft-shadow);
}

.process-steps article span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 46px;
    border-radius: 50%;
    background: var(--deep);
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(14, 59, 57, 0.18);
}

.process-steps article p {
    color: var(--muted);
}

.calculator-hero {
    position: relative;
    min-height: 100vh;
    padding: 118px clamp(18px, 4vw, 60px) 64px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.84) 34%, rgba(0, 0, 0, 0.28) 100%),
        linear-gradient(180deg, #101010 0%, #050505 100%);
}

.calculator-hero__media,
.calculator-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.calculator-hero__media {
    z-index: 0;
}

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

.calculator-hero__overlay {
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.84) 34%, rgba(0, 0, 0, 0.28) 100%);
}

.calculator-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1280px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calculator-hero__content {
    width: min(940px, 100%);
    padding: clamp(34px, 6vw, 92px) 0 22px;
    text-align: center;
    margin: 0 auto;
}

.calculator-hero__content .eyebrow {
    margin-bottom: 20px;
    color: #ffd21e;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.calculator-hero__content h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.05em;
    max-width: none;
    margin-bottom: 18px;
    font-size: clamp(3.05rem, 4.5vw, 5.3rem);
    line-height: 0.92;
    color: var(--white);
    text-wrap: balance;
    text-align: center;
}

.calculator-hero__content h1 span {
    display: block;
}

.calculator-hero__content .hero-copy {
    max-width: 860px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.08rem, 1.25vw, 1.26rem);
    line-height: 1.46;
    color: rgba(255, 255, 255, 0.94);
    text-align: center;
    text-wrap: balance;
}

.gold-calculator--hero {
    display: grid;
    gap: 18px;
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 26px 24px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: rgba(61, 61, 61, 0.48);
    backdrop-filter: blur(16px);
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.24);
}

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

.gold-calculator label {
    display: grid;
    gap: 10px;
    font-weight: 800;
}

.gold-calculator label span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.gold-calculator input,
.gold-calculator select {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.gold-calculator .button {
    width: fit-content;
    min-width: 170px;
}

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

.calculator-results {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.calculator-results--hero .result-card {
    min-height: 118px;
    padding: 18px 18px 16px;
    background: rgba(31, 31, 31, 0.62);
    transition: background-color 180ms ease, transform 180ms ease;
}

.calculator-results--hero .result-card span,
.calculator-results--hero .result-card strong {
    display: block;
}

.calculator-results--hero .result-card span {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.calculator-results--hero .result-card strong {
    font-size: 1.18rem;
    line-height: 1.1;
    color: var(--white);
}

.calculator-results--hero .result-card--total {
    background: var(--gold);
}

.calculator-results--hero .result-card--total span,
.calculator-results--hero .result-card--total strong {
    color: #111;
}

.calculator-results--hero.has-results .result-card--total strong {
    color: #111;
}

.calculator-results--hero.needs-review .result-card strong {
    color: #fff1ba;
}

.calculator-note {
    margin: 18px auto 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 1.08vw, 1.16rem);
    font-weight: 700;
    line-height: 1.48;
}

.calculator-note--hero {
    max-width: 1080px;
    text-align: center;
}

.panel-note {
    margin: -6px 0 18px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 54px);
    align-items: start;
    overflow: hidden;
    background: #0d3433;
    color: var(--white);
}

.split-media {
    width: min(100%, 620px);
    min-height: 520px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.split-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: 34% 52%;
}

.split-content {
    min-width: 0;
}

.split-content p {
    color: rgba(255, 255, 255, 0.78);
}

.split-content h2 {
    max-width: 15ch;
    font-size: 2.9rem;
}

.standard-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.standard-list div {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.standard-list strong,
.standard-list span {
    display: block;
}

.standard-list span {
    color: rgba(255, 255, 255, 0.72);
}

.compliance-section {
    background: var(--white);
}

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

.licence-panel {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfa;
    box-shadow: var(--soft-shadow);
}

.licence-panel span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.licence-panel strong {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.compliance-grid article,
.legal-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.compliance-grid p,
.legal-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.legal-section {
    background: #eef4f0;
}

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

.faq-section {
    background: #f4f0e6;
}

.faq-list {
    display: grid;
    gap: 10px;
    width: min(960px, 100%);
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(16, 24, 32, 0.05);
}

.faq-list summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 900;
}

.faq-list p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
}

.company-profile {
    display: grid;
    gap: 24px;
    background: var(--white);
}

.company-profile--about {
    position: relative;
    overflow: hidden;
    padding-top: clamp(120px, 10vw, 152px);
    padding-bottom: clamp(68px, 8vw, 104px);
    background:
        radial-gradient(circle at 18% 12%, rgba(35, 96, 45, 0.08) 0%, rgba(35, 96, 45, 0) 32%),
        radial-gradient(circle at 82% 18%, rgba(15, 70, 42, 0.06) 0%, rgba(15, 70, 42, 0) 28%),
        linear-gradient(180deg, #f7faf6 0%, #ffffff 28%, #f4f8f3 100%);
}

.company-profile--about::before,
.company-profile--about::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(6px);
}

.company-profile--about::before {
    top: 96px;
    right: -140px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(47, 107, 53, 0.12) 0%, rgba(47, 107, 53, 0) 72%);
}

.company-profile--about::after {
    left: -130px;
    bottom: 280px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(17, 92, 29, 0.08) 0%, rgba(17, 92, 29, 0) 72%);
}

.company-profile__intro {
    width: min(980px, 100%);
    margin: 0 auto;
    text-align: center;
}

.company-profile__intro .eyebrow {
    color: #63706e;
    letter-spacing: 0.12em;
}

.company-profile__intro h2 {
    margin-bottom: 14px;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1.02;
    color: #115c1d;
    text-wrap: balance;
}

.company-profile__lead {
    width: min(980px, 100%);
    margin: 0 auto;
    color: #18201e;
    font-size: clamp(1.02rem, 1.35vw, 1.25rem);
    font-weight: 600;
    line-height: 1.68;
}

.company-profile__strip {
    width: min(1180px, 100%);
    margin: 6px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 34px;
    background: #2f6b35;
    box-shadow: 0 18px 40px rgba(16, 24, 32, 0.14);
}

.company-profile__strip div {
    padding: 24px 28px;
    color: var(--white);
    background: #2f6b35;
}

.company-profile__strip span,
.company-profile__strip strong {
    display: block;
}

.company-profile__strip span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.company-profile__strip strong {
    font-size: 1.02rem;
    line-height: 1.35;
}

.company-profile__cards {
    width: min(1180px, 100%);
    margin: 6px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.profile-card {
    padding: 38px clamp(22px, 3vw, 40px);
    border: 1px solid #eef1ee;
    border-radius: 34px;
    background: var(--white);
    box-shadow: 0 18px 48px rgba(16, 24, 32, 0.1);
    text-align: center;
}

.profile-card__icon {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    color: #176322;
    border: 5px solid currentColor;
    border-radius: 50%;
}

.profile-card__icon span {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    border: 5px solid currentColor;
    border-radius: 50%;
}

.profile-card__icon span::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.profile-card__icon--check span {
    width: 30px;
    height: 18px;
    border: 0;
    border-left: 5px solid currentColor;
    border-bottom: 5px solid currentColor;
    border-radius: 0;
    transform: translateY(-2px) rotate(-45deg);
}

.profile-card__icon--check span::after {
    display: none;
}

.profile-card h3 {
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 2vw, 2.3rem);
    line-height: 1.02;
}

.profile-card p {
    margin-bottom: 0;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.68;
}

.profile-card--vision p,
.profile-card--mission p {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
}

.company-profile__founder {
    width: min(1180px, 100%);
    margin: 8px auto 0;
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    gap: 0;
    align-items: stretch;
}

.gallery-section {
    background: var(--white);
}

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

.gallery-card {
    overflow: hidden;
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 18px 48px rgba(16, 24, 32, 0.08);
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
}

.gallery-card div {
    padding: 18px 20px 22px;
}

.gallery-card strong,
.gallery-card span {
    display: block;
}

.gallery-card strong {
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.gallery-card span {
    color: var(--muted);
    font-weight: 600;
}

.founder-media {
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    border-radius: 34px 0 0 34px;
    background: #eef1ed;
    box-shadow: 0 18px 48px rgba(16, 24, 32, 0.08);
}

.founder-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    box-sizing: border-box;
}

.founder-copy {
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 36px clamp(24px, 3vw, 46px);
    color: var(--white);
    border-radius: 0 34px 34px 0;
    background: linear-gradient(180deg, #2f6b35 0%, #245d2a 100%);
    box-shadow: 0 18px 48px rgba(16, 24, 32, 0.08);
}

.founder-copy h3 {
    margin-bottom: 4px;
    font-size: clamp(1.8rem, 2.6vw, 2.35rem);
    line-height: 1.06;
    text-wrap: balance;
}

.founder-copy p {
    margin-bottom: 0;
    font-size: 1.02rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.72;
}

.company-profile__team {
    margin-top: 42px;
}

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

.team-card {
    display: grid;
    grid-template-columns: minmax(140px, 0.8fr) minmax(0, 1.2fr);
    gap: 18px;
    align-items: start;
    padding: 24px;
    border: 1px solid rgba(37, 92, 43, 0.12);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 243, 0.98) 100%);
    box-shadow: 0 18px 48px rgba(16, 24, 32, 0.08);
}

.team-card__media {
    overflow: hidden;
    min-height: 220px;
    border-radius: 22px;
    background: #eef1ed;
    box-shadow: inset 0 0 0 1px rgba(37, 92, 43, 0.08);
}

.team-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-card__body {
    min-width: 0;
    display: grid;
    align-content: start;
}

.team-card__role {
    margin-bottom: 6px;
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.team-card h3 {
    margin-bottom: 10px;
    font-size: 1.45rem;
}

.team-card p {
    margin-bottom: 0;
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 600;
}

.contact-section {
    background:
        linear-gradient(135deg, #101820 0%, #0e3b39 100%);
    color: var(--white);
}

.contact-copy {
    width: min(780px, 100%);
    margin-bottom: 34px;
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.location-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 18px;
}

.location-card {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
}

.location-card--details {
    align-content: start;
}

.location-card--map {
    padding: 18px;
    background: rgba(10, 16, 14, 0.38);
}

.location-card__heading {
    display: grid;
    gap: 10px;
}

.location-card__heading .eyebrow {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.location-card__heading h3 {
    margin-bottom: 0;
    font-size: clamp(1.7rem, 2.3vw, 2.3rem);
    line-height: 1.08;
}

.location-card__pin {
    margin-right: 8px;
    font-size: 0.92em;
}

.location-card__heading p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.location-card__address,
.location-card__meta strong,
.location-map__fallback p {
    overflow-wrap: anywhere;
}

.location-card__address {
    margin-bottom: 0;
    line-height: 1.62;
}

.location-card__note,
.location-card__meta {
    display: grid;
    gap: 14px;
}

.location-card__note {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.location-card__note--summary {
    padding: 18px 18px 16px;
    border-top: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.location-card__note span,
.location-card__meta span {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.location-card__note strong,
.location-card__meta strong {
    display: block;
    color: var(--white);
}

.location-card__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.location-card__meta div {
    min-width: 0;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.location-card__meta strong {
    margin-top: 6px;
    font-size: 1rem;
    line-height: 1.45;
}

.location-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-card__actions .button {
    flex: 1 1 170px;
    justify-content: center;
    text-align: center;
}

.button--with-icon {
    gap: 10px;
}

.button--with-icon svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.button--with-icon:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

.location-map {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 420px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.location-map__fallback {
    display: none;
    gap: 14px;
    align-content: center;
    min-height: 420px;
    padding: 22px;
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(240, 194, 27, 0.18), transparent 34%),
        rgba(11, 15, 14, 0.96);
}

.location-map__fallback--visible {
    display: grid;
}

.location-map.is-unavailable iframe {
    display: none;
}

.location-map.is-unavailable .location-map__fallback {
    display: grid;
}

.location-map--fallback {
    min-height: 420px;
    background: transparent;
}

.location-map__fallback h3,
.location-map--fallback h3 {
    margin-bottom: 0;
    font-size: clamp(1.55rem, 2vw, 2rem);
}

.location-map__fallback span,
.location-map--fallback span {
    display: inline-block;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.location-map__fallback p,
.location-map--fallback p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.location-card__footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.location-card__footer {
    padding-top: 6px;
}

.contact-layout {
    align-items: stretch;
}

.contact-methods,
.contact-form {
    flex: 1 1 360px;
}

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

.contact-method {
    min-height: 142px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 165, 54, 0.42);
    background: rgba(255, 255, 255, 0.1);
}

.contact-method span {
    color: rgba(255, 255, 255, 0.64);
}

.contact-form {
    padding: 28px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.contact-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    font-weight: 800;
}

.form-block {
    padding-bottom: 8px;
}

.form-block + .form-block {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.form-block h3 {
    margin-bottom: 14px;
    font-size: 1rem;
}

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

.form-grid .wide {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.gold-calculator input:focus,
.gold-calculator select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 165, 54, 0.18);
}

.contact-form textarea {
    resize: vertical;
}

.contact-layout--form {
    width: 100%;
}

.form-status {
    min-height: 24px;
    margin: 12px 0 0;
    color: var(--deep);
    font-weight: 700;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px clamp(18px, 5vw, 72px);
    color: var(--white);
    background: linear-gradient(180deg, #153b1c 0%, #0d3110 100%);
}

.site-footer strong,
.site-footer span {
    display: block;
}

.site-footer span {
    color: rgba(255, 255, 255, 0.62);
}

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

.site-footer a {
    color: var(--gold);
    font-weight: 800;
}

@media (max-width: 1120px) {
    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 2.8rem;
    }

    .split-content h2 {
        font-size: 2.65rem;
    }
}

@media (max-width: 980px) {
    .service-grid,
    .audience-grid,
    .process-steps,
    .calculator-fields,
    .visitor-grid,
    .compliance-layout,
    .compliance-grid,
    .company-profile__cards,
    .company-profile__strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero {
        min-height: 760px;
    }

    .hero-bg-video {
        object-position: 62% center;
    }

    .split-section,
    .about-section,
    .compliance-layout,
    .gallery-grid,
    .company-profile__founder {
        grid-template-columns: 1fr;
    }

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

    .split-media,
    .split-media img {
        min-height: 360px;
    }

    .split-media {
        width: 100%;
    }

    .founder-media {
        min-height: 420px;
        border-radius: 34px 34px 0 0;
    }

    .founder-copy {
        border-radius: 0 0 34px 34px;
    }

    .calculator-hero {
        padding-top: 102px;
    }

    .calculator-hero__content {
        width: min(760px, 100%);
        margin: 0 auto;
        padding-top: 24px;
        text-align: center;
    }

.calculator-hero__content .hero-copy {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .gold-calculator--hero {
        margin-top: 18px;
    }
}

@media (max-width: 760px) {
    .site-header {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        min-height: 64px;
        gap: 12px;
        padding: 8px 16px;
        border-radius: 0;
    }

    html {
        scroll-padding-top: 156px;
    }

    .section,
    .process-section,
    .calculator-section,
    .calculator-hero,
    .split-section,
    .contact-section {
        scroll-margin-top: 156px;
    }

    .nav-toggle {
        display: block;
        flex: 0 0 auto;
        border-color: transparent;
        color: var(--ink);
        background: var(--gold);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    }

    .nav-toggle span {
        transition: transform 180ms ease, opacity 180ms ease;
        transform-origin: center;
    }

    .site-header.is-scrolled .nav-toggle,
    .site-header.is-open .nav-toggle {
        border-color: transparent;
    }

    .site-header.is-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-open .nav-toggle span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .site-header.is-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .brand {
        max-width: calc(100% - 62px);
    }

    .brand-logo {
        width: 52px;
    }

    .brand strong,
    .brand small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .brand-legal {
        display: block;
        font-size: 0.54rem;
        line-height: 1.05;
        white-space: normal;
        max-width: 170px;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        max-height: min(72vh, calc(100vh - 92px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 12px;
        border: 0;
        border-radius: 18px;
        color: var(--ink);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-header.is-open .site-nav {
        display: grid;
        gap: 4px;
    }

    .site-nav a {
        padding: 10px 12px;
        min-height: 42px;
        display: flex;
        align-items: center;
    }

    .site-nav .nav-cta,
    .site-nav .nav-cta--menu {
        margin-top: 2px;
        justify-content: center;
        text-align: center;
        background: var(--gold);
        color: var(--ink) !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

    .hero {
        width: 100%;
        max-width: 100vw;
        min-height: auto;
        padding: 112px 18px 96px;
    }

    .hero-bg-video {
        object-position: 58% center;
    }

    .hero-content {
        width: 100%;
        max-width: 520px;
        padding-top: 0;
    }

    .hero-content,
    .hero-badges,
    .hero-copy,
    .hero-actions {
        max-width: 100%;
    }

    h1 {
        max-width: 100%;
        font-size: 2.72rem;
        line-height: 1.02;
    }

    h2 {
        font-size: 2.15rem;
        line-height: 1.08;
    }

    .split-content h2 {
        max-width: 100%;
        font-size: 2.05rem;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .hero-badges span {
        font-size: 0.76rem;
    }

    .hero-badges {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        width: 100%;
        max-width: 420px;
    }

    .hero-badges span {
        justify-content: center;
        width: 100%;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-copy {
        width: min(420px, 100%);
        max-width: 100%;
        font-size: 1rem;
        overflow-wrap: anywhere;
    }

    .hero-metrics {
        display: none;
    }

    .calculator-hero {
        min-height: auto;
        padding: 96px 18px 36px;
    }

    .calculator-hero__content {
        width: 100%;
        padding-top: 18px;
    }

    .calculator-hero__content .eyebrow {
        margin-bottom: 12px;
        font-size: 0.84rem;
    }

    .calculator-hero__content h1 {
        max-width: 100%;
        font-size: clamp(2.4rem, 9.5vw, 3.2rem);
        line-height: 1.02;
    }

    .calculator-hero__content .hero-copy {
        max-width: 36ch;
        font-size: 0.98rem;
        line-height: 1.34;
    }

    .quick-strip,
    .service-grid,
    .audience-grid,
    .process-steps,
    .visitor-grid,
    .calculator-fields,
    .calculator-results,
    .form-grid,
    .contact-methods,
    .location-layout,
    .compliance-grid,
    .legal-grid,
    .company-profile__strip,
    .company-profile__cards {
        grid-template-columns: 1fr;
    }

    .section,
    .split-section,
    .contact-section {
        padding: 58px 18px;
    }

    .service-card {
        min-height: auto;
    }

    .audience-grid div,
    .process-steps article {
        min-height: auto;
    }

    .service-number {
        margin-bottom: 28px;
    }

    .about-panel {
        box-shadow: none;
    }

    .company-profile__strip div,
    .profile-card,
    .founder-copy,
    .team-card {
        border-radius: 24px;
    }

    .company-profile__intro {
        text-align: center;
    }

    .company-profile__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .company-profile__founder {
        gap: 14px;
    }

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

    .team-card__media {
        min-height: 280px;
    }

    .gallery-card img {
        height: 240px;
    }

    .gold-calculator .button {
        width: 100%;
    }

    .calculator-actions {
        display: grid;
    }

    .gold-calculator {
        padding: 18px;
        border-radius: 22px;
    }

    .calculator-results {
        margin-top: 12px;
        border-radius: 18px;
    }

    .calculator-results .result-card {
        min-height: 96px;
        padding: 16px;
    }

    .calculator-results .result-card strong {
        font-size: 1.04rem;
    }

    .calculator-note {
        margin-top: 16px;
        max-width: 760px;
        font-size: 0.98rem;
    }

    .site-footer {
        display: grid;
    }
}

@media (max-width: 620px) {
    .site-header {
        right: 0;
        width: 100%;
    }

    .brand small {
        display: none;
    }

    h1 {
        font-size: 2.35rem;
    }

    .hero-content,
    .hero-copy,
    .hero-badges,
    .hero-actions,
    .hero-actions .button {
        width: min(340px, calc(100vw - 36px));
        max-width: min(340px, calc(100vw - 36px));
    }

    .calculator-hero {
        padding-top: 90px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .calculator-hero__content h1 {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(2.2rem, 7.5vw, 3.9rem);
        line-height: 1.04;
    }

    .calculator-hero__content .hero-copy {
        width: min(46ch, 100%);
        max-width: 100%;
        font-size: 0.98rem;
        line-height: 1.36;
    }

    .calculator-fields,
    .calculator-results {
        grid-template-columns: 1fr;
    }

    .calculator-fields {
        gap: 10px;
    }

    .gold-calculator--hero .button {
        width: 100%;
    }

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

    .contact-form {
        padding: 18px;
    }

    .company-profile__intro h2 {
        font-size: 2.1rem;
    }

    .company-profile__lead {
        font-size: 0.98rem;
    }

    .profile-card h3 {
        font-size: 1.6rem;
    }

    .founder-media {
        min-height: 320px;
    }
}

/* Start page rebuild */
.start-page {
    overflow: hidden;
    background: #2d6731;
}

.start-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    color: var(--white);
    background: #0b120d;
}

.start-hero__media,
.start-hero__overlay {
    position: absolute;
    inset: 0;
}

.start-hero__media {
    background-color: #0b120d;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.start-hero__video,
.start-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% center;
    transform: scale(1.04);
}

.start-hero__video {
    display: block;
    background: #0b120d;
    filter: saturate(1.08) contrast(1.02);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.start-hero.is-video-ready .start-hero__video {
    opacity: 1;
}

.start-hero.is-video-failed .start-hero__video {
    opacity: 0;
}

.start-hero__loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 12px;
    padding: 38px clamp(18px, 5vw, 72px);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.28) 36%, rgba(0, 0, 0, 0.06) 100%),
        linear-gradient(180deg, rgba(11, 18, 13, 0.08) 0%, rgba(11, 18, 13, 0.42) 100%);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.start-hero.is-video-ready .start-hero__loader,
.start-hero.is-video-failed .start-hero__loader {
    opacity: 0;
    visibility: hidden;
}

.start-hero__loader-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(12, 18, 16, 0.38);
    backdrop-filter: blur(10px);
}

.start-hero__loader-bar {
    width: min(280px, 42vw);
    height: 4px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.92) 50%, rgba(255, 255, 255, 0.14) 100%);
    background-size: 220% 100%;
    animation: heroLoadingShimmer 1.2s linear infinite;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.start-hero.is-video-failed .start-hero__loader-badge {
    color: #fff;
    background: rgba(120, 32, 32, 0.48);
    border-color: rgba(255, 193, 193, 0.28);
}

.start-hero.is-video-failed .start-hero__loader-bar {
    background: linear-gradient(90deg, rgba(255, 175, 175, 0.18) 0%, rgba(255, 175, 175, 0.92) 50%, rgba(255, 175, 175, 0.18) 100%);
}

@keyframes heroLoadingShimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 220% 50%;
    }
}

.start-hero__overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.88) 34%, rgba(20, 10, 4, 0.34) 68%, rgba(20, 10, 4, 0.08) 100%),
        radial-gradient(circle at 62% 34%, rgba(219, 148, 19, 0.42) 0%, rgba(219, 148, 19, 0.14) 18%, rgba(219, 148, 19, 0) 42%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.36) 100%);
}

.start-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 720px;
    padding: 112px clamp(18px, 5vw, 72px) 78px;
}

.start-hero__content {
    width: min(760px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.start-hero__eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.start-hero h1 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    max-width: 14ch;
    color: var(--white);
    font-size: clamp(3.45rem, 5.3vw, 6rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
}

.start-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.start-badges span {
    min-width: 128px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(58, 53, 49, 0.86);
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
}

.start-hero__copy {
    width: min(600px, 100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.04rem, 1.45vw, 1.22rem);
    line-height: 1.15;
}

.start-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.button--gold,
.button--green,
.button--white {
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 900;
}

.button--gold {
    color: #171412;
    background: var(--gold);
    box-shadow: 0 12px 28px rgba(212, 165, 54, 0.28);
}

.button--green {
    color: var(--white);
    background: #11482f;
    box-shadow: 0 12px 28px rgba(8, 36, 21, 0.24);
}

.button--white {
    color: #171412;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.start-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 132px));
    gap: 6px;
    margin-top: 8px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.start-metrics__card {
    min-height: 80px;
    padding: 13px 14px;
    border-radius: 6px;
    background: rgba(51, 45, 43, 0.9);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.start-metrics__card strong,
.start-metrics__card span,
.start-metrics__card small {
    display: block;
}

.start-metrics__card strong {
    margin-bottom: 3px;
    font-size: 1.3rem;
}

.start-metrics__card span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
}

.start-metrics__card small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.7rem;
}

.start-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #d7dbd6;
}

.start-strip__item {
    padding: 24px clamp(18px, 4vw, 54px);
    background: var(--white);
}

.start-strip__item span {
    display: block;
    margin-bottom: 6px;
    color: #515955;
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.start-strip__item strong {
    display: block;
    color: #1d1f1e;
    font-size: 1rem;
    font-weight: 600;
}

.start-standards {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: clamp(18px, 2.5vw, 30px);
    align-items: stretch;
    padding: clamp(80px, 9vw, 118px) clamp(18px, 5vw, 72px) clamp(88px, 9vw, 120px);
    background: #2f6732;
    color: var(--white);
}

.start-standards__media {
    width: 100%;
    max-width: 540px;
    justify-self: start;
    align-self: stretch;
    min-height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.start-standards__media picture,
.start-standards__media img {
    width: 100%;
    height: 100%;
    display: block;
}

.start-standards__media img {
    object-fit: cover;
    object-position: center 42%;
}

.start-standards__content .eyebrow {
    margin-bottom: 10px;
    margin-top: 8px;
}

.start-standards__content h2 {
    max-width: 14ch;
    color: var(--white);
    font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.start-standards__content p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.02rem;
}

.start-standards__list {
    margin-top: 18px;
}

.start-standards__item {
    padding: 16px 0 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.start-standards__item strong,
.start-standards__item span {
    display: block;
}

.start-standards__item strong {
    margin-bottom: 2px;
    font-size: 1.06rem;
}

.start-standards__item span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.22;
}

.site-footer {
    position: relative;
    padding: 0;
    color: var(--white);
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.045), transparent 38%),
        linear-gradient(180deg, #133519 0%, #0c2d0f 100%);
}

.footer-container {
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    padding: 54px 32px 28px;
    box-sizing: border-box;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.25fr 1.5fr 1fr 1fr;
    gap: 58px;
    align-items: start;
    padding-bottom: 0;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top > * {
    min-width: 0;
}

.site-footer__brand {
    padding: 0;
    margin-left: 20px;
}

.footer-top > .site-footer__column:nth-child(3),
.footer-top > .site-footer__column:nth-child(4) {
    position: relative;
    padding-left: 32px;
}

.footer-top > .site-footer__column:nth-child(3)::after,
.footer-top > .site-footer__column:nth-child(4)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 122px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.footer-brand,
.footer-logo-card {
    position: relative;
    overflow: visible;
}

.footer-logo-card {
    width: 360px;
    max-width: 100%;
    height: 116px;
    border: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    background: transparent;
    gap: 0;
}

.footer-logo-card img,
.footer-logo {
    display: block;
    max-width: 290px;
    max-height: 76px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-footer__column {
    min-height: 100%;
    padding: 0;
}

.site-footer__column h3 {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.94);
}

.site-footer__contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}

.site-footer__contact-grid p {
    margin-bottom: 0;
}

.site-footer__contact-grid a {
    white-space: nowrap;
}

.site-footer__column p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.22;
    font-size: 0.95rem;
}

.site-footer__column span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.01em;
}

.site-footer__column a {
    color: var(--white);
}

.site-footer__text-block {
    white-space: pre-line;
    font-size: 0.98rem;
    line-height: 1.34;
}

.site-footer__location-link {
    display: block;
    text-decoration: none;
    white-space: pre-line;
}

.site-footer__location-link:hover,
.site-footer__location-link:focus-visible {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 26px;
    border-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: none;
    flex: 1 1 0;
    min-width: 0;
    text-align: left;
}

.site-footer__social {
    display: flex;
    gap: 6px;
    flex: 0 0 auto;
    justify-self: end;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer__social a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 800;
    background: transparent;
    transition: transform 160ms ease, opacity 160ms ease;
}

.site-footer__social-icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer__social span {
    display: block;
    line-height: 1;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
    transform: translateY(-1px);
    opacity: 0.86;
    color: var(--white);
}

@media (max-width: 980px) {
    .footer-container {
        padding: 52px 24px 28px;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 36px;
        padding-bottom: 0;
        margin-bottom: 22px;
    }

    .footer-logo-card img,
    .footer-logo {
        max-width: 360px;
        max-height: 92px;
        width: auto;
        height: auto;
    }

    .footer-bottom {
        align-items: center;
        padding-bottom: 26px;
    }

    .footer-top > .site-footer__column {
        padding-left: 0;
    }

    .footer-top > .site-footer__column::after {
        display: none;
    }

    .site-footer__brand {
        margin-left: 0;
    }
}

@media (max-width: 760px) {
    .site-footer,
    .footer-container,
    .footer-top,
    .site-footer__column,
    .footer-bottom {
        text-align: left;
    }

    .footer-top > .site-footer__column:nth-child(3),
    .footer-top > .site-footer__column:nth-child(4) {
        padding-left: 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-logo-card {
        margin: 0;
        justify-content: flex-start;
        width: min(440px, 100%);
    }

    .site-footer__contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        justify-items: start;
    }

    .site-footer__contact-grid p {
        white-space: normal;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: 16px;
        text-align: center;
        margin-top: 0;
        padding-bottom: 26px;
    }

    .footer-bottom p {
        text-align: center;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .site-footer__social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .site-footer__social a {
        width: 34px;
        height: 34px;
    }

    .contact-method {
        padding: 18px 16px;
    }

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

    .location-map,
    .location-map iframe,
    .location-map--fallback {
        min-height: 420px;
    }

    .location-map {
        aspect-ratio: auto;
    }
}

/* Start page rebuild */
.landing-page {
    overflow: hidden;
    background: #f4f7f1;
}

.button--small {
    min-height: 38px;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 0.86rem;
}

.landing-hero {
    position: relative;
    padding: 132px clamp(18px, 5vw, 72px) 42px;
    overflow: hidden;
    background: linear-gradient(180deg, #2d6833 0%, #2e6a33 100%);
    color: var(--white);
}

.landing-hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.06) 0 12%, transparent 13%),
        radial-gradient(circle at 91% 34%, rgba(255, 255, 255, 0.05) 0 10%, transparent 11%),
        radial-gradient(circle at 82% 38%, rgba(0, 0, 0, 0.08) 0 17%, transparent 18%),
        radial-gradient(circle at 94% 42%, rgba(0, 0, 0, 0.06) 0 14%, transparent 15%);
    opacity: 0.65;
    pointer-events: none;
}

.landing-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1220px, 100%);
    margin: 0 auto;
}

.landing-hero__intro {
    width: min(920px, 100%);
    margin: 0 auto 34px;
    text-align: center;
}

.landing-hero__intro .eyebrow {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 0.88rem;
}

.landing-hero__intro h1 {
    max-width: 13ch;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: clamp(3rem, 4.8vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.landing-hero__copy {
    margin: 0 auto;
    width: min(900px, 100%);
    color: rgba(255, 255, 255, 0.93);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.36;
}

.landing-choice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 38px;
}

.landing-choice-card {
    display: grid;
    gap: 14px;
    align-content: start;
    min-height: 208px;
    padding: 28px 22px 22px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.98);
    color: #111820;
    box-shadow: 0 18px 38px rgba(7, 14, 11, 0.14);
}

.landing-choice-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.18;
}

.landing-choice-card p {
    margin: 0;
    color: #353a3d;
    font-size: 0.96rem;
    line-height: 1.36;
}

.landing-choice-card .button {
    align-self: end;
    justify-self: start;
}

.landing-service-intro {
    padding: 64px clamp(18px, 5vw, 72px) 64px;
    background: var(--white);
}

.landing-service-intro__heading {
    width: min(920px, 100%);
    margin: 0 auto;
    text-align: center;
}

.landing-service-intro__heading .eyebrow {
    color: #4f5656;
}

.landing-service-intro__heading h2 {
    margin-bottom: 14px;
    color: #0f641d;
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.landing-service-intro__heading p:last-child {
    width: min(760px, 100%);
    margin: 0 auto;
    color: #30363a;
    font-size: 1.02rem;
    line-height: 1.28;
    font-weight: 700;
}

.landing-services {
    padding: 62px clamp(18px, 5vw, 72px) 86px;
    background: #c0ddb8;
}

.landing-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.landing-service-card {
    display: grid;
    gap: 16px;
    align-content: start;
    min-height: 252px;
    padding: 28px 26px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 42px rgba(10, 28, 14, 0.09);
}

.landing-service-card__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    color: #156221;
}

.landing-service-card__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.landing-service-card__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.landing-service-card h3 {
    margin-bottom: 0;
    color: #166122;
    font-size: 1.34rem;
    line-height: 1.1;
}

.landing-service-card p {
    margin-bottom: 0;
    color: #4a5052;
    font-size: 0.98rem;
    line-height: 1.3;
}

/* Services page rebuild */
.services-page {
    overflow: hidden;
    background: #ffffff;
}

.services-hero {
    position: relative;
    min-height: 860px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(13, 44, 18, 0.95) 0%, rgba(10, 33, 15, 0.96) 100%);
}

.services-hero__media,
.services-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.services-hero__media {
    z-index: 0;
}

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

.services-hero__overlay {
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(13, 44, 18, 0.95) 0%, rgba(10, 33, 15, 0.96) 100%);
}

.services-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1280px, 100%);
    min-height: 860px;
    margin: 0 auto;
    padding: 134px clamp(18px, 5vw, 72px) 88px;
}

.services-hero__content {
    width: min(940px, 100%);
    margin: 0 auto;
    text-align: center;
}

.services-hero__content .eyebrow {
    margin-bottom: 10px;
    font-size: 1rem;
}

.services-hero__content h1 {
    max-width: 14ch;
    margin: 0 auto 10px;
    color: var(--white);
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.services-hero__content p {
    max-width: 840px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.62;
}

.services-hero__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(1120px, 100%);
    margin: 44px auto 0;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(233, 233, 233, 0.92);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.services-hero__card {
    min-height: 186px;
    padding: 36px 34px 30px;
    background: rgba(255, 255, 255, 0.98);
}

.services-hero__card h3 {
    margin-bottom: 16px;
    color: #111820;
    font-size: 1.52rem;
}

.services-hero__card p {
    margin-bottom: 0;
    color: #31363c;
    font-size: 1rem;
    line-height: 1.24;
}

.services-steps {
    padding: clamp(90px, 11vw, 150px) clamp(18px, 5vw, 72px) clamp(90px, 10vw, 140px);
    background: #ffffff;
}

.services-steps__heading {
    margin: 0 auto 70px;
    text-align: center;
}

.services-steps__heading .eyebrow {
    color: #5c6663;
}

.services-steps__heading h2 {
    margin-bottom: 0;
    color: #10611f;
    font-size: clamp(2.6rem, 4.7vw, 4.7rem);
    font-weight: 900;
}

.services-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.services-step-card {
    min-height: 244px;
    padding: 34px 28px 30px;
    border: 1px solid rgba(225, 229, 227, 0.9);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(16, 24, 32, 0.08);
}

.services-step-card span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 38px;
    border-radius: 6px;
    background: var(--gold);
    color: #0f6030;
    font-size: 1.72rem;
    font-weight: 900;
}

.services-step-card h3 {
    margin-bottom: 12px;
    color: #111820;
    font-size: 1.48rem;
    line-height: 1.06;
}

.services-step-card p {
    margin-bottom: 0;
    color: #41464a;
    font-size: 1rem;
    line-height: 1.28;
}

@media (max-width: 980px) {
    .services-hero {
        min-height: 980px;
    }

    .services-hero__inner {
        min-height: 980px;
        padding-top: 118px;
    }

    .services-hero__content {
        width: min(760px, 100%);
    }

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

@media (max-width: 760px) {
    .services-hero {
        min-height: 1020px;
    }

    .services-hero__inner {
        min-height: 1020px;
        padding-top: 104px;
        padding-bottom: 64px;
    }

    .services-hero__content {
        width: 100%;
    }

    .services-hero__content h1 {
        max-width: 100%;
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }

    .services-hero__panel,
    .services-steps__grid {
        grid-template-columns: 1fr;
    }

    .services-hero__panel {
        margin-top: 34px;
        border-radius: 20px;
    }

    .services-hero__card {
        min-height: auto;
        padding: 28px 24px;
    }

    .services-steps {
        padding-top: 76px;
        padding-bottom: 72px;
    }

    .services-steps__heading {
        margin-bottom: 40px;
    }

    .services-steps__heading h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .services-step-card {
        min-height: auto;
        padding: 28px 22px;
    }
}

/* Compliance page rebuild */
.compliance-page {
    overflow: hidden;
    background: linear-gradient(180deg, #fafcf8 0%, #ffffff 24%, #f6faf4 100%);
}

.compliance-hero {
    position: relative;
    padding: 128px clamp(18px, 5vw, 72px) 118px;
    background:
        radial-gradient(circle at top center, rgba(16, 97, 31, 0.04), transparent 44%),
        transparent;
    text-align: center;
}

.compliance-hero__heading {
    width: min(1100px, 100%);
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compliance-hero__heading .eyebrow {
    margin-bottom: 16px;
    color: #5d6662;
    font-size: 1rem;
}

.compliance-hero__heading h1 {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 18px;
    margin-left: auto;
    margin-right: auto;
    color: #10611f;
    font-size: clamp(2.05rem, 2.65vw, 3.25rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-align: center;
    text-wrap: normal;
}

.compliance-hero__heading h1 span {
    display: block;
    white-space: nowrap;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.compliance-hero__heading p {
    max-width: 920px;
    margin: 0 auto;
    color: #202629;
    font-size: clamp(1.02rem, 1.2vw, 1.12rem);
    font-weight: 800;
    text-align: center;
}

.compliance-card-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: min(1220px, 100%);
    margin: 0 auto;
}

.compliance-card {
    min-height: 206px;
    padding: 30px 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(54, 117, 61, 0.98) 0%, rgba(45, 107, 53, 1) 100%);
    color: var(--white);
    text-align: left;
    box-shadow: 0 18px 38px rgba(16, 24, 32, 0.14);
}

.compliance-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
}

.compliance-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.compliance-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.08;
    text-transform: uppercase;
}

.compliance-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.36;
}

.compliance-faq {
    display: grid;
    grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
    gap: clamp(32px, 4vw, 54px);
    align-items: center;
    padding: clamp(88px, 10vw, 132px) clamp(18px, 5vw, 72px);
    background: linear-gradient(180deg, #eff5ee 0%, #edf3ed 100%);
}

.compliance-faq__media {
    display: flex;
    justify-content: center;
}

.compliance-faq__media .brand-logo--compliance {
    width: clamp(240px, 26vw, 420px);
    max-width: 100%;
    height: auto;
}

.compliance-faq__content .eyebrow {
    color: #5d6662;
}

.compliance-faq__content h2 {
    color: #10611f;
    font-size: clamp(2.35rem, 3.8vw, 4rem);
    line-height: 0.98;
}

.faq-list--compact details {
    border-color: rgba(22, 33, 22, 0.08);
    box-shadow: 0 8px 20px rgba(16, 24, 32, 0.06);
}

.faq-list--compact summary {
    min-height: 52px;
    font-size: 0.98rem;
}

.faq-list--compact p {
    padding-bottom: 16px;
}

.compliance-legal {
    padding-top: clamp(88px, 10vw, 128px);
    padding-bottom: clamp(90px, 10vw, 140px);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
}

.compliance-legal .section-heading {
    margin: 0 auto 44px;
    text-align: center;
}

.compliance-legal .section-heading .eyebrow {
    color: #5d6662;
}

.compliance-legal .section-heading h2 {
    margin-bottom: 0;
    color: #10611f;
    font-size: clamp(2.6rem, 4.6vw, 4.6rem);
}

.compliance-legal__grid {
    width: min(1220px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.compliance-legal__grid article {
    padding: 36px 38px;
    border: 1px solid rgba(16, 97, 31, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%);
    box-shadow: 0 14px 30px rgba(16, 24, 32, 0.06);
}

.compliance-legal__grid h3 {
    margin-bottom: 14px;
    color: #111820;
    font-size: 1.28rem;
}

.compliance-legal__grid p {
    margin-bottom: 0;
    color: #111820;
    font-size: 0.98rem;
    line-height: 1.34;
}

/* Gallery page rebuild */
.gallery-page {
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 10%, rgba(44, 108, 58, 0.08) 0%, rgba(44, 108, 58, 0) 28%),
        radial-gradient(circle at 84% 12%, rgba(18, 75, 37, 0.06) 0%, rgba(18, 75, 37, 0) 24%),
        linear-gradient(180deg, #fbfcfa 0%, #ffffff 26%, #f5f8f3 100%);
}

.gallery-hero {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 136px clamp(18px, 5vw, 72px) 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-hero__intro {
    width: min(860px, 100%);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-hero__intro .eyebrow {
    margin-bottom: 16px;
    color: #2e6532;
    letter-spacing: 0.12em;
}

.gallery-hero__intro h1 {
    width: 100%;
    margin-bottom: 16px;
    color: #115c1d;
    font-size: clamp(2.8rem, 4.6vw, 5rem);
    line-height: 0.96;
    text-align: center;
    text-wrap: balance;
}

.gallery-hero__intro p {
    width: min(820px, 100%);
    margin: 0 auto;
    color: #1d2521;
    font-size: clamp(1.03rem, 1.25vw, 1.22rem);
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
}

.gallery-hero__stats {
    width: min(980px, 100%);
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gallery-hero__stats div {
    padding: 20px 22px;
    border: 1px solid rgba(37, 92, 43, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 36px rgba(16, 24, 32, 0.08);
}

.gallery-hero__stats span,
.gallery-hero__stats strong {
    display: block;
}

.gallery-hero__stats span {
    margin-bottom: 6px;
    color: #6a746f;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gallery-hero__stats strong {
    color: #115c1d;
    font-size: 1.02rem;
    line-height: 1.28;
}

.gallery-grid-section {
    padding: 26px clamp(18px, 5vw, 72px) 118px;
}

.gallery-tabs {
    width: min(980px, 100%);
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gallery-tab {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(37, 92, 43, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a2b1d;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gallery-tab:hover,
.gallery-tab:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(37, 92, 43, 0.35);
}

.gallery-tab.is-active {
    background: #2e6532;
    color: #ffffff;
    border-color: #2e6532;
}

.gallery-panel {
    display: block;
}

.gallery-panel[hidden] {
    display: none;
}

.gallery-grid-shell {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: min(1270px, 100%);
    margin: 0 auto;
}

.gallery-tile {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(37, 92, 43, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 44px rgba(16, 24, 32, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(16, 24, 32, 0.12);
}

.gallery-tile__image {
    aspect-ratio: 1 / 0.92;
    background: #d3ddd6;
}

.gallery-tile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 220ms ease, filter 220ms ease;
}

.gallery-tile__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.gallery-tile:hover .gallery-tile__image img {
    transform: scale(1.02);
    filter: saturate(1.03) contrast(1.02);
}

.gallery-tile:hover .gallery-tile__video {
    filter: saturate(1.03) contrast(1.02);
}

.gallery-tile__caption {
    display: grid;
    gap: 4px;
    align-content: start;
    padding: 18px 20px 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 246, 0.98) 100%);
}

.gallery-tile__caption strong {
    color: #115c1d;
    font-size: 1.1rem;
    line-height: 1.2;
}

.gallery-tile__caption span {
    color: #4a5751;
    font-size: 0.94rem;
    line-height: 1.52;
}

@media (max-width: 980px) {
    .landing-choice-grid,
    .landing-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-hero__intro h1 {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .landing-hero {
        padding-top: 112px;
        padding-bottom: 28px;
    }

    .landing-hero__intro {
        margin-bottom: 28px;
    }

    .landing-hero__intro h1 {
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .landing-choice-grid,
    .landing-services__grid {
        grid-template-columns: 1fr;
    }

    .landing-choice-card,
    .landing-service-card {
        min-height: auto;
    }

    .landing-choice-card .button {
        width: 100%;
    }

    .landing-service-intro {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .landing-services {
        padding-top: 52px;
        padding-bottom: 64px;
    }
}

@media (max-width: 980px) {
    .compliance-card-row,
    .compliance-faq,
    .compliance-legal__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .compliance-faq__content {
        order: 1;
    }

    .compliance-faq__media {
        order: 0;
    }
}

@media (max-width: 980px) {
    .gallery-grid-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .gallery-hero__stats {
        grid-template-columns: 1fr;
    }

    .gallery-tabs {
        width: 100%;
        justify-content: stretch;
    }

    .gallery-tab {
        flex: 1 1 140px;
    }
}

@media (max-width: 760px) {
    .gallery-hero {
        padding-top: 104px;
        padding-bottom: 18px;
    }

    .gallery-hero__intro h1 {
        font-size: clamp(2.2rem, 9vw, 3.4rem);
    }

    .gallery-hero__intro p {
        font-size: 0.98rem;
    }

    .gallery-grid-section {
        padding-bottom: 90px;
    }

    .gallery-tabs {
        gap: 10px;
    }

    .gallery-tab {
        width: 100%;
        flex: 1 1 100%;
    }

    .gallery-grid-shell {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 760px) {
    .compliance-hero {
        padding: 94px 14px 68px;
    }

    .compliance-hero__heading {
        width: 100%;
        margin-bottom: 28px;
    }

    .compliance-hero__heading h1 {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(1.65rem, 7.3vw, 2.35rem);
        line-height: 1.02;
        word-break: normal;
        overflow-wrap: normal;
    }

    .compliance-hero__heading h1 span {
        white-space: normal;
    }

    .compliance-hero__heading h1 span {
        display: block;
        white-space: normal;
        max-width: 100%;
    }

    .compliance-hero__heading p {
        max-width: 36ch;
        margin-left: auto;
        margin-right: auto;
    }

    .compliance-card-row,
    .compliance-faq,
    .compliance-legal__grid {
        grid-template-columns: 1fr;
    }

    .compliance-card-row {
        gap: 16px;
    }

    .compliance-card {
        min-height: auto;
        padding: 24px 20px;
        border-radius: 20px;
    }

    .compliance-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }

    .compliance-faq {
        padding: 66px 14px;
        gap: 22px;
    }

    .compliance-faq__media .brand-logo--compliance {
        width: min(100%, 320px);
    }

    .compliance-legal {
        padding-top: 66px;
        padding-bottom: 68px;
    }

    .compliance-legal__grid article {
        padding: 26px 22px;
        border-radius: 18px;
    }
}

@media (max-width: 980px) {
    .start-hero__inner {
        min-height: 680px;
        padding-top: 104px;
    }

    .start-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(420px, 100%);
    }

    .start-strip,
    .start-standards {
        grid-template-columns: 1fr;
    }

    .start-standards__media {
        max-width: 100%;
        justify-self: start;
        aspect-ratio: 0.84;
    }

    .start-standards__media {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .start-hero {
        min-height: 740px;
    }

    .start-hero__inner {
        min-height: 740px;
        padding-top: 96px;
        padding-bottom: 72px;
    }

    .start-hero h1 {
        max-width: 100%;
        font-size: clamp(2.7rem, 11vw, 4.5rem);
    }

    .start-badges {
        gap: 8px;
    }

    .start-badges span {
        min-width: 0;
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .start-hero__actions {
        gap: 10px;
    }

    .button--gold,
    .button--green,
    .button--white {
        width: 100%;
    }

    .start-metrics {
        grid-template-columns: 1fr;
        width: min(250px, 100%);
    }

    .start-strip__item {
        padding: 20px 18px;
    }

    .start-standards {
        padding-top: 68px;
        padding-bottom: 72px;
    }

    .start-standards__content h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .site-footer__bottom {
        justify-items: center;
    }

    .site-footer__bottom p {
        white-space: normal;
    }

    .site-footer__inner,
    .site-footer__columns {
        grid-template-columns: 1fr;
    }

    .site-footer__columns {
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .start-hero__loader-bar {
        animation: none;
    }

    .start-hero__video {
        display: none;
    }
}

@media (max-width: 760px) {
    .start-hero__video {
        object-position: 76% center;
        transform: scale(1.08);
    }
}
