:root {
    --bg: #f4efe6;
    --surface: #fffdfa;
    --surface-strong: #fff7ea;
    --surface-dark: #11322d;
    --text: #1f2a28;
    --muted: #5f6f6a;
    --primary: #c96f2d;
    --primary-deep: #9f4e15;
    --secondary: #2f6d62;
    --secondary-soft: #d7ebe5;
    --border: rgba(17, 50, 45, 0.12);
    --shadow: 0 18px 48px rgba(27, 47, 43, 0.12);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(201, 111, 45, 0.18), transparent 28%),
        radial-gradient(circle at right 20%, rgba(47, 109, 98, 0.15), transparent 24%),
        linear-gradient(180deg, #fbf7f0 0%, #f4efe6 100%);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

footer {
    flex: 0 0 auto;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section {
    padding: 4.75rem 0;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 2rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(47, 109, 98, 0.1);
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.75rem;
    font-family: "Fraunces", serif;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    padding: 0.75rem 1rem;
    background: var(--surface-dark);
    color: #fff;
    border-radius: 0.75rem;
    z-index: 100;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(251, 247, 240, 0.88);
    border-bottom: 1px solid rgba(17, 50, 45, 0.08);
}

.top-bar {
    background: var(--surface-dark);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
}

.top-bar .container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem 0;
}

.top-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    column-gap: 0;
    row-gap: 0;
}

.top-actions span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.4;
}

.top-actions span:last-child {
    justify-content: flex-end;
    text-align: right;
}

.top-actions strong {
    color: #fff;
    font-weight: 800;
    margin-right: 0.3rem;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.55rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    line-height: 0;
}

.brand img {
    width: auto;
    max-width: 200px;
    height: 64px;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(17, 50, 45, 0.16);
    border: none;
    background: transparent;
    padding: 0;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    color: var(--text);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a,
.nav-menu button {
    border: 0;
    background: transparent;
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

.nav-menu a:hover,
.nav-menu button:hover,
.nav-menu .active {
    color: var(--primary-deep);
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 0.8rem);
    width: min(300px, calc(100vw - 2rem));
    padding: 0.9rem;
    display: grid;
    gap: 0.25rem;
    background: rgba(255, 253, 250, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
}

.dropdown-menu a:hover {
    background: var(--surface-strong);
}

.cta-inline {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 50px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    color: #fff;
    box-shadow: 0 16px 28px rgba(159, 78, 21, 0.25);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 16px 28px rgba(47, 109, 98, 0.22);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.card:hover,
.gallery-item:hover,
.package-card:hover,
.fleet-card:hover,
.testimonial:hover {
    transform: translateY(-4px);
}

.hero {
    padding: 2.5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.5rem;
    align-items: stretch;
}

.hero-copy,
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(17, 50, 45, 0.08);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 3rem;
    background:
        linear-gradient(155deg, rgba(17, 50, 45, 0.96), rgba(47, 109, 98, 0.94)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%);
    color: #fff;
}

.hero-copy p,
.hero-copy .stat span {
    color: rgba(255, 255, 255, 0.78);
}

.hero-copy .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #fff3df;
}

.hero-actions,
.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.5rem 0 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: #fff;
}

.hero-slider {
    min-height: 520px;
    background: #d9e7e1;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide img.hero-banner-image {
    object-fit: cover;
    object-position: center;
    background: transparent;
}

.slide-overlay {
    position: absolute;
    inset: auto 1.5rem 1.5rem 1.5rem;
    padding: 1.2rem;
    border-radius: 20px;
    background: rgba(17, 50, 45, 0.78);
    color: #fff;
    backdrop-filter: blur(12px);
}

.slide-overlay p {
    color: #fff;
}

.slide-dots {
    position: absolute;
    left: 1.5rem;
    bottom: 1.1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.slide-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.44);
    cursor: pointer;
}

.slide-dots button.active {
    background: #fff;
}

.page-hero {
    padding: 2.75rem 0 1.5rem;
}

.page-hero-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 247, 234, 0.96), rgba(215, 235, 229, 0.96));
    border: 1px solid rgba(17, 50, 45, 0.08);
    box-shadow: var(--shadow);
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.card-grid,
.gallery-grid,
.package-grid,
.fleet-grid,
.testimonial-grid,
.detail-grid,
.process-grid,
.faq-grid,
.contact-grid,
.metrics-grid {
    display: grid;
    gap: 1.2rem;
}

.card-grid,
.package-grid,
.fleet-grid,
.testimonial-grid,
.detail-grid,
.faq-grid,
.metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-grid,
.process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.package-card,
.fleet-card,
.testimonial,
.detail-card,
.faq-card,
.metric-card,
.contact-card,
.quote-box,
.process-card,
.gallery-item {
    height: 100%;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 250, 0.92);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.card .btn-ghost {
    margin-top: auto;
}

.product-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card-grid .card {
    border-top: 4px solid transparent;
}

.product-card-grid .card:nth-child(4n + 1) {
    border-top-color: #c96f2d;
}

.product-card-grid .card:nth-child(4n + 2) {
    border-top-color: #2f6d62;
}

.product-card-grid .card:nth-child(4n + 3) {
    border-top-color: #255fa8;
}

.product-card-grid .card:nth-child(4n + 4) {
    border-top-color: #a6522b;
}

.card-icon,
.metric-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--surface-strong), rgba(215, 235, 229, 0.9));
    color: var(--primary-deep);
    font-size: 1.35rem;
    font-weight: 800;
}

.card ul,
.detail-card ul,
.faq-card ul,
.contact-card ul {
    display: grid;
    gap: 0.55rem;
    color: var(--muted);
}

.card li::before,
.detail-card li::before,
.faq-card li::before,
.contact-card li::before {
    content: "•";
    margin-right: 0.5rem;
    color: var(--primary);
}

.contact-map {
    padding: 1.1rem;
}

.contact-map iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 14px;
    display: block;
}

.map-label {
    margin: 0.85rem 0 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.package-price {
    display: inline-flex;
    margin: 0.6rem 0 0.9rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--secondary-soft);
    color: var(--secondary);
    font-weight: 800;
}

.gallery-item {
    padding: 0;
    overflow: hidden;
}

.card-media {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 0;
    margin-bottom: 0.9rem;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-caption {
    padding: 1rem 1.1rem 1.2rem;
}

.quote-section {
    position: relative;
}

.quote-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.2rem;
    align-items: start;
}

.quote-box {
    background: linear-gradient(165deg, rgba(17, 50, 45, 0.98), rgba(47, 109, 98, 0.95));
    color: #fff;
}

.quote-box p,
.quote-box li,
.quote-box .small-note {
    color: rgba(255, 255, 255, 0.8);
}

.quote-form {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 253, 250, 0.95);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.4rem;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(17, 50, 45, 0.16);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.small-note {
    font-size: 0.92rem;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.trust-pill {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 253, 250, 0.7);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center;
    font-weight: 800;
}

.site-footer {
    display: block !important;
    width: 100%;
    position: relative;
    z-index: 2;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 3rem;
    background: var(--surface-dark);
    color: rgba(255, 255, 255, 0.75);
}

.footer-top {
    padding: 4rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.1fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

/* Brand column */

.footer-logo-link {
    display: inline-block;
    margin-bottom: 0.55rem;
}

.footer-logo-link img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
    border: none;
    background: transparent;
    display: block;
}

.footer-brand-name {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0 0 1.4rem;
    color: rgba(255,255,255,0.65);
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Footer columns */
.footer-title {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-links,
.service-links {
    display: grid;
    gap: 0.55rem;
}

.footer-links a,
.service-links a {
    font-size: 0.88rem;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover,
.service-links a:hover {
    color: #fff0d3;
    padding-left: 4px;
}

/* Contact column */
.footer-contact {
    display: grid;
    gap: 0.9rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.75;
}

.footer-contact a.footer-contact-item:hover {
    color: #fff0d3;
}

.footer-contact a.footer-contact-item:hover svg {
    opacity: 1;
}

/* Footer bottom bar */
.footer-bottom {
    padding: 1.2rem 0 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 1.4rem;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.82);
    font-weight: 700;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
}

.floating-actions {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    gap: 0.7rem;
    z-index: 45;
}

.floating-actions a {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    justify-content: center;
    box-shadow: var(--shadow);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .quote-wrap,
    .footer-grid,
    .contact-grid,
    .process-grid,
    .card-grid,
    .package-grid,
    .fleet-grid,
    .testimonial-grid,
    .detail-grid,
    .faq-grid,
    .metrics-grid,
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hero-slider {
        min-height: 420px;
    }
}

@media (max-width: 860px) {
    .hero {
        padding: 0.7rem 0 2.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .hero-slider {
        min-height: clamp(240px, 46vh, 360px);
    }

    .slide-overlay {
        inset: auto 1rem 1rem 1rem;
        padding: 0.9rem;
    }

    .top-bar .container,
    .footer-bottom .container {
        flex-direction: column;
        align-items: center;
    }

    .nav-shell {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 0.45rem 0;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        width: 100%;
        padding: 1rem;
        border-radius: 20px;
        border: 1px solid var(--border);
        background: rgba(255, 253, 250, 0.98);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu a,
    .nav-menu button {
        width: 100%;
        text-align: left;
    }

    .nav-menu.open {
        display: flex;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 0.8rem;
        box-shadow: none;
    }

    .dropdown.open .dropdown-menu {
        display: grid;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 3.6rem 0;
    }

    .hero {
        padding: 0.45rem 0 2.2rem;
    }

    .hero-copy,
    .page-hero-card,
    .quote-form,
    .quote-box {
        padding: 1.25rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.7rem, 8vw, 2.25rem);
    }

    .hero-copy p {
        font-size: 0.96rem;
    }

    .hero-copy > p,
    .page-hero-card > p {
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .stats,
    .trust-strip,
    .form-grid,
    .quote-wrap,
    .card-grid,
    .package-grid,
    .fleet-grid,
    .testimonial-grid,
    .detail-grid,
    .faq-grid,
    .metrics-grid,
    .contact-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slider {
        min-height: clamp(220px, 36vh, 280px);
    }

    .slide img.hero-banner-image {
        object-fit: contain;
        object-position: center;
        background: #d9e7e1;
    }

    .slide-overlay p {
        display: none;
    }

    .stats {
        display: none;
    }

    .hero-actions {
        margin: 0.9rem 0 1.2rem;
    }

    .hero-actions .btn,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .floating-actions {
        right: 1rem;
        left: auto;
    }

    .top-actions {
        justify-content: space-between;
        width: 100%;
        column-gap: 0;
        row-gap: 0.2rem;
    }

    .top-actions span {
        font-size: 0.78rem;
        white-space: normal;
        max-width: 48%;
    }
}

@media (max-width: 420px) {
    .hero-slider {
        min-height: 280px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .brand img {
        width: auto;
        max-width: 165px;
        height: 54px;
    }

    .btn,
    .btn-secondary,
    .btn-ghost {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .product-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .product-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}