/* ═══════════════════════════════════════════════════════════════════════════
   aircons.sg — Stylesheet
   Mobile-first. Gold (#F5C22A) + Black on light cream backgrounds.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --gold:        #F5C22A;
    --gold-dark:   #D4A520;
    --gold-light:  #FFF8E1;
    --gold-paler:  #FFFCEF;
    --black:       #111111;
    --gray-900:    #1F1F1F;
    --gray-700:    #4A4A4A;
    --gray-500:    #777777;
    --gray-300:    #D1D1D1;
    --gray-100:    #F5F5F5;
    --white:       #FFFFFF;
    --wa-green:    #25D366;
    --wa-green-dk: #1DA851;
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:   0 4px 12px rgba(0,0,0,0.10);
    --shadow-lg:   0 10px 30px rgba(0,0,0,0.12);
    --radius:      12px;
    --radius-sm:   8px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--black);
    line-height: 1.2;
    margin-top: 0;
}

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

ul { padding-left: 1.2em; }

/* ─── Container ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-narrow {
    max-width: 880px;
    margin: 0 auto;
}

.section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .section { padding: 80px 0; }
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5em;
}
@media (min-width: 768px) {
    .section-title { font-size: 2.5rem; }
}

.section-subtitle {
    text-align: center;
    color: var(--gray-700);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 3em;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    line-height: 1;
    white-space: nowrap;
}

.btn-wa, .btn-wa-large, .btn-wa-hero {
    background: var(--wa-green);
    color: var(--white) !important;
}
.btn-wa:hover, .btn-wa-large:hover, .btn-wa-hero:hover {
    background: var(--wa-green-dk);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-phone, .btn-phone-hero {
    background: var(--black);
    color: var(--white) !important;
}
.btn-phone:hover, .btn-phone-hero:hover {
    background: var(--gray-900);
    transform: translateY(-1px);
}

.btn-wa-large, .btn-phone-hero {
    padding: 16px 28px;
    font-size: 1.05rem;
    font-weight: 700;
}

.btn-wa-hero {
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
}

.btn-secondary {
    background: var(--gold-light);
    color: var(--black) !important;
    border: 2px solid var(--gold);
}
.btn-secondary:hover { background: var(--gold); }

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1em;
    justify-content: center;
}

/* ─── Header ─── */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo-link { text-decoration: none; }

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--black);
}
.logo-dot { color: var(--gold); }

.main-nav {
    display: none;
    gap: 22px;
}
@media (min-width: 1024px) {
    .main-nav { display: flex; }
}
.main-nav a {
    color: var(--gray-900);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
.main-nav a:hover {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
}

.header-cta {
    display: flex;
    gap: 8px;
    align-items: center;
}
.header-cta .btn { padding: 10px 14px; font-size: 0.9rem; }

@media (max-width: 600px) {
    .header-cta .btn-text { display: none; }
    .header-cta .btn { padding: 10px 12px; }
}

/* ─── Hero ─── */
.hero {
    background:
        linear-gradient(180deg, var(--gold-paler) 0%, var(--white) 100%);
    padding: 60px 0 50px;
    text-align: center;
}
@media (min-width: 768px) {
    .hero { padding: 80px 0 70px; }
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.15;
}
@media (min-width: 768px) {
    .hero-title { font-size: 3rem; }
}
.hero-highlight {
    color: var(--gold-dark);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-subtitle strong { color: var(--black); }

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-promise {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* ─── Trust Bar ─── */
.trust-bar {
    background: var(--gold-light);
    padding: 24px 0;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (min-width: 600px) {
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(6, 1fr); }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-900);
}
.trust-icon { font-size: 1.2rem; }

/* ─── Capabilities Grid ─── */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}
@media (min-width: 600px) {
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .capabilities-grid { grid-template-columns: repeat(4, 1fr); }
}

.cap-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-decoration: none;
    transition: all 0.2s;
    color: var(--gray-900) !important;
}
.cap-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.cap-icon { font-size: 2.4rem; margin-bottom: 12px; }
.cap-title { font-size: 1.1rem; margin: 0 0 8px; }
.cap-desc {
    color: var(--gray-700);
    font-size: 0.9rem;
    margin: 0 0 16px;
    flex: 1;
    line-height: 1.5;
}
.cap-cta {
    color: var(--wa-green-dk);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ─── Pricing Snapshot Grid ─── */
.section-pricing-snapshot { background: var(--gold-paler); }

.pricing-snapshot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 600px) {
    .pricing-snapshot-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .pricing-snapshot-grid { grid-template-columns: repeat(4, 1fr); }
}

.pricing-snapshot-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold);
}
.pricing-snapshot-card h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}
.price-big {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin: 0 0 16px;
}
.price-big span {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--black);
}
.pricing-snapshot-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    color: var(--gray-700);
    font-size: 0.92rem;
}
.pricing-snapshot-card ul li {
    padding: 4px 0;
    border-bottom: 1px dashed var(--gray-100);
}
.pricing-snapshot-card ul li:last-child { border-bottom: none; }

.link-arrow {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ─── Pre-Check Section ─── */
.section-precheck {
    background: var(--black);
    color: var(--white);
}
.section-precheck .section-title { color: var(--white); }
.section-precheck a { color: var(--gold); }
.section-precheck a:hover { color: var(--gold-light); }

.precheck-intro {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}
.precheck-promise {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}
.precheck-promise strong { color: var(--gold); }

.precheck-guarantee {
    background: rgba(245, 194, 42, 0.12);
    border-left: 4px solid var(--gold);
    padding: 18px 24px;
    border-radius: var(--radius-sm);
    color: var(--gold-light);
    text-align: left;
    font-weight: 500;
}

.precheck-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 600px) {
    .precheck-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .precheck-grid { grid-template-columns: repeat(3, 1fr); }
}

.precheck-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(245, 194, 42, 0.3);
    border-radius: var(--radius);
    padding: 24px 20px;
    position: relative;
}
.precheck-num {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--black);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    font-family: 'Playfair Display', serif;
}
.precheck-icon { font-size: 2rem; margin-bottom: 12px; }
.precheck-title {
    color: var(--gold);
    margin: 0 0 8px;
    font-size: 1.05rem;
}
.precheck-desc {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.precheck-cta { text-align: center; margin-top: 40px; }

/* Pre-check page detailed */
.precheck-grid-detailed .precheck-item-detailed {
    background: var(--gold-paler);
    border: 2px solid var(--gold-light);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
}
.precheck-grid-detailed .precheck-num { background: var(--gold); color: var(--black); }
.precheck-icon-large { font-size: 2.6rem; margin-bottom: 14px; }
.precheck-grid-detailed h3 {
    color: var(--black);
    margin-bottom: 8px;
    font-size: 1.15rem;
}
.precheck-grid-detailed p {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin: 0;
}

.precheck-section-title {
    text-align: center;
    margin: 60px 0 30px;
    font-size: 2rem;
}

.precheck-promise-block {
    margin-bottom: 50px;
}
.precheck-promise-block h2 { font-size: 1.8rem; margin-bottom: 16px; }
.lead-paragraph { font-size: 1.15rem; color: var(--gray-900); }

.precheck-guarantee-box {
    background: var(--gold-paler);
    border-left: 5px solid var(--gold);
    padding: 24px 28px;
    border-radius: var(--radius-sm);
    margin-top: 30px;
}
.precheck-guarantee-box h3 { margin-top: 0; }

.precheck-aftermath { margin: 60px 0; }
.aftermath-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
}
@media (min-width: 768px) {
    .aftermath-grid { grid-template-columns: repeat(3, 1fr); }
}
.aftermath-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 28px;
}
.aftermath-icon { font-size: 2.4rem; margin-bottom: 10px; }
.aftermath-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.aftermath-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin: 0;
}

/* ─── Pricing Tables ─── */
.pricing-table {
    background: var(--white);
    border: 2px solid var(--gold-light);
    border-radius: var(--radius);
    padding: 28px 24px;
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
}
.pricing-table-title {
    font-size: 1.4rem;
    margin: 0 0 20px;
    color: var(--black);
}
.pricing-grid {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.pricing-grid th, .pricing-grid td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}
.pricing-grid th {
    background: var(--gold-paler);
    font-weight: 700;
    color: var(--black);
    font-size: 0.9rem;
}
.pricing-grid td:nth-child(2) { font-weight: 700; }
.pricing-extra {
    background: var(--gold-light);
}
.pricing-extra td { color: var(--black); font-weight: 700; }

.pricing-cta { text-align: center; margin-top: 12px; }

.pricing-callout {
    background: var(--gold-light);
    border-radius: var(--radius);
    padding: 28px;
    margin: 40px 0;
}
.pricing-callout h2 { margin-top: 0; font-size: 1.4rem; }

/* ─── Packages ─── */
.section-packages { background: var(--gold-paler); }

.package-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .package-comparison { grid-template-columns: repeat(2, 1fr); }
}

.package-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.package-featured {
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
}
.package-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.package-name {
    font-size: 1.6rem;
    margin: 0 0 8px;
}
.package-tagline {
    color: var(--gray-700);
    margin: 0 0 20px;
    font-size: 0.98rem;
}
.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.package-features li {
    padding: 6px 0;
    color: var(--gray-900);
    font-size: 0.95rem;
}
.package-pricing {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.package-pricing th, .package-pricing td {
    padding: 9px 12px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
}
.package-pricing th {
    background: var(--gold-paler);
    font-weight: 700;
}

.package-note {
    text-align: center;
    margin-top: 24px;
    color: var(--gray-700);
}

/* Comparison table (packages page) */
.package-comparison-table-wrapper {
    margin: 60px 0;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}
.comparison-table th, .comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}
.comparison-table th {
    background: var(--gold-paler);
    font-weight: 700;
}
.comparison-table th.featured, .comparison-table td:nth-child(3) {
    background: var(--gold-light);
}
.comparison-table .total-row {
    background: var(--gold) !important;
    font-weight: 700;
}
.comparison-table .total-row td { background: var(--gold-light); }

.comparison-note {
    background: var(--gold-paler);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--gold);
    margin-top: 20px;
}

/* ─── FAQ ─── */
.section-faq { background: var(--gray-100); }

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}
.faq-item summary {
    padding: 18px 22px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    color: var(--black);
    position: relative;
    padding-right: 50px;
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--gold-dark);
    font-weight: 700;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer {
    padding: 0 22px 18px;
    color: var(--gray-700);
    line-height: 1.7;
}

.faq-cta { text-align: center; margin-top: 40px; }
.faq-cta p { color: var(--gray-700); margin-bottom: 14px; }

/* ─── Areas Grid ─── */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 600px) {
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
    .areas-grid { grid-template-columns: repeat(5, 1fr); }
}
.area-link {
    display: block;
    padding: 10px 12px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    text-align: center;
    color: var(--gray-900) !important;
    font-size: 0.9rem;
    transition: all 0.15s;
}
.area-link:hover {
    background: var(--gold-light);
    border-color: var(--gold);
    color: var(--black) !important;
}

/* ─── Final CTA ─── */
.section-final-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-align: center;
}
.section-final-cta h2 {
    color: var(--black);
    font-size: 2rem;
    margin-bottom: 16px;
}
.section-final-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ─── Service / Page Hero ─── */
.service-hero {
    background: var(--gold-paler);
    padding: 50px 0 40px;
    border-bottom: 2px solid var(--gold-light);
}
.breadcrumb {
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-bottom: 14px;
}
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb span { color: var(--black); font-weight: 500; }

.service-title {
    font-size: 2rem;
    margin: 0 0 12px;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .service-title { font-size: 2.6rem; }
}
.service-tagline {
    color: var(--gray-700);
    font-size: 1.05rem;
    margin: 0 0 24px;
}

/* ─── Content blocks ─── */
.content-block {
    margin: 40px 0;
}
.content-block h2 {
    font-size: 1.7rem;
    margin-bottom: 16px;
}
.content-block.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 768px) {
    .content-block.two-col { grid-template-columns: 1fr 1fr; }
}

.checkmark-list {
    list-style: none;
    padding: 0;
}
.checkmark-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--gray-900);
}
.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 1.05rem;
}
.checkmark-list-large li {
    padding: 12px 0 12px 32px;
    font-size: 1.05rem;
}
.checkmark-list-large li::before { font-size: 1.3rem; top: 11px; }

.issues-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.issues-table th, .issues-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}
.issues-table th { background: var(--gold-paler); font-weight: 700; }

.service-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding: 18px 22px;
    background: var(--gold-paler);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--gold);
}

/* Services index */
.services-index-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .services-index-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .services-index-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-index-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-decoration: none;
    color: var(--gray-900) !important;
    transition: all 0.2s;
}
.service-index-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.service-index-card h2 {
    margin: 0 0 8px;
    font-size: 1.3rem;
}
.service-index-price {
    color: var(--gold-dark);
    font-weight: 700;
    margin: 0 0 10px;
    font-size: 1.05rem;
}
.service-index-desc {
    color: var(--gray-700);
    flex: 1;
    font-size: 0.95rem;
    margin: 0 0 14px;
    line-height: 1.55;
}

/* ─── Floating WhatsApp Button ─── */
.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--wa-green);
    color: var(--white) !important;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 99;
    animation: pulse-wa 2s ease-in-out infinite;
}
.floating-wa:hover {
    background: var(--wa-green-dk);
    color: var(--white) !important;
    transform: scale(1.05);
}
.wa-icon { font-size: 1.4rem; }
@media (max-width: 600px) {
    .wa-text { display: none; }
    .floating-wa { padding: 14px; }
}
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7); }
}

/* ─── Footer ─── */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 30px;
    margin-top: 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}
@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
        gap: 40px;
    }
}
.footer-col h3, .footer-col h4 {
    color: var(--gold);
    margin: 0 0 14px;
}
.footer-brand {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li { padding: 4px 0; }
.footer-col a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-legal {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-top: 18px;
}
.reply-promise {
    background: var(--gold);
    color: var(--black);
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ─── Print ─── */
@media print {
    .floating-wa, .site-header, .site-footer, .section-final-cta { display: none; }
}
