:root {
    --ink: #1d2a25;
    --muted: #66736e;
    --paper: #ffffff;
    --soft: #f6f9f6;
    --line: #dde6df;
    --forest: #27594d;
    --forest-2: #347a67;
    --copper: #c97b33;
    --sky: #4c7b96;
    --charcoal: #26332f;
    --shadow: 0 18px 52px rgba(31, 45, 39, 0.11);
}

* {
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(220, 228, 223, 0.9);
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 78px;
}

.navbar-toggler {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.45rem 0.65rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
    min-width: 0;
}

.brand-icon {
    display: inline-grid;
    width: 46px;
    height: 44px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--forest);
    box-shadow: 0 10px 28px rgba(18, 60, 49, 0.25);
    font-size: 0.78rem;
}

.brand-name {
    line-height: 1.08;
    white-space: normal;
}

.nav-link {
    color: #2d3834;
    font-weight: 650;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--forest-2);
}

.nav-link.active {
    color: var(--forest);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.language-switcher a {
    min-width: 42px;
    padding: 0.35rem 0.55rem;
    border-radius: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
}

.language-switcher a.active {
    color: #fff;
    background: var(--forest);
}

.btn {
    border-radius: 8px;
    font-weight: 800;
}

.btn-brand {
    color: #fff;
    background: var(--forest);
    border-color: var(--forest);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #fff;
    background: #1f493f;
    border-color: #1f493f;
}

.booking-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}

.booking-link i {
    font-size: 1rem;
}

.btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover,
.btn-ghost:focus {
    color: var(--ink);
    background: #fff;
    border-color: #fff;
}

.hero-section {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
}

.hero-section .hero-media img {
    object-position: center 52%;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(18, 34, 29, 0.58) 0%, rgba(18, 34, 29, 0.34) 44%, rgba(18, 34, 29, 0.06) 100%),
        linear-gradient(0deg, rgba(18, 34, 29, 0.38) 0%, rgba(18, 34, 29, 0) 48%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 7rem;
    padding-bottom: 4.8rem;
}

.eyebrow {
    margin-bottom: 0.85rem;
    color: var(--copper);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-section h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(2.25rem, 4.1vw, 3.85rem);
    font-weight: 900;
    line-height: 1.06;
}

.hero-lead {
    max-width: 720px;
    margin: 1.4rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.hero-proof {
    margin-left: auto;
    padding: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 40px rgba(31, 45, 39, 0.14);
    backdrop-filter: blur(10px);
}

.hero-proof span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-proof strong {
    display: block;
    margin-top: 0.4rem;
    color: var(--ink);
    font-size: 1.3rem;
    line-height: 1.25;
}

.page-hero {
    padding: 5.75rem 0 4rem;
    color: var(--ink);
    background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}

.page-hero-dark {
    color: var(--ink);
    background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2.1rem, 4.4vw, 3.85rem);
    font-weight: 900;
    line-height: 1.04;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 1.2rem 0 0;
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.75;
}

.page-hero-dark p:not(.eyebrow) {
    color: var(--muted);
}

.page-hero img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.calculator-hero {
    position: relative;
    overflow: hidden;
    padding: 5.75rem 0 4.5rem;
    color: #fff;
    background: var(--charcoal);
}

.calculator-hero .container {
    position: relative;
    z-index: 1;
}

.calculator-hero-media,
.calculator-hero-media img,
.calculator-hero-overlay {
    position: absolute;
    inset: 0;
}

.calculator-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.calculator-hero-overlay {
    background:
        linear-gradient(90deg, rgba(25, 46, 40, 0.72) 0%, rgba(25, 46, 40, 0.52) 52%, rgba(25, 46, 40, 0.2) 100%),
        linear-gradient(0deg, rgba(25, 46, 40, 0.55) 0%, rgba(25, 46, 40, 0.06) 62%);
}

.calculator-hero h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(2.25rem, 4.8vw, 4.25rem);
    font-weight: 900;
    line-height: 1.04;
}

.calculator-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 1.2rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.15rem;
    line-height: 1.75;
}

.calculator-hero-note {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.calculator-hero-note i {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
    font-size: 1.6rem;
}

.calculator-hero-note span {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.calculator-section {
    padding: 5rem 0 6.5rem;
    background: var(--soft);
}

.calculator-shell {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.45fr);
    gap: 1.5rem;
    align-items: start;
}

.calculator-result {
    position: sticky;
    top: 104px;
    padding: 1.5rem;
    border-radius: 8px;
    color: #fff;
    background: #28483f;
    box-shadow: var(--shadow);
}

.calculator-result h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
}

.estimate-total {
    margin-top: 1.6rem;
    padding: 1.25rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.estimate-total span {
    display: block;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1.05;
}

.estimate-total small {
    display: block;
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.68);
}

.estimate-meter {
    height: 10px;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.estimate-meter span {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: var(--copper);
    transition: width 0.25s ease;
}

.estimate-lines {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.estimate-lines div {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.estimate-lines dt,
.estimate-lines dd {
    margin: 0;
}

.estimate-lines dt {
    color: rgba(255, 255, 255, 0.66);
    font-weight: 700;
}

.estimate-lines dd {
    color: #fff;
    font-weight: 850;
    text-align: right;
}

.estimate-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.65;
}

.calculator-form {
    display: grid;
    gap: 1rem;
}

.calculator-card {
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(16, 24, 22, 0.06);
}

.calculator-card-heading {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.calculator-card-heading > span {
    display: inline-grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--forest);
    font-weight: 900;
}

.calculator-card-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 900;
}

.calculator-card-heading p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.number-control {
    position: relative;
}

.number-control .form-control {
    padding-right: 4rem;
}

.number-control span {
    position: absolute;
    top: 50%;
    right: 1rem;
    color: var(--muted);
    font-weight: 850;
    transform: translateY(-50%);
}

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

.option-tile,
.addon-item {
    cursor: pointer;
}

.option-tile input,
.addon-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-tile span,
.addon-item span {
    display: grid;
    gap: 0.35rem;
    height: 100%;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.option-tile input:checked + span,
.addon-item input:checked + span {
    border-color: var(--forest);
    background: #eef6f2;
    box-shadow: inset 0 0 0 1px var(--forest);
}

.option-tile strong,
.addon-item strong {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
}

.option-tile small,
.addon-item small {
    color: var(--muted);
    line-height: 1.45;
}

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

.quick-strip {
    position: relative;
    z-index: 2;
    margin-top: -48px;
}

.quick-item {
    height: 100%;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(16, 24, 22, 0.08);
}

.quick-item span {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.quick-item strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.4;
}

.section-block {
    padding: 5.5rem 0;
    scroll-margin-top: 96px;
}

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

.section-dark {
    color: var(--ink);
    background: #eef5f0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 3rem;
}

.section-heading h1,
.section-heading h2,
.contact-panel h2,
.section-block h1,
.section-block h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.85rem, 3.3vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.section-copy,
.contact-panel p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.section-heading.light h1,
.section-heading.light h2 {
    color: var(--ink);
}

.section-heading.light p:not(.eyebrow) {
    color: var(--muted);
}

.about-hero-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.founder-portrait {
    display: flex;
    flex-direction: column;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background: var(--forest);
    box-shadow: var(--shadow);
}

.founder-portrait span {
    display: grid;
    width: 128px;
    height: 128px;
    margin: auto;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    font-size: 2.8rem;
    font-weight: 900;
}

.founder-portrait figcaption {
    width: 100%;
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(16, 24, 22, 0.36);
    font-weight: 800;
    text-align: center;
}

.founder-title {
    margin: 0.45rem 0 0;
    color: var(--forest-2);
    font-size: 1.05rem;
    font-weight: 850;
}

.about-check-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.about-check-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.55;
}

.about-check-list i {
    color: var(--forest-2);
    font-size: 1.2rem;
    line-height: 1.4;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.2rem;
    color: var(--forest);
    font-weight: 900;
    text-decoration: none;
}

.about-link:hover,
.about-link:focus {
    color: var(--forest-2);
}

.service-card,
.feature-card,
.process-step,
.quote-form,
.contact-panel {
    border-radius: 8px;
}

.service-card {
    height: 100%;
    min-height: 290px;
    padding: 1.5rem;
    border: 1px solid var(--line);
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 111, 92, 0.32);
    box-shadow: var(--shadow);
}

.service-card i {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 1.25rem;
    border-radius: 8px;
    color: var(--forest);
    background: #e8f2ee;
    font-size: 1.35rem;
}

.section-dark h1,
.section-dark h2 {
    color: var(--ink);
}

.section-dark .hero-lead {
    color: var(--muted);
}

.section-dark .btn-ghost {
    color: var(--forest);
    border-color: rgba(39, 89, 77, 0.28);
    background: #fff;
}

.section-dark .btn-ghost:hover,
.section-dark .btn-ghost:focus {
    color: #fff;
    border-color: var(--forest);
    background: var(--forest);
}

.service-card h3,
.feature-card h2,
.feature-card h3,
.process-step h3,
.project-card h2,
.project-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 850;
    line-height: 1.25;
}

.service-card p,
.feature-card p,
.process-step p,
.project-card p {
    margin: 0.85rem 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.image-feature {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.image-feature img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    border-radius: 8px;
    color: #fff;
    background: rgba(16, 24, 22, 0.78);
    backdrop-filter: blur(12px);
}

.image-caption strong {
    font-size: 1rem;
}

.image-caption span {
    color: rgba(255, 255, 255, 0.78);
}

.material-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.6rem;
}

.material-list span,
.area-list li {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.material-list span {
    padding: 0.65rem 0.85rem;
    color: var(--ink);
    font-weight: 800;
}

.feature-card {
    height: 100%;
    padding: 2rem;
    border: 1px solid var(--line);
    background: #fff;
}

.home-focus .section-heading {
    margin-bottom: 1.5rem;
}

.home-focus-image,
.home-focus-image img {
    min-height: 560px;
}

.home-focus-list {
    display: grid;
    gap: 1rem;
}

.home-focus .feature-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.35rem 1rem;
    align-items: start;
    padding: 1.25rem 1.35rem;
}

.home-focus .feature-card span {
    grid-row: 1 / 3;
    display: inline-grid;
    min-width: 44px;
    min-height: 44px;
    place-items: center;
    margin: 0;
    border-radius: 8px;
    color: var(--forest);
    background: #e6f0eb;
    font-size: 0.82rem;
}

.home-focus .feature-card p {
    margin-top: 0.35rem;
}

.feature-card span,
.process-step span {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--copper);
    font-weight: 900;
}

.project-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.project-card-light {
    border-color: var(--line);
    box-shadow: 0 16px 45px rgba(16, 24, 22, 0.08);
}

.project-card-light:hover {
    box-shadow: var(--shadow);
}

.project-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.project-card div {
    padding: 1.35rem;
}

.project-card span {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--sky);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(16, 24, 22, 0.07);
}

.blog-card-image {
    display: block;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.25s ease;
}

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

.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.blog-card-meta,
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.85rem;
    align-items: center;
    color: var(--sky);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card h2 {
    margin: 0.8rem 0 0;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.25;
}

.blog-card h2 a {
    color: var(--ink);
    text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card h2 a:focus {
    color: var(--forest-2);
}

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

.blog-read-link,
.blog-back-link {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    color: var(--forest);
    font-weight: 900;
    text-decoration: none;
}

.blog-read-link {
    margin-top: auto;
    padding-top: 1rem;
}

.blog-read-link:hover,
.blog-read-link:focus,
.blog-back-link:hover,
.blog-back-link:focus {
    color: var(--forest-2);
}

.blog-back-link {
    margin-bottom: 1.3rem;
    color: var(--forest);
}

.blog-post-meta {
    margin-top: 1.4rem;
    color: var(--sky);
}

.blog-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
    gap: 2rem;
    align-items: start;
}

.blog-article {
    max-width: 860px;
}

.blog-article section + section {
    margin-top: 2.5rem;
}

.blog-article h2,
.blog-article-cta h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.55rem, 2.6vw, 2.4rem);
    font-weight: 900;
    line-height: 1.12;
}

.blog-article p {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.blog-article ul {
    display: grid;
    gap: 0.7rem;
    margin: 1.2rem 0 0;
    padding-left: 1.25rem;
    color: var(--muted);
    line-height: 1.7;
}

.blog-article li::marker {
    color: var(--forest-2);
}

.blog-article-cta {
    margin-top: 3rem;
    padding: 1.5rem;
    border-radius: 8px;
    color: #fff;
    background: var(--forest);
}

.blog-article-cta h2,
.blog-article-cta p {
    color: #fff;
}

.blog-article-cta p {
    color: rgba(255, 255, 255, 0.82);
}

.blog-sidebar {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 1rem;
}

.blog-sidebar h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 900;
}

.related-post {
    display: grid;
    gap: 0.65rem;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    text-decoration: none;
}

.related-post img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 6px;
}

.related-post span {
    color: var(--sky);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.related-post strong {
    color: var(--ink);
    line-height: 1.3;
}

.related-post:hover strong,
.related-post:focus strong {
    color: var(--forest-2);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.process-step {
    min-height: 270px;
    padding: 1.4rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.faq-accordion {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.accordion-item {
    border-color: var(--line);
}

.accordion-button {
    padding: 1.25rem 1.35rem;
    color: var(--ink);
    font-weight: 850;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--forest);
    background: #eef6f2;
    box-shadow: none;
}

.accordion-body {
    color: var(--muted);
    line-height: 1.7;
}

.contact-section {
    padding: 5.5rem 0;
    color: var(--ink);
    background: linear-gradient(180deg, var(--soft) 0%, #eaf2ed 100%);
}

.contact-page-section {
    padding-top: 5rem;
}

.contact-panel,
.quote-form {
    height: 100%;
}

.contact-panel h2,
.contact-panel p {
    color: var(--ink);
}

.contact-panel p {
    color: var(--muted);
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

.area-list li {
    padding: 0.55rem 0.75rem;
    color: var(--ink);
    border-color: var(--line);
    background: #fff;
    font-weight: 800;
}

.contact-email,
.contact-phone {
    display: inline-block;
    margin-top: 0.85rem;
    color: var(--forest);
    font-size: 1.05rem;
    font-weight: 850;
    text-decoration: none;
}

.contact-phone {
    margin-right: 1rem;
}

.contact-email:hover,
.contact-email:focus,
.contact-phone:hover,
.contact-phone:focus {
    color: var(--forest-2);
}

.quote-form {
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 18px 52px rgba(31, 45, 39, 0.12);
}

.form-label {
    color: var(--ink);
    font-weight: 800;
}

.form-control {
    min-height: 52px;
    border-color: var(--line);
    border-radius: 8px;
    color: var(--ink);
}

textarea.form-control {
    min-height: 150px;
}

.form-control:focus {
    border-color: var(--forest-2);
    box-shadow: 0 0 0 0.2rem rgba(31, 111, 92, 0.14);
}

.form-privacy-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.form-privacy-note a {
    color: var(--forest);
    font-weight: 850;
}

.cta-band {
    padding: 4rem 0;
    background: #fff;
}

.cta-band h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.85rem, 3.2vw, 2.9rem);
    font-weight: 900;
    line-height: 1.08;
}

.cta-band p:not(.eyebrow) {
    max-width: 760px;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.site-footer {
    padding: 4rem 0 1.6rem;
    color: var(--muted);
    background: #f3f7f4;
    border-top: 1px solid var(--line);
}

.footer-brand,
.footer-brand:hover {
    color: var(--ink);
}

.footer-copy {
    max-width: 560px;
    margin: 1.2rem 0 0;
    line-height: 1.7;
}

.footer-title {
    margin: 0 0 1rem;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 0.65rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-link {
    color: var(--forest);
    font-weight: 800;
    text-decoration: none;
}

.footer-contact-link {
    display: block;
    margin-bottom: 0.45rem;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--forest-2);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
}

.footer-legal-copy,
.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
}

.footer-link-button {
    padding: 0;
    border: 0;
    color: var(--forest);
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.legal-hero .legal-updated {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 800;
}

.legal-section {
    background: #fff;
}

.legal-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.legal-summary {
    position: sticky;
    top: 108px;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.legal-summary h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.2;
}

.legal-summary p {
    color: var(--muted);
    line-height: 1.65;
}

.privacy-contact {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    margin: 0.4rem 0 0.8rem;
    color: var(--forest);
    font-weight: 900;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.privacy-contact:hover,
.privacy-contact:focus {
    color: var(--forest-2);
}

.privacy-officer {
    margin-bottom: 1.1rem;
}

.legal-content {
    display: grid;
    gap: 1.3rem;
}

.privacy-block {
    padding-bottom: 1.3rem;
    border-bottom: 1px solid var(--line);
}

.privacy-block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.privacy-block h2 {
    margin: 0 0 0.8rem;
    color: var(--ink);
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    font-weight: 900;
}

.privacy-block p,
.legal-list {
    color: var(--muted);
    line-height: 1.75;
}

.legal-list {
    display: grid;
    gap: 0.55rem;
    margin: 0.8rem 0 0;
    padding-left: 1.2rem;
}

.cookie-consent {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1080;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 900;
}

.cookie-consent p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.cookie-consent a {
    display: inline-block;
    margin-top: 0.45rem;
    color: var(--forest);
    font-weight: 850;
}

.cookie-consent .btn-outline-light {
    color: var(--forest);
    border-color: rgba(39, 89, 77, 0.32);
    background: #fff;
}

.cookie-consent .btn-outline-light:hover,
.cookie-consent .btn-outline-light:focus {
    color: #fff;
    border-color: var(--forest);
    background: var(--forest);
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-end;
}

.cookie-consent-actions .btn {
    min-height: 44px;
}

.cookie-modal .modal-content {
    border: 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cookie-modal .modal-title {
    color: var(--ink);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
}

.cookie-modal-intro {
    margin-bottom: 1rem;
    color: var(--muted);
    line-height: 1.65;
}

.consent-option {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.consent-option h3,
.consent-option strong {
    display: block;
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 900;
}

.consent-option p,
.consent-option small {
    display: block;
    margin: 0.25rem 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.consent-option .form-switch {
    flex: 0 0 auto;
    min-height: 32px;
    padding-left: 3.2rem;
}

.consent-option .form-check-input {
    width: 3rem;
    height: 1.55rem;
    cursor: pointer;
}

.consent-option .form-check-input:checked {
    background-color: var(--forest);
    border-color: var(--forest);
}

.consent-always-on {
    flex: 0 0 auto;
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    color: var(--forest);
    background: #e8f2ee;
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
}

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

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

    .calculator-shell {
        grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.2fr);
    }
}

@media (max-width: 991.98px) {
    .site-header {
        position: sticky;
    }

    .navbar-collapse {
        padding: 1rem 0 0.5rem;
    }

    .header-actions {
        flex-wrap: wrap;
        align-items: flex-start;
        margin-top: 1rem;
    }

    .booking-link {
        justify-content: center;
    }

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

    .hero-content {
        padding-top: 6rem;
        padding-bottom: 5rem;
    }

    .hero-proof {
        margin-left: 0;
    }

    .page-hero {
        padding: 4.75rem 0 3.25rem;
    }

    .calculator-shell {
        grid-template-columns: 1fr;
    }

    .calculator-result {
        position: static;
    }

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

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

    .blog-sidebar {
        position: static;
    }

    .legal-shell {
        grid-template-columns: 1fr;
    }

    .legal-summary {
        position: static;
    }

    .cookie-consent {
        grid-template-columns: 1fr;
    }

    .cookie-consent-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        min-height: 70px;
    }

    .brand-icon {
        width: 42px;
        height: 40px;
        flex-basis: 42px;
    }

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

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(18, 34, 29, 0.68) 0%, rgba(18, 34, 29, 0.5) 100%),
            linear-gradient(0deg, rgba(18, 34, 29, 0.5) 0%, rgba(18, 34, 29, 0.12) 55%);
    }

    .hero-section h1 {
        font-size: 2.25rem;
        line-height: 1.05;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-block,
    .contact-section,
    .cta-band {
        padding: 4rem 0;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .calculator-hero {
        padding: 5rem 0 4rem;
    }

    .calculator-hero h1 {
        font-size: 2.25rem;
    }

    .calculator-section {
        padding: 3.5rem 0 4.5rem;
    }

    .option-grid,
    .addon-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        margin-bottom: 2rem;
    }

    .image-feature,
    .image-feature img {
        min-height: 420px;
    }

    .home-focus .feature-card {
        grid-template-columns: 1fr;
    }

    .home-focus .feature-card span {
        grid-row: auto;
    }

    .process-grid {
        display: block;
        border: 0;
    }

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

    .blog-card-body,
    .blog-article-cta {
        padding: 1rem;
    }

    .process-step {
        min-height: 0;
        border: 1px solid var(--line);
    }

    .process-step + .process-step {
        margin-top: 0.8rem;
    }

    .cookie-consent {
        right: 0.6rem;
        bottom: 0.6rem;
        left: 0.6rem;
        max-height: calc(100vh - 1.2rem);
        overflow: auto;
    }

    .cookie-consent-actions .btn {
        width: 100%;
    }

    .consent-option {
        align-items: flex-start;
    }
}

@media (max-width: 420px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .quick-strip {
        margin-top: -28px;
    }

    .quote-form {
        padding: 1rem;
    }

    .calculator-card,
    .calculator-result {
        padding: 1rem;
    }
}
