/* NurturePath — Shared Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blush: #E8C4C0;
    --blush-light: #F5E1DE;
    --beige: #D4B99C;
    --beige-warm: #C9A882;
    --ivory: #FBF7F4;
    --cream: #F5EDE6;
    --brown: #5C3D2E;
    --brown-deep: #3E2518;
    --brown-soft: #8B6B5A;
    --white: #FFFFFF;
    --text: #3E2518;
    --text-light: #8B6B5A;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', -apple-system, sans-serif;
    color: var(--text);
    background: var(--ivory);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(251, 247, 244, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(92, 61, 46, 0.06);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--brown);
    letter-spacing: 0.02em;
    text-decoration: none;
}

.nav-logo:hover { color: var(--brown-deep); }

.nav-links {
    display: flex;
    gap: 2.25rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--brown-soft);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--brown); }

.nav-cta {
    background: var(--brown);
    color: var(--cream) !important;
    padding: 0.55rem 1.35rem;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
    background: var(--brown-deep);
    color: var(--cream) !important;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(232, 196, 192, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 185, 156, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(245, 225, 222, 0.2) 0%, transparent 70%),
        var(--ivory);
}

.hero-accent {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 55vw;
    height: 130vh;
    background: linear-gradient(160deg, rgba(232, 196, 192, 0.15), rgba(212, 185, 156, 0.08));
    border-radius: 0 0 0 60%;
    transform: rotate(-5deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige-warm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--beige-warm);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--brown-deep);
    margin-bottom: 1.75rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--brown-soft);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-light);
    max-width: 520px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    margin-top: 2.25rem;
    padding: 1rem 2.5rem;
    background: var(--brown);
    color: var(--cream);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(92, 61, 46, 0.15);
}

.hero-cta:hover {
    background: var(--brown-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(92, 61, 46, 0.2);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 2.25rem;
    box-shadow: 0 4px 30px rgba(62, 37, 24, 0.04);
    border: 1px solid rgba(212, 185, 156, 0.2);
}

.hero-card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--beige-warm);
    margin-bottom: 0.6rem;
}

.hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.hero-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.hero-card.featured {
    background: linear-gradient(135deg, var(--brown), var(--brown-deep));
    border: none;
}

.hero-card.featured .hero-card-label { color: var(--blush); }
.hero-card.featured h3 { color: var(--cream); }
.hero-card.featured p { color: rgba(245, 237, 230, 0.75); }

/* ===== TAGLINE STRIP ===== */
.tagline-strip {
    background: var(--brown);
    padding: 3.5rem 2rem;
    text-align: center;
}

.tagline-strip p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--cream);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
}

/* ===== SECTION LABEL ===== */
.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige-warm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--beige-warm);
}

/* ===== ABOUT ===== */
.about {
    padding: 7rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-light);
    font-weight: 300;
}

.about-text strong {
    color: var(--brown);
    font-weight: 500;
}

.credential-bar {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    border: 1px solid rgba(212, 185, 156, 0.25);
}

.credential-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blush);
}

.credential span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 0.03em;
}

/* ===== SERVICES ===== */
.services {
    background: var(--cream);
    padding: 7rem 2rem;
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 4rem;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(212, 185, 156, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(62, 37, 24, 0.06);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brown);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: gap 0.3s;
}

.service-card:hover .card-link { gap: 0.65rem; }

.service-card.highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-deep) 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    border: none;
}

.service-card.highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(62, 37, 24, 0.15);
}

.service-card.highlight .service-number { color: var(--blush-light); opacity: 0.6; }
.service-card.highlight h3 { color: var(--cream); font-size: 1.5rem; }
.service-card.highlight p { color: rgba(245, 237, 230, 0.7); }
.service-card.highlight .card-link { color: var(--blush-light); }

.highlight-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.highlight-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(245, 237, 230, 0.85);
    font-weight: 300;
}

.highlight-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blush);
    flex-shrink: 0;
}

/* ===== DIFFERENCE ===== */
.difference {
    padding: 7rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.difference h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.3;
    margin-bottom: 3.5rem;
    max-width: 600px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.diff-item {
    position: relative;
    padding-top: 1.5rem;
}

.diff-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2.5rem;
    height: 2px;
    background: var(--blush);
}

.diff-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.65rem;
}

.diff-item p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
}

/* ===== BOOKING ===== */
.booking {
    background: var(--cream);
    padding: 7rem 2rem;
}

.booking-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.booking-info {
    padding-top: 0.5rem;
}

.booking h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.booking-description {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.booking-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-features li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.92rem;
    color: var(--brown);
    font-weight: 400;
}

.booking-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blush);
    flex-shrink: 0;
}

.booking-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.75rem;
    box-shadow: 0 8px 40px rgba(62, 37, 24, 0.05);
    border: 1px solid rgba(212, 185, 156, 0.2);
}

.form-group {
    margin-bottom: 1.35rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border: 1px solid rgba(212, 185, 156, 0.35);
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--ivory);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238B6B5A' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.15rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blush);
    box-shadow: 0 0 0 3px rgba(232, 196, 192, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.5;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-submit {
    width: 100%;
    padding: 1.05rem;
    background: var(--brown);
    color: var(--cream);
    border: none;
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    margin-top: 0.5rem;
}

.booking-submit:hover {
    background: var(--brown-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(92, 61, 46, 0.15);
}

.booking-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.booking-success {
    text-align: center;
    padding: 3rem 1rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blush-light);
    color: var(--brown);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.booking-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--brown);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.booking-success p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75;
    font-weight: 300;
    max-width: 380px;
    margin: 0 auto;
}

.form-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    margin-bottom: 1rem;
    display: none;
}

/* ===== CLOSING ===== */
.closing {
    background: linear-gradient(170deg, var(--brown-deep) 0%, var(--brown) 60%, var(--brown-soft) 100%);
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 50%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(232, 196, 192, 0.06), transparent);
    border-radius: 50%;
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.closing h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.35;
    margin-bottom: 1.5rem;
}

.closing h2 em {
    font-style: italic;
    color: var(--blush-light);
}

.closing p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(245, 237, 230, 0.65);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.closing-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--blush);
    color: var(--brown-deep);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.3s, transform 0.2s;
}

.closing-cta:hover {
    background: var(--blush-light);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--brown-deep);
    padding: 4rem 2rem 2.5rem;
    border-top: 1px solid rgba(232, 196, 192, 0.08);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cream);
    display: block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 237, 230, 0.5);
    font-weight: 300;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(245, 237, 230, 0.5);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: rgba(245, 237, 230, 0.9);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 196, 192, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(245, 237, 230, 0.35);
    font-weight: 300;
}

.footer-bottom a {
    color: rgba(245, 237, 230, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: rgba(245, 237, 230, 0.9);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-sep {
    color: rgba(245, 237, 230, 0.25);
    font-size: 0.75rem;
}

/* Form consent line */
.form-consent {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.form-consent a {
    color: var(--brown);
    text-decoration: underline;
}

.form-consent a:hover {
    color: var(--brown-deep);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--brown);
    margin: 4px 0;
    transition: 0.3s;
}

/* =========================================
   PAGE HERO — Subpages (not full height)
   ========================================= */
.page-hero {
    padding: 9rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(232, 196, 192, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 185, 156, 0.2) 0%, transparent 50%),
        var(--ivory);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-hero .section-label {
    justify-content: center;
}

.page-hero .section-label::before { display: none; }
.page-hero .section-label::after {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--beige-warm);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--brown-deep);
    margin-bottom: 1.5rem;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--brown-soft);
}

.page-hero-description {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-light);
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto;
}

/* ===== DETAIL SECTIONS ===== */
.detail-section {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.detail-section.alt-bg {
    max-width: 100%;
    background: var(--cream);
}

.detail-section.alt-bg .detail-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.detail-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.detail-section .lead {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    font-weight: 300;
    max-width: 720px;
    margin-bottom: 3rem;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 2.25rem;
    border: 1px solid rgba(212, 185, 156, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(62, 37, 24, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blush-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.65rem;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
}

/* ===== PROCESS / TIMELINE ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(212, 185, 156, 0.15);
    counter-increment: step;
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
}

/* ===== PRICING CARD ===== */
.pricing-section {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, var(--brown), var(--brown-deep));
    border-radius: 24px;
    padding: 3.5rem 3rem;
    color: var(--cream);
    margin-top: 2rem;
}

.pricing-card .price-range {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.pricing-card .price-note {
    font-size: 0.92rem;
    color: rgba(245, 237, 230, 0.6);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: left;
    max-width: 380px;
    margin: 0 auto 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: rgba(245, 237, 230, 0.85);
    font-weight: 300;
}

.pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blush);
    flex-shrink: 0;
}

.pricing-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--blush);
    color: var(--brown-deep);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.3s, transform 0.2s;
}

.pricing-cta:hover {
    background: var(--blush-light);
    transform: translateY(-2px);
}

/* ===== PAGE CTA BANNER ===== */
.page-cta-section {
    background: linear-gradient(170deg, var(--brown-deep) 0%, var(--brown) 60%, var(--brown-soft) 100%);
    padding: 5.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(232, 196, 192, 0.05), transparent);
    border-radius: 50%;
}

.page-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.page-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.35;
    margin-bottom: 1.25rem;
}

.page-cta-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 237, 230, 0.6);
    font-weight: 300;
    margin-bottom: 2rem;
}

.page-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--blush);
    color: var(--brown-deep);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.3s, transform 0.2s;
}

.page-cta-btn:hover {
    background: var(--blush-light);
    transform: translateY(-2px);
}

/* ===== TWO-COLUMN LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.two-col-text h2 {
    margin-bottom: 1.5rem;
}

.two-col-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 1rem;
}

.two-col-text p strong {
    color: var(--brown);
    font-weight: 500;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--brown);
    font-weight: 400;
    line-height: 1.6;
}

.check-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blush);
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* ===== STAT CARDS ===== */
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(212, 185, 156, 0.15);
    text-align: center;
}

.stat-card .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.35rem;
}

.stat-card .stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.82rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--brown); }

.breadcrumb span { color: var(--beige-warm); }

.breadcrumb .current {
    color: var(--brown);
    font-weight: 500;
}

/* ===== RESOURCES PAGE ===== */

.nav-active {
    color: var(--brown) !important;
    font-weight: 600 !important;
}

/* Resources in-page nav */
.resources-nav {
    background: var(--cream);
    border-bottom: 1px solid rgba(212, 185, 156, 0.2);
    padding: 0.75rem 2rem;
    position: sticky;
    top: 64px;
    z-index: 50;
}

.resources-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.resources-nav-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.resources-nav a {
    font-size: 0.82rem;
    color: var(--brown-soft);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
}

.resources-nav a:hover {
    color: var(--brown);
    border-bottom-color: var(--blush);
}

/* FAQ */
.faq-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(212, 185, 156, 0.2);
}

.faq-item {
    border-bottom: 1px solid rgba(212, 185, 156, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--brown-deep);
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover { color: var(--brown-soft); }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blush-light);
    flex-shrink: 0;
    position: relative;
    transition: background 0.3s, transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--brown);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon {
    background: var(--blush);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.3s;
    padding: 0;
}

.faq-item.open .faq-answer {
    max-height: 1200px;
    padding-bottom: 1.75rem;
}

.faq-answer p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 1rem;
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer p strong {
    color: var(--brown);
    font-weight: 500;
}

.faq-list-items {
    list-style: none;
    margin: 0.75rem 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-list-items li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.65;
}

.faq-list-items li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blush);
    flex-shrink: 0;
    margin-top: 0.55rem;
}

.faq-learn-more {
    font-size: 0.85rem !important;
    color: var(--brown-soft) !important;
    font-weight: 400 !important;
}

.faq-learn-more a {
    color: var(--brown);
    text-decoration: underline;
    font-weight: 500;
}

.faq-learn-more a:hover { color: var(--brown-deep); }

/* Compare table */
.compare-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid rgba(212, 185, 156, 0.2);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.compare-table th {
    background: var(--cream);
    color: var(--brown);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(212, 185, 156, 0.2);
}

.compare-table td {
    padding: 0.85rem 1.25rem;
    color: var(--text-light);
    font-weight: 300;
    border-bottom: 1px solid rgba(212, 185, 156, 0.1);
    line-height: 1.5;
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tbody tr:hover td { background: rgba(245, 225, 222, 0.15); }

/* Article sections */
.article-section {
    padding: 5.5rem 2rem;
}

.article-section.alt-bg {
    background: var(--cream);
}

.article-inner {
    max-width: 820px;
    margin: 0 auto;
}

.article-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-label-row .section-label {
    margin-bottom: 0;
}

.article-read-time {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.article-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.article-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(212, 185, 156, 0.2);
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--brown);
    margin: 2.5rem 0 0.85rem;
}

.article-body h3:first-child { margin-top: 0; }

.article-body p {
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 1.1rem;
}

.article-body p strong {
    color: var(--brown);
    font-weight: 500;
}

.article-body ul {
    list-style: none;
    margin: 0.5rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.article-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
}

.article-body ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blush);
    flex-shrink: 0;
    margin-top: 0.6rem;
}

/* Cost table */
.cost-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid rgba(212, 185, 156, 0.2);
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    background: var(--white);
}

.cost-table th {
    background: var(--blush-light);
    color: var(--brown);
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.9rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(212, 185, 156, 0.2);
}

.cost-table td {
    padding: 0.8rem 1.25rem;
    color: var(--text-light);
    font-weight: 300;
    border-bottom: 1px solid rgba(212, 185, 156, 0.1);
}

.cost-table tr:last-child td { border-bottom: none; }
.cost-table .cost-total td { background: rgba(232, 196, 192, 0.1); }
.cost-table .cost-total td strong { color: var(--brown); }

.table-note {
    font-size: 0.8rem !important;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.75rem !important;
}

/* Step list */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(212, 185, 156, 0.15);
}

.article-section.alt-bg .step-item {
    background: var(--ivory);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
    flex-shrink: 0;
    min-width: 2rem;
    margin-top: 0.15rem;
}

.step-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.4rem;
}

.step-item p {
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
    color: var(--text-light) !important;
    font-weight: 300 !important;
    margin-bottom: 0 !important;
}

/* Checklist items */
.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 1.5rem 0 2rem;
    counter-reset: checklist;
}

.checklist-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(212, 185, 156, 0.15);
}

.checklist-item:first-child { border-top: 1px solid rgba(212, 185, 156, 0.15); }

.checklist-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
    flex-shrink: 0;
    min-width: 2.5rem;
    margin-top: 0.1rem;
}

.checklist-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.checklist-content p {
    font-size: 0.92rem !important;
    line-height: 1.8 !important;
    color: var(--text-light) !important;
    font-weight: 300 !important;
    margin-bottom: 0 !important;
}

/* Article CTA block */
.article-cta {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--brown), var(--brown-deep));
    border-radius: 20px;
    padding: 2.5rem 2.75rem;
    text-align: center;
}

.article-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream);
    margin: 0 0 0.75rem !important;
}

.article-cta p {
    font-size: 1rem !important;
    line-height: 1.75 !important;
    color: rgba(245, 237, 230, 0.65) !important;
    font-weight: 300 !important;
    margin-bottom: 1.75rem !important;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.article-cta-btn {
    display: inline-block;
    padding: 0.9rem 2.25rem;
    background: var(--blush);
    color: var(--brown-deep);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.3s, transform 0.2s;
}

.article-cta-btn:hover {
    background: var(--blush-light);
    transform: translateY(-2px);
}

/* ===== ABOUT PAGE ===== */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-credential-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    border: 1px solid rgba(212, 185, 156, 0.15);
}

.about-credential-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.4rem;
}

.about-credential-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-light);
    font-weight: 300;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: #FDF5F3;
    border-top: 1px solid rgba(232, 196, 192, 0.2);
    border-bottom: 1px solid rgba(232, 196, 192, 0.2);
}

/* Credentials Bar */
.trust-credentials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.trust-credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 2rem;
}

.trust-credential-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    opacity: 0.7;
    flex-shrink: 0;
}

.trust-credential span:last-child {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brown);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.trust-credential-divider {
    width: 1px;
    height: 24px;
    background: rgba(232, 196, 192, 0.5);
    flex-shrink: 0;
}

/* Stats Strip */
.trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 3rem 2rem;
    background: var(--white);
    border-top: 1px solid rgba(212, 185, 156, 0.12);
    border-bottom: 1px solid rgba(212, 185, 156, 0.12);
    flex-wrap: wrap;
}

.trust-stat {
    text-align: center;
    padding: 0 4rem;
    flex: 1;
    min-width: 160px;
}

.trust-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--brown);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(212, 185, 156, 0.2);
    flex-shrink: 0;
}

/* Why NurturePath Trust Section */
.trust-why {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.trust-why-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige-warm);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-why-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--beige-warm);
}

.trust-why-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.3;
    margin-bottom: 3rem;
    max-width: 640px;
}

.trust-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(212, 185, 156, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    padding-top: 2.5rem;
}

.trust-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--blush);
    border-radius: 0 2px 2px 0;
}

.trust-why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.trust-why-card p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Ensure no horizontal overflow at body level */
    body { overflow-x: hidden; }

    nav { padding: 1rem 1.25rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(251, 247, 244, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 1.25rem;
        gap: 0;
        border-bottom: 1px solid rgba(92, 61, 46, 0.06);
    }

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

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(212, 185, 156, 0.1);
    }

    .nav-links li:last-child { border-bottom: none; padding-top: 1rem; }

    .nav-cta {
        display: block;
        text-align: center;
    }

    .mobile-menu-btn { display: block; }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 7rem 1.5rem 3rem;
        gap: 2.5rem;
    }

    .hero-accent { width: 80vw; right: -30%; top: -10%; }

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

    .service-card.highlight {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-form-card {
        padding: 1.75rem;
    }

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

    .credential-bar { flex-direction: column; gap: 0.75rem; }

    /* Subpage responsive */
    .page-hero { padding: 7rem 1.5rem 3.5rem; }

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

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

    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }

    .stat-row { grid-template-columns: 1fr; gap: 1rem; }

    .about-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    /* Trust section mobile */
    .trust-credentials {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 1.5rem;
    }

    .trust-credential-divider { display: none; }

    .trust-credential {
        padding: 0.25rem 0;
        justify-content: center;
    }

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .trust-stat { padding: 0; }
    .trust-stat-divider { display: none; }

    .trust-why { padding: 3.5rem 1.5rem; }
    .trust-why-heading { margin-bottom: 2rem; }

    .trust-why-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ===== BLOG LISTING PAGE ===== */
.blog-hero {
    padding: 8rem 2rem 5rem;
    text-align: center;
    background: var(--ivory);
}

.blog-hero .section-label { margin-bottom: 1rem; }

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.blog-hero p {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.8;
}

.blog-grid-section {
    padding: 4rem 2rem 6rem;
    background: var(--cream);
}

.blog-grid {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(212, 185, 156, 0.15);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(62, 37, 24, 0.09);
}

.blog-card-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--beige-warm);
    margin-bottom: 1rem;
}

.blog-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.35;
    margin-bottom: 0.85rem;
}

.blog-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.5rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 300;
    border-top: 1px solid rgba(212, 185, 156, 0.15);
    padding-top: 1.25rem;
    margin-top: auto;
}

.blog-card-meta span { display: flex; align-items: center; gap: 0.35rem; }

.blog-card-cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brown);
    margin-left: auto;
    letter-spacing: 0.04em;
}

/* ===== BLOG ARTICLE PAGE ===== */
.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(212, 185, 156, 0.2);
}

.blog-article-meta span {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-article-meta .meta-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blush);
    display: inline-block;
}

.blog-blockquote {
    border-left: 3px solid var(--blush);
    background: var(--cream);
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--brown-soft);
}

.blog-highlight {
    background: rgba(232, 196, 192, 0.15);
    border: 1px solid rgba(232, 196, 192, 0.4);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin: 2rem 0;
}

.blog-highlight h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.85rem;
}

.blog-highlight ul { margin: 0; }

.article-cta-box {
    background: linear-gradient(135deg, var(--brown), var(--brown-deep));
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    text-align: center;
    color: var(--cream);
}

.article-cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

.article-cta-box p {
    font-size: 0.92rem;
    color: rgba(245, 237, 230, 0.75);
    font-weight: 300;
    margin-bottom: 1.5rem !important;
    line-height: 1.7 !important;
}

.article-cta-box a {
    display: inline-block;
    background: var(--blush);
    color: var(--brown-deep);
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s;
}

.article-cta-box a:hover { background: var(--blush-light); }

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.blog-related-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(212, 185, 156, 0.15);
    text-decoration: none;
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(62, 37, 24, 0.07);
}

.blog-related-card .blog-card-tag { margin-bottom: 0.6rem; }

.blog-related-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.blog-related-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.blog-related-card .read-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brown);
}

/* ===== PRICING TIERS PAGE ===== */
.pricing-tiers-section {
    padding: 5rem 2rem 6rem;
    background: var(--cream);
}

.pricing-tiers-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: stretch;
}

.pricing-tier-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(212, 185, 156, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(62, 37, 24, 0.08);
}

.pricing-tier-card.featured {
    background: linear-gradient(170deg, var(--brown) 0%, var(--brown-deep) 100%);
    border: none;
    padding: 3rem 2rem;
    box-shadow: 0 8px 40px rgba(62, 37, 24, 0.15);
}

.pricing-tier-card.featured:hover {
    box-shadow: 0 16px 50px rgba(62, 37, 24, 0.22);
}

.tier-badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--beige-warm);
    margin-bottom: 1rem;
}

.pricing-tier-card.featured .tier-badge {
    color: var(--blush);
}

.pricing-tier-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--brown-deep);
    margin-bottom: 0.75rem;
}

.pricing-tier-card.featured h2 {
    color: var(--cream);
}

.tier-price {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.25rem;
}

.pricing-tier-card.featured .tier-price {
    color: var(--cream);
}

.tier-duration {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.pricing-tier-card.featured .tier-duration {
    color: rgba(245, 237, 230, 0.6);
}

.tier-description {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 1.75rem;
}

.pricing-tier-card.featured .tier-description {
    color: rgba(245, 237, 230, 0.7);
}

.tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
    flex: 1;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--brown);
    font-weight: 400;
    line-height: 1.5;
}

.pricing-tier-card.featured .tier-features li {
    color: rgba(245, 237, 230, 0.85);
}

.tier-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blush);
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.tier-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: var(--brown);
    color: var(--cream);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    margin-top: auto;
}

.tier-cta:hover {
    background: var(--brown-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(92, 61, 46, 0.15);
}

.pricing-tier-card.featured .tier-cta {
    background: var(--blush);
    color: var(--brown-deep);
}

.pricing-tier-card.featured .tier-cta:hover {
    background: var(--blush-light);
}

.tier-cta-outline {
    background: transparent;
    border: 2px solid var(--brown);
    color: var(--brown);
}

.tier-cta-outline:hover {
    background: var(--brown);
    color: var(--cream);
}

/* Comparison table check/dash cells */
.pricing-compare .check-cell {
    color: var(--brown);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.pricing-compare .dash-cell {
    color: var(--text-light);
    opacity: 0.35;
    text-align: center;
    font-size: 1rem;
}

.pricing-compare th:not(:first-child),
.pricing-compare td:not(:first-child) {
    text-align: center;
    min-width: 120px;
}

.pricing-compare td:first-child {
    font-weight: 400;
    color: var(--brown);
}

/* Pricing tiers mobile */
@media (max-width: 900px) {
    .pricing-tiers-inner {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .pricing-tier-card.featured {
        order: -1;
    }
}

/* Pros/Cons list */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.pros-box, .cons-box {
    border-radius: 10px;
    padding: 1.5rem;
}

.pros-box {
    background: rgba(212, 185, 156, 0.08);
    border: 1px solid rgba(212, 185, 156, 0.2);
}

.cons-box {
    background: rgba(232, 196, 192, 0.08);
    border: 1px solid rgba(232, 196, 192, 0.2);
}

.pros-box h4, .cons-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
    color: var(--brown);
}

/* Question framework cards */
.question-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.question-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(212, 185, 156, 0.15);
    padding: 1.5rem;
    border-left: 3px solid var(--blush);
}

.question-card .q-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--beige-warm);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    display: block;
}

.question-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.6rem;
}

.question-card p {
    font-size: 0.88rem !important;
    color: var(--text-light) !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
}

/* Country table */
.country-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid rgba(212, 185, 156, 0.2);
}

.country-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    background: var(--white);
}

.country-table th {
    background: var(--blush-light);
    color: var(--brown);
    font-family: 'Playfair Display', serif;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.85rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid rgba(212, 185, 156, 0.2);
}

.country-table td {
    padding: 0.8rem 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    border-bottom: 1px solid rgba(212, 185, 156, 0.08);
    line-height: 1.5;
}

.country-table tr:last-child td { border-bottom: none; }

.status-favorable { color: #5a7a3a; font-weight: 500; }
.status-caution { color: #8a6020; font-weight: 500; }
.status-unfavorable { color: #8a3020; font-weight: 500; }

/* Blog responsive */
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
    .pros-cons-grid { grid-template-columns: 1fr; }
    .blog-related-grid { grid-template-columns: 1fr; }
    .blog-hero { padding: 7rem 1.5rem 3.5rem; }
    .blog-grid-section { padding: 3rem 1.5rem 4rem; }
    .article-cta-box { padding: 2rem 1.5rem; border-radius: 12px; }
    .article-inner { padding: 0 0.5rem; }
}

/* =========================================
   MOBILE-FIRST FIXES — 375px (iPhone SE)
   ========================================= */
@media (max-width: 480px) {
    /* --- Touch targets: all interactive elements >= 44px --- */
    .mobile-menu-btn { min-width: 44px; min-height: 44px; padding: 8px; }
    .mobile-menu-btn span { width: 22px; height: 2px; margin: 5px 0; }
    .nav-links li a { min-height: 44px; display: flex; align-items: center; }

    /* --- Trust credentials: prevent overflow at small widths --- */
    .trust-credentials { gap: 0; padding: 1.25rem 0.75rem; }
    .trust-credential { padding: 0.4rem 1rem; }
    .trust-credential span:last-child { font-size: 0.82rem; }
    .trust-stat { padding: 0 1.5rem; min-width: unset; flex: 1; }

    /* --- Trust section spacing --- */
    .trust-stats { gap: 1.5rem; }
    .trust-stat-number { font-size: 2rem; }
    .trust-stat-divider { height: 36px; }

    /* --- Trust why cards --- */
    .trust-why { padding: 2.5rem 1.25rem; }
    .trust-why-grid { gap: 1rem; }
    .trust-why-card { padding: 1.75rem 1.25rem; }

    /* --- Trust section overall --- */
    .trust-section { overflow-x: hidden; }

    /* --- Nav mobile menu opens below nav bar --- */
    .nav-links { width: 100%; }

    /* --- Hero section --- */
    .hero-label { font-size: 0.68rem; }
    .hero-description { font-size: 1rem; line-height: 1.8; }
    .hero-cta { padding: 1rem 2rem; font-size: 0.9rem; }
    .hero-visual { gap: 1rem; }
    .hero-card { padding: 1.5rem; }
    .hero-card h3 { font-size: 1.1rem; }
    .hero-card p { font-size: 0.88rem; }

    /* --- Tagline strip --- */
    .tagline-strip { padding: 2.5rem 1.25rem; }
    .tagline-strip p { font-size: 1.1rem; }

    /* --- Services grid --- */
    .services { padding: 5rem 1.25rem; }
    .services-grid { gap: 1.25rem; }
    .service-card { padding: 2rem 1.5rem; }
    .service-card.highlight { gap: 1.5rem; padding: 2rem 1.5rem; }
    .service-number { font-size: 2rem; }
    .service-card h3 { font-size: 1.15rem; }
    .service-card p { font-size: 0.88rem; }

    /* --- About section --- */
    .about { padding: 5rem 1.25rem; }
    .about h2 { font-size: 1.6rem; }
    .about-text { font-size: 1rem; line-height: 1.9; }

    /* --- Difference section --- */
    .difference { padding: 5rem 1.25rem; }
    .diff-grid { gap: 1.5rem; }
    .diff-item p { font-size: 0.88rem; }

    /* --- Booking section --- */
    .booking { padding: 5rem 1.25rem; }
    .booking-description { font-size: 1rem; }
    .booking-features li { font-size: 0.88rem; }
    .booking-form-card { padding: 1.5rem; border-radius: 16px; }
    .form-group { margin-bottom: 1rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; /* Prevent iOS auto-zoom on focus */ padding: 0.9rem 1rem; }
    .booking-submit { padding: 1rem; min-height: 50px; font-size: 0.95rem; }

    /* --- Credential bar --- */
    .credential-bar { gap: 0.75rem; }
    .credential { padding: 0.75rem 1.25rem; }
    .credential span { font-size: 0.78rem; }

    /* --- Page hero (subpages) --- */
    .page-hero { padding: 7rem 1.25rem 3rem; }
    .page-hero-description { font-size: 1rem; line-height: 1.8; }
    .breadcrumb { font-size: 0.78rem; }

    /* --- Detail sections --- */
    .detail-section { padding: 4.5rem 1.25rem; }
    .detail-section h2 { font-size: 1.5rem; }
    .detail-section .lead { font-size: 1rem; }

    /* --- Feature grid --- */
    .feature-item { padding: 1.5rem; }

    /* --- Process steps --- */
    .process-step { padding: 1.5rem; }
    .process-step::before { font-size: 2rem; }

    /* --- Stat row --- */
    .stat-row { gap: 0.75rem; }
    .stat-card { padding: 1.5rem; }
    .stat-card .stat-number { font-size: 1.75rem; }

    /* --- Two column layout --- */
    .two-col { gap: 2rem; }
    .two-col-text p { font-size: 0.97rem; }
    .check-list li { font-size: 0.9rem; }

    /* --- Compare table section --- */
    .compare-table { font-size: 0.85rem; }
    .compare-table th { padding: 0.85rem 1rem; font-size: 0.88rem; }
    .compare-table td { padding: 0.75rem 1rem; }
    .pricing-compare th:not(:first-child),
    .pricing-compare td:not(:first-child) { min-width: 100px; }

    /* --- FAQ --- */
    .faq-question { font-size: 1rem; padding: 1.25rem 0; }
    .faq-icon { width: 32px; height: 32px; }
    .faq-answer p { font-size: 0.92rem; line-height: 1.85; }

    /* --- Pricing tiers --- */
    .pricing-tiers-section { padding: 3.5rem 1.25rem 4.5rem; }
    .pricing-tier-card { padding: 2rem 1.5rem; }
    .pricing-tier-card.featured { padding: 2.5rem 1.5rem; }
    .tier-price { font-size: 1.75rem; }
    .tier-description { font-size: 0.88rem; }
    .tier-features li { font-size: 0.85rem; }
    .tier-cta { padding: 1rem 1.5rem; min-height: 48px; display: flex; align-items: center; justify-content: center; }

    /* --- About page --- */
    .about-hero-grid { gap: 2rem; }
    .about-credential-card { padding: 1.5rem 1.25rem; }

    /* --- Footer --- */
    .footer-inner { gap: 1.75rem; }
    .footer-brand p { max-width: none; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

    /* --- Article body text: prevent iOS zoom --- */
    .article-body p { font-size: 1rem; line-height: 1.9; }
    .article-body ul li { font-size: 0.97rem; }
    .article-body h3 { font-size: 1.2rem; }
    .article-intro { font-size: 1.05rem; line-height: 1.85; }
    .article-label-row { flex-direction: column; gap: 0.5rem; }

    /* --- Blog card --- */
    .blog-card { padding: 1.75rem 1.25rem; }
    .blog-card h2 { font-size: 1.15rem; }

    /* --- Blog article --- */
    .blog-article-meta { gap: 0.75rem; }
    .blog-article-meta span { font-size: 0.78rem; }
    .blog-highlight { padding: 1.5rem 1.25rem; }
    .blog-blockquote { padding: 1.25rem 1.5rem; font-size: 1rem; }
    .article-cta-box { padding: 2rem 1.25rem; }
    .article-cta-box h3 { font-size: 1.25rem; }
    .article-cta-box a { padding: 0.8rem 1.75rem; }

    /* --- Step items --- */
    .step-item { padding: 1.25rem 1.5rem; }
    .step-num { font-size: 1.5rem; min-width: 1.75rem; }
    .step-item h4 { font-size: 1rem; }

    /* --- Checklist items --- */
    .checklist-item { padding: 1.5rem 0; }
    .checklist-num { font-size: 1.5rem; }

    /* --- Question cards --- */
    .question-card { padding: 1.25rem; }
    .question-card h4 { font-size: 0.97rem; }

    /* --- Page CTA section --- */
    .page-cta-section { padding: 4rem 1.25rem; }
    .page-cta-section h2 { font-size: 1.4rem; }
    .page-cta-section p { font-size: 0.97rem; }
    .page-cta-btn { padding: 1rem 2rem; min-height: 48px; display: inline-flex; align-items: center; }

    /* --- Article CTA --- */
    .article-cta { padding: 2rem 1.75rem; }
    .article-cta h3 { font-size: 1.3rem; }
    .article-cta p { font-size: 0.97rem; }
    .article-cta-btn { padding: 0.9rem 1.75rem; }

    /* --- Closing section --- */
    .closing { padding: 5rem 1.25rem; }
    .closing h2 { font-size: 1.5rem; }
    .closing p { font-size: 1rem; }
    .closing-cta { padding: 1rem 2rem; min-height: 48px; display: inline-flex; align-items: center; }

    /* --- Cost table --- */
    .cost-table { font-size: 0.85rem; }
    .cost-table th { padding: 0.75rem 1rem; }
    .cost-table td { padding: 0.7rem 1rem; }

    /* --- Country table --- */
    .country-table { font-size: 0.85rem; }
    .country-table th { padding: 0.75rem 0.9rem; }
    .country-table td { padding: 0.7rem 0.9rem; }

    /* --- Resources nav --- */
    .resources-nav { padding: 0.75rem 1rem; }
    .resources-nav-inner { gap: 1.25rem; }
    .resources-nav a { font-size: 0.78rem; padding: 0.3rem 0; }

    /* --- Blog related --- */
    .blog-related-card { padding: 1.5rem 1.25rem; }
    .blog-related-card h3 { font-size: 1rem; }
}

/* =========================================
   LARGER MOBILE — 481px to 640px
   ========================================= */
@media (min-width: 481px) and (max-width: 640px) {
    /* Ensure form inputs don't cause zoom on iOS */
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; }
    .booking-submit { font-size: 0.95rem; }
}
