:root {
    --primary: #073f31;
    --primary-2: #0b5b46;
    --primary-3: #092f27;
    --accent: #c87541;
    --accent-2: #e59a62;
    --cream: #f7f1e8;
    --soft: #f8f6f1;
    --white: #ffffff;
    --text: #17231f;
    --muted: #65736d;
    --border: #e5e1d8;
    --success: #0f9f61;
    --danger: #dc2626;
    --shadow: 0 22px 70px rgba(7, 63, 49, .13);
    --shadow-soft: 0 12px 34px rgba(7, 63, 49, .09);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1260px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
}

.skip-link:focus {
    left: 12px;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 5px 18px rgba(7, 63, 49, .08);
}

.top-strip {
    background: linear-gradient(90deg, var(--primary-3), var(--primary));
    color: #eaf7f1;
    font-size: 13px;
    font-weight: 700;
}

.top-strip-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-strip-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-strip-links a {
    color: #effaf5;
    opacity: .96;
}

.top-strip-links a:hover {
    color: var(--accent-2);
}

.nav-wrap {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 255px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-left: auto;
}

.main-nav > a,
.nav-dropdown > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #17231f;
    font-size: 15px;
    font-weight: 800;
    min-height: 86px;
    border-bottom: 3px solid transparent;
    transition: color .18s ease, border-color .18s ease;
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown > a.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    left: 50%;
    top: calc(100% - 8px);
    width: 260px;
    transform: translateX(-50%) translateY(10px);
    display: grid;
    gap: 4px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    padding: 11px 12px;
    border-radius: 12px;
    color: #2a3833;
    font-weight: 750;
}

.dropdown-menu a:hover {
    background: var(--soft);
    color: var(--primary);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px 0 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #b96536);
    color: #fff;
    box-shadow: 0 12px 26px rgba(200, 117, 65, .28);
    font-weight: 900;
    white-space: nowrap;
}

.header-cta span {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--primary);
    padding: 11px;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    border-radius: 99px;
}

/* Buttons and common form */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 20px;
    border: 0;
    border-radius: 12px;
    font-weight: 900;
    line-height: 1;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #b96638);
    color: #fff;
    box-shadow: 0 14px 30px rgba(200, 117, 65, .24);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(7, 63, 49, .22);
}

.btn-outline-dark {
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .08);
}

.btn-whatsapp {
    background: #16a34a;
    color: #fff;
}

.btn-large {
    min-height: 54px;
    padding-inline: 24px;
    border-radius: 14px;
}

.btn-small {
    min-height: 36px;
    padding: 9px 14px;
    border-radius: 9px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
}

.field label {
    display: block;
    margin: 0 0 7px;
    font-size: 13px;
    font-weight: 850;
    color: #243530;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: #fff;
    color: var(--text);
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(200, 117, 65, .13);
}

.input-error {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .12) !important;
}

/* Hero */
.home-hero {
    position: relative;
    overflow: hidden;
    background: var(--primary-3);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(106deg, rgba(0, 0, 0, .72) 0 38%, rgba(7, 63, 49, .72) 38.1% 62%, rgba(255, 255, 255, .05) 62.1% 100%),
        radial-gradient(circle at 86% 16%, rgba(255, 255, 255, .22), transparent 26%),
        linear-gradient(135deg, var(--primary-3), var(--primary));
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 18, 15, .86), rgba(8, 18, 15, .18) 45%, rgba(8, 18, 15, .10));
}

.hero-layout {
    position: relative;
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 390px;
    align-items: center;
    gap: 26px;
    padding: 66px 0 78px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 620px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.hero-copy h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5.15vw, 82px);
    line-height: .98;
    letter-spacing: -.045em;
}

.hero-copy h1 em {
    color: var(--accent-2);
    font-style: normal;
}

.hero-copy p {
    max-width: 560px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .87);
    font-size: 18px;
    font-weight: 520;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-left: -9px;
    border: 3px solid #fff;
    border-radius: 999px;
    background: var(--cream);
    color: var(--primary);
    font-weight: 900;
}

.avatar-stack span:first-child {
    margin-left: 0;
}

.hero-proof strong {
    display: block;
    font-size: 15px;
}

.stars {
    color: #f5ad3b;
    font-weight: 900;
    letter-spacing: .04em;
}

.stars small {
    color: #fff;
    opacity: .86;
    letter-spacing: 0;
}

.hero-visual {
    position: relative;
    z-index: 1;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    margin-left: -80px;
    margin-right: -80px;
}

.hero-visual img {
    width: 100%;
    min-width: 650px;
    max-width: none;
    height: auto;
    filter: saturate(1.02) contrast(1.04);
}

.hero-quote-card {
    position: relative;
    z-index: 3;
    padding: 30px 30px 24px;
    background: rgba(255, 255, 255, .97);
    border: 12px solid var(--primary);
    border-radius: 22px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, .32);
}

.hero-quote-card h2 {
    margin: 0 0 10px;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    letter-spacing: -.02em;
    color: var(--text);
}

.hero-quote-card p {
    margin: 0 0 20px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.hero-quote-card .field {
    margin-bottom: 12px;
}

.hero-quote-card label {
    position: absolute;
    left: -999px;
}

.hero-quote-card small {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: #8a8f89;
    font-size: 11px;
}

/* Trust strip */
.trust-strip {
    position: relative;
    z-index: 5;
    margin-top: -56px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.trust-card {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 26px 20px;
    min-height: 126px;
    border-left: 1px solid var(--border);
}

.trust-card:first-child {
    border-left: 0;
}

.trust-card .icon-wrap {
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
}

.trust-card strong {
    display: block;
    color: var(--primary-3);
    font-weight: 950;
}

.trust-card small {
    color: var(--muted);
    font-weight: 650;
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.section-heading.center {
    display: block;
    text-align: center;
}

.section-heading h2,
.about-copy h2,
.why-copy h2,
.contact-panel h2,
.map-panel h2,
.content-card h1,
.content-card h2 {
    margin: 0;
    color: var(--primary-3);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.section-heading p,
.lead {
    color: var(--muted);
    font-size: 18px;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-collage,
.about-mosaic {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 16px;
}

.about-collage img,
.about-mosaic img {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.about-main {
    height: 410px;
}

.about-side,
.about-mosaic .stack {
    display: grid;
    gap: 16px;
}

.about-side img,
.about-mosaic .stack img {
    height: 197px;
}

.experience-badge {
    position: absolute;
    right: 142px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 132px;
    height: 132px;
    border: 5px solid var(--accent);
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 36px;
    line-height: 1;
}

.experience-badge span {
    font-weight: 800;
    font-size: 13px;
}

.about-copy p {
    color: var(--muted);
    font-weight: 550;
}

.stat-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 162px;
}

.stat-mini .icon-wrap {
    flex: 0 0 auto;
}

.stat-mini strong,
.stat-mini span {
    display: block;
}

.stat-mini strong {
    color: var(--primary-3);
    font-size: 20px;
}

.stat-mini span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

/* Icons */
.icon-wrap {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(7, 63, 49, .08);
    color: var(--primary);
}

.icon-wrap svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

/* Services */
.services-section {
    padding-top: 20px;
    background: linear-gradient(180deg, #fff 0, #fbfaf7 100%);
}

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

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

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 117, 65, .45);
    box-shadow: var(--shadow);
}

.service-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.icon-service-card {
    min-height: 258px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px 24px;
}

.icon-service-card .icon-wrap {
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
    border: 1px solid rgba(7, 63, 49, .16);
    background: #fff;
}

.icon-service-card h3,
.service-card h3 {
    margin: 0 0 10px;
    color: var(--primary-3);
    font-size: 20px;
    line-height: 1.18;
}

.icon-service-card p,
.service-card p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 560;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 12px;
}

.service-card > p,
.service-card .read-more {
    margin-left: 20px;
    margin-right: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 900;
}

.read-more:hover {
    color: var(--primary);
}

/* Process */
.process-band {
    padding: 70px 0 62px;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, .08), transparent 22%),
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, .08), transparent 24%),
        linear-gradient(135deg, var(--primary-3), var(--primary));
    color: #fff;
    overflow: hidden;
}

.light-heading h2 {
    color: #fff;
}

.timeline-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
    margin-top: 22px;
}

.timeline-line {
    position: absolute;
    top: 58px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(255, 255, 255, .32);
}

.timeline-step {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    text-align: center;
}

.timeline-step > span {
    position: absolute;
    top: 50px;
    right: 42px;
    width: 10px;
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--accent);
    color: transparent;
}

.timeline-step i {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    margin-bottom: 14px;
    border: 10px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
}

.timeline-step i svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.timeline-step h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.timeline-step p {
    max-width: 190px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 600;
}

/* Why and metrics */
.why-stats-section {
    padding-top: 58px;
}

.why-stats-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 52px;
}

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

.why-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #243530;
    font-weight: 850;
}

.why-list svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

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

.metric-card {
    display: grid;
    place-items: center;
    min-height: 190px;
    padding: 26px 18px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-3));
    color: #fff;
    box-shadow: var(--shadow);
}

.metric-card span {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    color: var(--accent-2);
}

.metric-card svg {
    fill: currentColor;
}

.metric-card strong {
    color: var(--accent-2);
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: 1;
}

.metric-card small {
    font-weight: 800;
    color: rgba(255, 255, 255, .86);
}

/* Testimonials */
.testimonials-section {
    background: #fff;
    padding-top: 28px;
}

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

.testimonial {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.avatar {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff, #e6f0eb);
    color: var(--primary);
    border: 2px solid var(--border);
    font-weight: 950;
    font-size: 24px;
}

.testimonial h3 {
    margin: 0;
    color: var(--primary-3);
    font-size: 18px;
}

.testimonial small {
    color: var(--muted);
    font-weight: 700;
}

.testimonial .stars {
    margin-left: auto;
    white-space: nowrap;
    color: #f5a623;
}

.testimonial p {
    margin: 0;
    color: #3a4944;
    font-weight: 550;
}

/* FAQ + Contact */
.contact-faq-section {
    padding-top: 30px;
    background: var(--soft);
}

.home-bottom-grid {
    display: grid;
    grid-template-columns: 1.05fr .88fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

.faq-panel,
.contact-panel,
.map-panel,
.card,
.content-card,
.sidebar-box,
.location-card,
.blog-card,
.thanks-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.faq-panel,
.contact-panel,
.map-panel {
    padding: 26px;
}

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

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    background: #fff;
    padding: 16px 18px;
    color: #233630;
    font-weight: 900;
    text-align: left;
}

.faq-answer {
    display: none;
    padding: 0 18px 18px;
    color: var(--muted);
    font-weight: 560;
}

.faq-item.open .faq-answer {
    display: block;
}

.contact-panel {
    background: linear-gradient(135deg, var(--primary), var(--primary-3));
    color: #fff;
}

.contact-panel h2 {
    color: #fff;
    margin-bottom: 20px;
}

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

.contact-list li,
.contact-list a {
    color: inherit;
    font-weight: 750;
}

.contact-panel .contact-list li {
    color: rgba(255, 255, 255, .92);
}

.contact-panel .social-links {
    margin-top: 22px;
}

.map-panel {
    overflow: hidden;
}

.map-panel h2 {
    font-size: 30px;
    margin-bottom: 18px;
}

.map-placeholder,
.map-card iframe,
.map-panel iframe {
    width: 100%;
    min-height: 270px;
    border: 0;
    border-radius: 14px;
}

/* Footer */
.footer-cta {
    background: var(--primary);
    color: #fff;
    overflow: hidden;
}

.footer-cta-inner {
    display: grid;
    grid-template-columns: 240px 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 148px;
    padding: 22px 0;
}

.footer-cta-media {
    height: 104px;
    overflow: hidden;
    border-radius: 16px;
    opacity: .78;
}

.footer-cta-media img {
    width: 260px;
    max-width: none;
    transform: translate(-30px, -22px) scale(.78);
}

.footer-cta h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1.1;
}

.footer-cta p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .78);
}

.site-footer {
    color: #eaf4ef;
    background: #101514 url("../img/footer-pattern.svg") center/cover no-repeat;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .75fr 1fr 1.1fr;
    gap: 44px;
    padding: 52px 0 38px;
}

.footer-about img {
    width: 260px;
    height: auto;
    margin-bottom: 16px;
}

.footer-about p {
    max-width: 370px;
    color: rgba(255, 255, 255, .72);
    font-weight: 550;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 17px;
}

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

.footer-links a,
.footer-links li {
    color: rgba(255, 255, 255, .75);
    font-weight: 650;
}

.footer-links a:hover {
    color: var(--accent-2);
}

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

.social-links a {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-weight: 900;
}

.footer-whatsapp {
    display: inline-flex;
    margin-top: 18px;
    padding: 11px 16px;
    border-radius: 10px;
    background: #16a34a;
    color: #fff;
    font-weight: 900;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

.footer-bottom a {
    margin-left: 16px;
    color: rgba(255, 255, 255, .68);
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 199;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #16a34a;
    color: #fff;
    box-shadow: 0 16px 38px rgba(22, 163, 74, .32);
    font-size: 26px;
    font-weight: 900;
}

/* Page templates */
.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(7, 63, 49, .94), rgba(9, 47, 39, .94)),
        url("../img/cta-bg.svg") center/cover no-repeat;
    color: #fff;
}

.page-hero-inner {
    padding: 70px 0 76px;
}

.page-hero h1 {
    max-width: 900px;
    margin: 14px 0 14px;
    font-family: Georgia, serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
    font-weight: 550;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a {
    color: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}

.content-card {
    padding: 34px;
    overflow: hidden;
}

.content-card .main-img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 24px;
}

.content-card p,
.content-card li {
    color: #43514c;
    font-size: 17px;
}

.content-card h2 {
    margin-top: 26px;
    font-size: 34px;
}

.content-card h3 {
    margin-top: 22px;
    color: var(--primary);
    font-size: 24px;
}

.content-card a:not(.btn) {
    color: var(--accent);
    font-weight: 900;
}

.sidebar {
    display: grid;
    gap: 20px;
}

.sidebar-box {
    padding: 24px;
}

.sidebar-box h3 {
    margin: 0 0 14px;
    color: var(--primary-3);
    font-family: Georgia, serif;
    font-size: 25px;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--soft);
    color: #263933;
    font-weight: 800;
}

.sidebar-links a:hover {
    background: rgba(200, 117, 65, .12);
    color: var(--primary);
}

.card-pad {
    padding: 30px;
}

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

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

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.map-card {
    overflow: hidden;
}

.map-card .contact-card {
    margin: 20px;
    padding: 22px;
    border-radius: 16px;
    background: var(--soft);
    box-shadow: none;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.location-card {
    padding: 24px;
}

.location-card h3 {
    margin: 0 0 10px;
    color: var(--primary-3);
    font-size: 22px;
}

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

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

.blog-card {
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-card-body {
    padding: 22px;
}

.blog-card time {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 900;
    font-size: 13px;
}

.blog-card h3 {
    margin: 0 0 10px;
    color: var(--primary-3);
    font-size: 22px;
}

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

.feature-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.feature-item {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    text-align: center;
}

.feature-item h3 {
    color: var(--primary);
    font-size: 17px;
}

.feature-item p {
    color: var(--muted);
    font-size: 14px;
}

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

.process-step {
    position: relative;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
}

.step-no {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--accent);
    font-weight: 950;
}

.stats-band {
    padding: 34px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-3));
    color: #fff;
}

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
}

.stat-card strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: #fff;
}

.stat-card span {
    display: block;
    color: rgba(255, 255, 255, .78);
    font-weight: 750;
}

.thanks-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 42px;
    text-align: center;
}

.thanks-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;
    border-radius: 999px;
    background: rgba(15, 159, 97, .10);
    color: var(--success);
    font-size: 42px;
}

/* Utility old quick quote support */
.quick-quote {
    position: relative;
    z-index: 3;
    margin-top: -42px;
}

.quick-quote-card {
    display: grid;
    grid-template-columns: 1fr repeat(4, minmax(0, 1.1fr)) auto;
    gap: 12px;
    align-items: end;
    padding: 18px;
    border-radius: 18px;
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow);
}

.quick-quote-title h2 {
    margin: 0 0 4px;
    font-size: 20px;
}

.quick-quote-title p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
}

.quick-quote-card label {
    color: rgba(255, 255, 255, .82);
}

.quick-quote-card input,
.quick-quote-card select {
    min-height: 48px;
}

/* Responsive */
@media (max-width: 1220px) {
    .hero-layout {
        grid-template-columns: 1fr 360px;
    }

    .hero-visual {
        grid-column: 1 / -1;
        grid-row: 1;
        position: absolute;
        right: 350px;
        bottom: 0;
        width: 530px;
        opacity: .55;
        pointer-events: none;
    }

    .hero-copy {
        grid-column: 1;
    }

    .hero-quote-card {
        grid-column: 2;
        grid-row: 1;
    }

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

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

    .footer-cta-inner {
        grid-template-columns: 1fr auto;
    }

    .footer-cta-media {
        display: none;
    }
}

@media (max-width: 1040px) {
    .top-strip-inner {
        justify-content: center;
        text-align: center;
    }

    .top-strip-inner > span {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 118px;
        display: none;
        margin: 0;
        padding: 16px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: var(--shadow);
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a,
    .nav-dropdown > a {
        min-height: auto;
        padding: 13px 10px;
        border: 0;
    }

    .dropdown-menu {
        position: static;
        width: auto;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: 0;
        padding: 0 0 8px 14px;
        background: transparent;
    }

    .header-cta {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        padding-top: 54px;
    }

    .hero-visual {
        display: none;
    }

    .hero-quote-card {
        grid-column: auto;
        grid-row: auto;
        max-width: 520px;
        margin: 10px auto 0;
        border-width: 8px;
    }

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

    .trust-card:nth-child(odd) {
        border-left: 0;
    }

    .about-grid,
    .why-stats-grid,
    .split-grid,
    .content-grid,
    .home-bottom-grid {
        grid-template-columns: 1fr;
    }

    .timeline-process {
        grid-template-columns: 1fr;
    }

    .timeline-line,
    .timeline-step > span {
        display: none;
    }

    .timeline-step p {
        max-width: 480px;
    }

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

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

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

    .quick-quote-title {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .top-strip {
        display: none;
    }

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

    .brand img {
        width: 218px;
    }

    .main-nav {
        top: 86px;
        left: 14px;
        right: 14px;
    }

    .home-hero {
        text-align: left;
    }

    .hero-layout {
        min-height: auto;
        padding: 44px 0 82px;
    }

    .hero-copy h1 {
        font-size: clamp(38px, 13vw, 56px);
    }

    .hero-copy p {
        font-size: 16px;
    }

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

    .hero-quote-card {
        padding: 24px 18px 20px;
        border-radius: 18px;
    }

    .trust-strip {
        margin-top: -44px;
    }

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

    .trust-card {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .trust-card:first-child {
        border-top: 0;
    }

    .section {
        padding: 58px 0;
    }

    .section-heading {
        display: block;
    }

    .about-collage,
    .about-mosaic {
        grid-template-columns: 1fr;
    }

    .about-side,
    .about-mosaic .stack {
        grid-template-columns: 1fr 1fr;
    }

    .about-main,
    .about-side img,
    .about-mosaic .stack img {
        height: auto;
    }

    .experience-badge {
        right: 20px;
        top: 28px;
        transform: none;
        width: 112px;
        height: 112px;
    }

    .home-service-grid,
    .service-grid,
    .testimonials,
    .metric-grid,
    .location-grid,
    .blog-grid,
    .stats-grid,
    .feature-strip,
    .process,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 0;
    }

    .cta-actions {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
    }

    .footer-bottom a {
        display: inline-block;
        margin: 0 12px 0 0;
    }

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

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

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }
}
