:root {
    /* Warm Vintage Paper Palette */
    --bg-page: #FAF6EE;
    --bg-surface: #F3EBE0;
    --bg-card: #FFFDF9;
    --bg-card-alt: #F6EFE3;
    --bg-dark: #1C1916;

    /* Vintage Borders */
    --border-vintage: #DCD0BF;
    --border-dark: #2A251F;
    --border-dashed: 1px dashed #BFAFA0;

    /* Inks & Typography Tones */
    --ink-black: #1A1815;
    --ink-dark: #2F2A24;
    --ink-body: #423B33;
    --ink-muted: #736859;
    --ink-light: #FAF6EE;

    /* Vintage Brand Accents */
    --accent-copper: #B85D19;
    --accent-copper-hover: #9C4B0F;
    --accent-gold: #B7791F;
    --accent-green: #285E42;
    --accent-green-hover: #1E4732;
    --accent-brick: #9B2C2C;
    --accent-brick-light: #FDF2F2;
    --accent-green-light: #F0F7F3;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-brand: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Shadows & Radii */
    --shadow-sm: 0 1px 3px rgba(44, 38, 30, 0.06);
    --shadow-md: 0 4px 10px rgba(44, 38, 30, 0.08);
    --shadow-lg: 0 10px 25px rgba(44, 38, 30, 0.1);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    --transition: all 0.2s ease-in-out;
}

/* Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: #EFE8DC;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--ink-body);
    background-color: var(--bg-page);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image:
        radial-gradient(var(--bg-surface) 1px, transparent 1px),
        radial-gradient(#E8DEC8 0.5px, var(--bg-page) 0.5px);
    background-size: 32px 32px, 16px 16px;
    background-position: 0 0, 8px 8px;
    padding-bottom: 75px;
    /* Space for floating dock */
    overflow-x: hidden;
    max-width: 100%;
}

::selection {
    background: var(--accent-copper);
    color: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--ink-black);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: var(--accent-copper);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-copper-hover);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.top-announcement-bar {
    background: var(--bg-dark);
    color: #D6CEC3;
    font-family: var(--font-body);
    font-size: 0.76rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(184, 93, 25, 0.4);
}

.top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.announcement-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.v-dot {
    width: 6px;
    height: 6px;
    background: #34D399;
    border-radius: 50%;
    display: inline-block;
}

.announcement-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.74rem;
}

.announcement-right a {
    color: #F7D49E;
    font-weight: 700;
}

.sep {
    color: rgba(255, 255, 255, 0.25);
}


.site-header {
    background: var(--bg-card);
    border-bottom: 2px solid var(--border-vintage);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.brand-logo-img:hover {
    transform: scale(1.02);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-dark);
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--accent-copper);
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone-box {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-black);
}

.header-phone-box .svg-icon {
    color: var(--accent-copper);
    display: flex;
    align-items: center;
}

.phone-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.phone-details small {
    font-size: 0.68rem;
    color: var(--ink-muted);
}

.phone-details strong {
    font-size: 0.95rem;
    color: var(--ink-black);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    background: var(--bg-surface);
    border: 1px solid var(--border-vintage);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 7px;
    transition: var(--transition);
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink-black);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.btn-vintage-copper {
    background: var(--accent-copper);
    color: #FFFFFF !important;
    padding: 9px 16px;
    font-size: 0.86rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 1px solid var(--accent-copper-hover);
    box-shadow: 2px 2px 0 var(--border-dark);
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-vintage-copper:hover {
    background: var(--accent-copper-hover);
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--border-dark);
}


.hero-section {
    padding: 44px 0 40px 0;
    border-bottom: 1px solid var(--border-vintage);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 36px;
    align-items: center;
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface);
    color: var(--accent-copper);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-vintage);
    margin-bottom: 12px;
}

.badge-svg {
    display: flex;
    align-items: center;
    color: var(--accent-copper);
}

.hero-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.highlight-brick {
    color: var(--accent-brick);
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--ink-dark);
    line-height: 1.68;
    margin-bottom: 20px;
}

.hero-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-vintage);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.clean-icon {
    color: var(--accent-copper);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--ink-black);
}

.value-item span {
    font-size: 0.75rem;
    color: var(--ink-muted);
}

.hero-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.btn-hero-copper {
    background: var(--accent-copper);
    color: #FFFFFF !important;
    font-size: 0.94rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-dark);
    box-shadow: 3px 3px 0 var(--border-dark);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-copper:hover {
    background: var(--accent-copper-hover);
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--border-dark);
}

.btn-hero-green {
    background: var(--accent-green);
    color: #FFFFFF !important;
    font-size: 0.94rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-dark);
    box-shadow: 3px 3px 0 var(--border-dark);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-green:hover {
    background: var(--accent-green-hover);
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--border-dark);
}

.hero-rating-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--ink-muted);
}

.rating-stars {
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Hero Quick Booking Card */
.hero-form-card {
    background: var(--bg-card);
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 5px 5px 0 var(--border-vintage);
}

.form-card-header {
    text-align: center;
    margin-bottom: 14px;
}

.card-stamp {
    display: inline-block;
    background: var(--bg-surface);
    color: var(--accent-copper);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border: 1px dashed var(--accent-copper);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.form-card-title {
    font-size: 1.3rem;
    margin-bottom: 3px;
}

.form-card-desc {
    font-size: 0.82rem;
    color: var(--ink-muted);
}

.vintage-quick-form {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.field-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.field-wrap label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-dark);
}

.field-wrap input,
.field-wrap select,
.field-wrap textarea {
    width: 100%;
    padding: 8px 12px;
    background: var(--bg-page);
    border: 1px solid var(--border-vintage);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--ink-black);
    outline: none;
    transition: var(--transition);
}

.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap textarea:focus {
    border-color: var(--accent-copper);
    background: #FFFFFF;
}

.btn-hero-submit {
    background: var(--ink-black);
    color: #FAF6EE;
    border: 1.5px solid var(--ink-black);
    padding: 11px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 2px 2px 0 var(--accent-copper);
    transition: var(--transition);
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-hero-submit:hover {
    background: var(--accent-copper);
    border-color: var(--accent-copper);
    color: #FFFFFF;
}

.form-guarantee-note {
    font-size: 0.72rem;
    color: var(--ink-muted);
    text-align: center;
}


.operators-strip {
    background: var(--bg-dark);
    padding: 16px 0;
    border-top: 1px solid var(--accent-copper);
    border-bottom: 1px solid var(--border-dark);
}

.strip-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.strip-tagline {
    font-family: var(--font-mono);
    color: #E2D9CC;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.carrier-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.c-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #FAF6EE;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.dot-red {
    background: #DC2626;
}

.dot-blue {
    background: #2563EB;
}

.dot-amber {
    background: #D97706;
}

.dot-green {
    background: #16A34A;
}


section {
    padding: 52px 0;
}

.section-title-wrap {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px auto;
}

.v-section-kicker {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--accent-copper);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.v-section-heading {
    font-size: 2.1rem;
    margin-bottom: 8px;
}

.v-section-sub {
    font-size: 1rem;
    color: var(--ink-muted);
}

.editorial-service-section {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-vintage);
    padding: 56px 0;
}

.editorial-header {
    max-width: 960px;
    margin: 0 auto 36px auto;
    text-align: center;
}

.editorial-main-title {
    font-size: 2.2rem;
    line-height: 1.28;
    margin-bottom: 16px;
    color: var(--ink-black);
}

.editorial-lead {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--ink-dark);
}

.editorial-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-vintage);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 0;
}

.editorial-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.editorial-subheading {
    font-size: 1.3rem;
    color: var(--accent-copper);
    margin-top: 8px;
    margin-bottom: 4px;
    line-height: 1.35;
    border-bottom: 1px solid var(--border-vintage);
    padding-bottom: 6px;
}

.editorial-column p {
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--ink-body);
}

.editorial-column strong {
    color: var(--ink-black);
}

.editorial-callout-box {
    background: var(--bg-card);
    border: 1.5px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: 4px 4px 0 var(--border-vintage);
}

.callout-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.callout-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 720px;
}

.callout-text strong {
    font-size: 1.05rem;
    color: var(--ink-black);
}

.callout-text span {
    font-size: 0.9rem;
    color: var(--ink-muted);
}

.btn-callout-copper {
    background: var(--accent-copper);
    color: #FFFFFF !important;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-dark);
    box-shadow: 2px 2px 0 var(--border-dark);
    white-space: nowrap;
    transition: var(--transition);
}

.btn-callout-copper:hover {
    background: var(--accent-copper-hover);
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--border-dark);
}

@media (max-width: 900px) {
    .editorial-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .editorial-main-title {
        font-size: 1.8rem;
    }

    .callout-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-callout-copper {
        width: 100%;
        text-align: center;
    }
}

.services-section {
    background: var(--bg-page);
    padding: 36px 0;
}

.services-ultra-compact {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-vintage);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    box-shadow: var(--shadow-sm);
}

.services-ultra-compact .v-section-heading {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.services-short-para {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink-body);
}

.services-short-para strong {
    color: var(--accent-copper);
    font-weight: 700;
}

@media (max-width: 768px) {
    .services-ultra-compact {
        padding: 20px 18px;
    }

    .services-ultra-compact .v-section-heading {
        font-size: 1.5rem;
    }
}


.packages-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-vintage);
    border-bottom: 1px solid var(--border-vintage);
    padding: 50px 0;
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.product-card-v {
    background: var(--bg-card);
    border: 1.5px solid var(--border-vintage);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card-v:hover {
    border-color: var(--accent-copper);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-img-box {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-vintage);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.product-card-v:hover .product-img {
    transform: scale(1.08);
}

.product-details {
    padding: 14px 12px 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-card);
}

.product-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent-copper);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    text-transform: uppercase;
    display: block;
}

.product-title {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    color: var(--ink-black);
    margin: 0;
    line-height: 1.35;
}




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

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

.step-card-v {
    background: var(--bg-card);
    border: 1px solid var(--border-vintage);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.step-badge-v {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-copper);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.step-title-v {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-desc-v {
    font-size: 0.84rem;
    color: var(--ink-muted);
    line-height: 1.5;
}


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

.locality-search-bar-wrap {
    max-width: 520px;
    margin: 0 auto 18px auto;
}

.v-search-input {
    width: 100%;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1.5px solid var(--border-vintage);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.v-search-input:focus {
    border-color: var(--accent-copper);
    box-shadow: 0 0 0 3px rgba(184, 93, 25, 0.15);
}

.locality-chips-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    max-width: 960px;
    margin: 0 auto;
}

.v-chip {
    background: var(--bg-surface);
    border: 1px solid var(--border-vintage);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink-dark);
    transition: var(--transition);
}

.v-chip:hover {
    background: var(--bg-card);
    border-color: var(--accent-copper);
    color: var(--accent-copper);
}


.booking-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-vintage);
    border-bottom: 1px solid var(--border-vintage);
    padding: 56px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-two-col-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

/* Left Card: Direct Contact Channels */
.contact-channels-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-vintage);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-card-heading {
    font-size: 1.45rem;
    margin-bottom: 6px;
    color: var(--ink-black);
    word-break: break-word;
}

.contact-card-desc {
    font-size: 0.88rem;
    color: var(--ink-muted);
    line-height: 1.55;
    margin-bottom: 20px;
    word-break: break-word;
}

.contact-channels-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-page);
    border: 1px solid var(--border-vintage);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.channel-item:hover {
    border-color: var(--accent-copper);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.channel-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-vintage);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-copper);
}

.channel-item.wa-item:hover .channel-icon {
    color: var(--accent-green);
    border-color: var(--accent-green);
}

.channel-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.channel-info small {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.channel-info strong {
    font-size: 1.05rem;
    color: var(--ink-black);
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.channel-info span {
    font-size: 0.78rem;
    color: var(--ink-muted);
    word-break: break-word;
}

.contact-location-pill {
    background: var(--bg-surface);
    border: 1px dashed var(--border-vintage);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--ink-dark);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Right Card: Short Simple Form */
.contact-form-card {
    background: var(--bg-card);
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: 6px 6px 0 var(--border-vintage);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.simple-booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.simple-booking-form input,
.simple-booking-form select,
.simple-booking-form button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-privacy-note {
    font-size: 0.75rem;
    color: var(--ink-muted);
    text-align: center;
    margin-top: 4px;
    word-break: break-word;
}

@media (max-width: 900px) {
    .contact-two-col-grid {
        grid-template-columns: 1fr;
    }
}

.direct-call-line a {
    color: var(--accent-copper);
    font-weight: 700;
}


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

.faq-accordion-container {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-vintage);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    transition: var(--transition);
}

.faq-accordion-item[open] {
    border-left: 3px solid var(--accent-copper);
    background: var(--bg-card);
}

.faq-q-title {
    list-style: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--ink-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-q-title::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    font-size: 1.2rem;
    color: var(--accent-copper);
}

.faq-a-body {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dotted var(--border-vintage);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ink-body);
}

.site-footer {
    background: var(--bg-dark);
    color: var(--ink-light);
    padding: 44px 0 20px 0;
    border-top: 2px solid var(--accent-copper);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-brand);
    font-size: 1.1rem;
    font-weight: 900;
    color: #FAF6EE;
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 0.86rem;
    line-height: 1.6;
    color: #A8A29E;
    margin-bottom: 12px;
}

.footer-address-info {
    font-size: 0.84rem;
    color: #D6D3D1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-contact-row .footer-icon {
    color: #F7D49E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-address-info a {
    color: #F7D49E;
    text-decoration: none;
    transition: var(--transition);
}

.footer-address-info a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-head {
    font-family: var(--font-mono);
    color: #F7D49E;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.footer-ul,
.footer-trust-ul {
    list-style: none;
    font-size: 0.84rem;
    color: #A8A29E;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-ul a {
    color: #A8A29E;
}

.footer-ul a:hover {
    color: #FFFFFF;
}

.footer-trust-ul li {
    color: #E7E5E4;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #78716C;
    flex-wrap: wrap;
    gap: 8px;
}

.floating-action-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(28, 25, 22, 0.97);
    color: #FAF6EE;
    padding: 6px 0;
    z-index: 999;
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--accent-copper);
}

.dock-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.dock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #34D399;
    border-radius: 50%;
    box-shadow: 0 0 6px #34D399;
    animation: blink-live 2s infinite ease-in-out;
}

@keyframes blink-live {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

.dock-btns {
    display: flex;
    gap: 8px;
}

.btn-dock {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.btn-dock-wa {
    background: var(--accent-green);
    color: #FFFFFF !important;
}

.btn-dock-wa:hover {
    background: var(--accent-green-hover);
}

.btn-dock-call {
    background: var(--accent-copper);
    color: #FFFFFF !important;
}

.btn-dock-call:hover {
    background: var(--accent-copper-hover);
}

.btn-dock-survey {
    background: var(--bg-card);
    color: var(--ink-black) !important;
    border: 1px solid var(--border-vintage);
}

.btn-dock-survey:hover {
    background: #FFFFFF;
}


.vintage-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 18, 16, 0.75);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vintage-modal-card {
    background: var(--bg-card);
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 28px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 6px 6px 0 var(--accent-copper);
}

.modal-seal-badge {
    display: inline-block;
    background: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.modal-title-text {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.modal-body-text {
    font-size: 0.92rem;
    color: var(--ink-muted);
    line-height: 1.55;
    margin-bottom: 18px;
}

.modal-actions-row {
    display: flex;
    gap: 8px;
}

.btn-modal-dismiss {
    background: var(--bg-surface);
    color: var(--ink-black);
    border: 1px solid var(--border-vintage);
    padding: 9px 14px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
}


@media (max-width: 1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .products-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 868px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        border-bottom: 2px solid var(--border-dark);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0;
        z-index: 999;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-item {
        padding: 14px 24px;
        border-bottom: 1px solid var(--border-vintage);
        font-size: 0.95rem;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .editorial-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-two-col-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 680px) {
    body {
        padding-bottom: 64px;
        /* Space for floating dock */
    }

    .top-announcement-bar {
        padding: 5px 0;
    }

    .top-inner {
        flex-direction: column;
        gap: 3px;
        text-align: center;
        font-size: 0.72rem;
    }

    .header-container {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .brand-logo-img {
        height: 38px;
        max-width: 170px;
    }

    .header-phone-box small {
        display: none;
    }

    .header-phone-box strong {
        font-size: 0.84rem;
    }

    .hero-section {
        padding: 28px 0 36px 0;
    }

    .hero-heading {
        font-size: 1.65rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .hero-lead {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .hero-values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .value-item {
        padding: 10px 8px;
        gap: 8px;
    }

    .value-item .clean-icon {
        width: 32px;
        height: 32px;
    }

    .value-item .clean-icon svg {
        width: 18px;
        height: 18px;
    }

    .value-item strong {
        font-size: 0.8rem;
    }

    .value-item span {
        font-size: 0.7rem;
    }

    .hero-buttons-row {
        flex-direction: column;
        gap: 10px;
    }

    .btn-hero-copper,
    .btn-hero-green {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 0.92rem;
    }

    .hero-rating-proof {
        padding: 8px 12px;
        font-size: 0.78rem;
    }

    .hero-form-card,
    .contact-channels-card,
    .contact-form-card {
        padding: 20px 16px;
    }

    .form-card-title,
    .contact-card-heading {
        font-size: 1.25rem;
    }

    .operators-logos {
        gap: 12px;
    }

    .op-badge {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .editorial-main-title {
        font-size: 1.5rem;
    }

    .editorial-subheading {
        font-size: 1.15rem;
    }

    .callout-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .btn-callout-copper {
        width: 100%;
        text-align: center;
    }

    .services-ultra-compact {
        padding: 18px 16px;
    }

    .v-section-heading {
        font-size: 1.5rem;
    }

    .v-section-sub {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .process-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-card-v {
        padding: 18px 16px;
    }

    .locality-chips-wrap {
        gap: 6px;
    }

    .v-chip {
        font-size: 0.75rem;
        padding: 4px 9px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand-col {
        grid-column: span 1;
    }

    /* Floating Bottom Action Dock */
    .floating-action-dock {
        padding: 8px 0;
        padding-bottom: max(8px, env(safe-area-inset-bottom));
    }

    .dock-status {
        display: none;
    }

    .dock-btns {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .btn-dock-survey {
        display: none;
        /* keep two primary instant action buttons on mobile: WhatsApp and Call */
    }

    .btn-dock {
        padding: 9px 8px;
        font-size: 0.8rem;
        justify-content: center;
        border-radius: var(--radius-sm);
    }
}

@media (max-width: 380px) {
    .hero-values-grid {
        grid-template-columns: 1fr;
    }

    .brand-logo-img {
        height: 32px;
        max-width: 140px;
    }

    .header-phone-box .phone-details {
        display: none;
    }

    .header-phone-box {
        padding: 6px;
        border: 1px solid var(--border-vintage);
        border-radius: var(--radius-sm);
    }
}