/* ═══════════════════════════════════════════════════
   GUERRERO SERVICES BOOKKEEPING — MAIN STYLES
   ═══════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    --primary-navy:  #010D1F;
    --gold:          #d4a574;
    --light-gold:    #f5e6d3;
    --white:         #ffffff;
    --black:         #000000;
    --dark-gray:     #333333;
    --light-gray:    #f9f9f9;
    --border-gray:   #e0e0e0;
    --navy-mid:      #0a1f3d;
    --gold-dark:     #b8864e;
    --gold-glow:     rgba(212, 165, 116, 0.25);
    --text-muted:    #666666;
    --text-light:    rgba(255,255,255,0.65);
    --section-pad:   100px;
    --shadow-sm:     0 2px 12px rgba(1,13,31,0.08);
    --shadow-md:     0 6px 24px rgba(1,13,31,0.12);
    --shadow-lg:     0 12px 48px rgba(1,13,31,0.18);
    --shadow-gold:   0 8px 24px rgba(212,165,116,0.35);
    --r-sm:  8px;
    --r-md:  12px;
    --r-lg:  20px;
    --ease:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-gray);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: var(--section-pad) 0; }
.gold-text { color: var(--gold); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--primary-navy); line-height: 1.2; margin: 12px 0 18px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: var(--text-light); }

/* ─── BADGES ─── */
.badge { display: inline-block; background: var(--light-gold); color: var(--gold-dark); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(212,165,116,0.35); }
.badge-light { background: rgba(212,165,116,0.15); color: var(--gold); border-color: rgba(212,165,116,0.25); }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 28px; border-radius: var(--r-sm); font-size: 0.95rem; font-weight: 600; border: 2px solid transparent; cursor: pointer; transition: var(--ease); white-space: nowrap; letter-spacing: 0.2px; }
.btn-gold { background: var(--gold); color: var(--primary-navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--primary-navy); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ─── TOP BAR ─── */
.top-bar { background: var(--primary-navy); padding: 9px 0; border-bottom: 1px solid rgba(212,165,116,0.18); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.65); font-size: 0.8rem; font-weight: 400; transition: color 0.2s; }
.top-bar-item:hover { color: var(--gold); }
.top-bar-item svg { flex-shrink: 0; color: var(--gold); }
.top-social { display: flex; gap: 10px; }
.top-social-link { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.top-social-link:hover { color: var(--gold); }

/* ─── NAVBAR ─── */
.navbar { background: var(--primary-navy); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.06); transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 86px; gap: 24px; }
.nav-logo img { height: 70px; width: auto; filter: brightness(1.05); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { color: rgba(255,255,255,0.75); font-size: 0.875rem; font-weight: 500; padding: 8px 13px; border-radius: 6px; transition: var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(255,255,255,0.05); }
.nav-cta-btn { display: inline-flex; align-items: center; background: var(--gold); color: var(--primary-navy) !important; font-size: 0.875rem; font-weight: 700; padding: 10px 20px; border-radius: var(--r-sm); margin-left: 8px; transition: var(--ease); white-space: nowrap; }
.nav-cta-btn:hover { background: var(--gold-dark); color: var(--primary-navy) !important; transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; flex-shrink: 0; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu { display: none; flex-direction: column; background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.08); overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.mobile-menu.open { display: flex; max-height: 400px; }
.mobile-link { display: block; color: rgba(255,255,255,0.75); font-size: 1rem; font-weight: 500; padding: 15px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s, background 0.2s; }
.mobile-link:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.mobile-cta { color: var(--gold) !important; font-weight: 700; padding: 18px 28px !important; border-bottom: none !important; }

/* ─── HERO ─── */
.hero { background: var(--primary-navy); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 0; }
.hero-overlay { position: absolute; inset: -100px; background: radial-gradient(ellipse 70% 80% at 80% 40%, rgba(212,165,116,0.07) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 10% 70%, rgba(10,31,61,0.5) 0%, transparent 50%); pointer-events: none; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(212,165,116,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(212,165,116,0.035) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 60px 0 90px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,165,116,0.12); border: 1px solid rgba(212,165,116,0.3); color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 7px 16px; border-radius: 20px; margin-bottom: 28px; }
.hero-text h1 { font-family: 'Roboto Condensed', 'Roboto', sans-serif; font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 900; color: var(--white); line-height: 1.12; margin-bottom: 28px; letter-spacing: -0.5px; }
.hero-sub { font-size: 1.1rem; color: var(--text-light); line-height: 1.75; max-width: 500px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-visual { display: flex; justify-content: flex-end; align-items: flex-end; }
.hero-photo-wrap { position: relative; width: 100%; max-width: 490px; }
.hero-photo { width: 100%; height: 600px; object-fit: cover; object-position: top center; border-radius: 18px 18px 0 0; display: block; filter: brightness(0.92) contrast(1.04); }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; z-index: 2; }
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* ─── WHY A BOOKKEEPER ─── */
.whybk { background: var(--light-gray); }
.whybk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.whybk-card { background: var(--white); border: 1px solid var(--border-gray); border-radius: var(--r-lg); padding: 36px 32px; box-shadow: var(--shadow-sm); transition: box-shadow 0.25s, transform 0.25s; }
.whybk-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.whybk-icon { width: 52px; height: 52px; background: var(--light-gold); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--gold-dark); margin-bottom: 22px; }
.whybk-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary-navy); margin-bottom: 12px; line-height: 1.3; }
.whybk-sub { margin-top: 0; font-style: normal; }
.whybk-sub em { font-style: italic; color: var(--gold-dark); }
.whybk-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.whybk-divider { border: none; border-top: 1px solid var(--border-gray); margin: 24px 0; }
.whybk-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.whybk-list li { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; padding-left: 20px; position: relative; }
.whybk-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ─── SERVICES ─── */
.services { background: var(--light-gray); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--r-md); padding: 36px 30px; border: 1px solid var(--border-gray); position: relative; overflow: hidden; transition: var(--ease); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 58px; height: 58px; background: var(--light-gold); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--gold-dark); margin-bottom: 22px; transition: background 0.3s; }
.svc-icon svg { width: 26px; height: 26px; }
.service-card:hover .svc-icon { background: var(--gold); color: var(--primary-navy); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary-navy); margin-bottom: 12px; line-height: 1.3; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.68; margin-bottom: 22px; }
.svc-link { font-size: 0.875rem; font-weight: 600; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s, color 0.2s; }
.svc-link:hover { color: var(--primary-navy); gap: 8px; }

/* ─── ABOUT ─── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 580px; object-fit: cover; object-position: top center; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.about-exp-badge { position: absolute; bottom: -18px; right: -18px; background: var(--gold); color: var(--primary-navy); padding: 22px 26px; border-radius: var(--r-md); text-align: center; box-shadow: var(--shadow-gold); }
.exp-num { display: block; font-family: 'Roboto Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.exp-txt { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.35; max-width: 76px; }
.about-content .badge { margin-bottom: 18px; }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--primary-navy); line-height: 1.22; margin-bottom: 22px; }
.about-lead { font-size: 1.06rem; font-weight: 500; color: var(--dark-gray); margin-bottom: 16px; line-height: 1.7; }
.about-content p { font-size: 0.925rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 30px; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 24px; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 500; color: var(--dark-gray); }
.check-dot { width: 22px; height: 22px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-dot::after { content: ''; width: 9px; height: 5px; border-left: 2px solid var(--primary-navy); border-bottom: 2px solid var(--primary-navy); transform: rotate(-45deg) translateY(-1px); display: block; }

/* ─── HOW IT WORKS ─── */
.process { background: var(--primary-navy); position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 40% 60% at 15% 50%, rgba(212,165,116,0.07) 0%, transparent 55%), radial-gradient(ellipse 40% 60% at 85% 50%, rgba(212,165,116,0.07) 0%, transparent 55%); pointer-events: none; }
.process .container { position: relative; z-index: 1; }
.process-steps { display: flex; align-items: center; gap: 16px; margin-bottom: 56px; }
.process-step { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(212,165,116,0.2); border-radius: var(--r-md); padding: 44px 32px; text-align: center; transition: var(--ease); position: relative; overflow: hidden; }
.process-step::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,165,116,0.05) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; }
.process-step:hover { border-color: rgba(212,165,116,0.45); background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.process-step:hover::before { opacity: 1; }
.step-num { font-family: 'Roboto Condensed', sans-serif; font-size: 3.5rem; font-weight: 900; color: rgba(212,165,116,0.2); line-height: 1; margin-bottom: 20px; display: block; }
.step-icon { width: 64px; height: 64px; background: rgba(212,165,116,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin: 0 auto 22px; transition: background 0.3s; }
.process-step:hover .step-icon { background: rgba(212,165,116,0.18); }
.process-step h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.3; }
.process-step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.process-arrow { flex-shrink: 0; width: 60px; opacity: 0.8; }
.process-arrow svg { width: 100%; }
.process-cta { text-align: center; }

/* ─── WHY CHOOSE US ─── */
.why-us { background: var(--light-gray); }
.why-full { width: 100%; }
.why-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.why-header .badge { margin-bottom: 18px; }
.why-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--primary-navy); margin-bottom: 16px; line-height: 1.2; }
.why-header > p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--border-gray); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-feat-grid { grid-template-columns: repeat(4, 1fr); gap: 3px; }
.stat-box { background: var(--primary-navy); padding: 44px 32px; text-align: center; transition: background 0.25s; }
.stat-box:hover { background: var(--navy-mid); }
.why-feat-box { padding: 36px 28px; text-align: left; display: flex; flex-direction: column; gap: 0; }
.why-feat-icon { width: 48px; height: 48px; background: rgba(212,165,116,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 20px; flex-shrink: 0; }
.why-feat-box h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.why-feat-box p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 0; }

/* ─── APPOINTMENT / CONTACT ─── */
.appointment { background: var(--primary-navy); position: relative; overflow: hidden; }
.appointment::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 0% 60%, rgba(212,165,116,0.07) 0%, transparent 45%), radial-gradient(ellipse 40% 50% at 100% 30%, rgba(10,31,61,0.4) 0%, transparent 50%); pointer-events: none; }
.appointment .container { position: relative; z-index: 1; }
.appt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.appt-info .badge { margin-bottom: 20px; }
.appt-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--white); line-height: 1.22; margin-bottom: 20px; }
.appt-info > p { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; margin-bottom: 36px; }
.appt-perks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.appt-perk { display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,0.82); font-size: 0.95rem; }
.perk-check { width: 26px; height: 26px; background: var(--gold); color: var(--primary-navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 900; flex-shrink: 0; }
.appt-contact { display: flex; flex-direction: column; gap: 16px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); }
.appt-contact-item { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.appt-contact-item:hover { color: var(--gold); }
.appt-contact-icon { width: 40px; height: 40px; background: rgba(212,165,116,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; transition: background 0.2s; }
.appt-contact-item:hover .appt-contact-icon { background: rgba(212,165,116,0.2); }
.contact-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.contact-val { display: block; font-size: 0.925rem; font-weight: 600; color: inherit; }
.form-card { background: var(--white); border-radius: var(--r-md); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.28); }
.form-card-header { background: var(--light-gray); padding: 18px 28px; border-bottom: 1px solid var(--border-gray); }
.form-card-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary-navy); margin-bottom: 4px; }
.form-card-header p { font-size: 0.825rem; color: var(--text-muted); line-height: 1.55; }
.wpforms-container { padding: 18px 28px 22px; }
.wpforms-container .wpforms-field { margin-bottom: 12px !important; }
.wpforms-container .wpforms-field-label { font-size: 0.785rem; font-weight: 600; color: var(--dark-gray); letter-spacing: 0.2px; margin-bottom: 5px; }
.wpforms-container input[type=text],
.wpforms-container input[type=email],
.wpforms-container input[type=tel],
.wpforms-container select,
.wpforms-container textarea { padding: 8px 12px; border: 1.5px solid var(--border-gray); border-radius: var(--r-sm); font-family: 'Roboto', sans-serif; font-size: 0.875rem; color: var(--dark-gray); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%; }
.wpforms-container textarea { max-height: 80px; resize: none; }
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,165,116,0.14); }
.wpforms-container .wpforms-submit { background: var(--gold); color: var(--primary-navy); border: none; padding: 14px 30px; border-radius: var(--r-sm); font-size: 0.925rem; font-weight: 700; cursor: pointer; width: 100%; transition: var(--ease); }
.wpforms-container .wpforms-submit:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ─── FAQ ─── */
.faq { background: var(--light-gray); }
.faq-list { max-width: 820px; margin: 0 auto 52px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border-radius: var(--r-sm); border: 1px solid var(--border-gray); overflow: hidden; transition: box-shadow 0.2s; }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: 'Roboto', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--primary-navy); text-align: left; transition: background 0.2s; }
.faq-q:hover { background: var(--light-gray); }
.faq-ico { font-size: 1.5rem; font-weight: 300; line-height: 1; color: var(--gold); flex-shrink: 0; width: 22px; text-align: center; transition: transform 0.3s ease; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.open .faq-a { max-height: 220px; }
.faq-a p { padding: 2px 24px 22px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.faq-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.faq-cta p { font-size: 1.05rem; color: var(--text-muted); }

/* ─── FOOTER ─── */
.footer { background: var(--primary-navy); }
.footer-body { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 52px; }
.footer-logo { width: 250px; height: auto; margin-bottom: 18px; }
.footer-brand > p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 300px; margin-bottom: 26px; }
.footer-socials { display: flex; gap: 10px; }
.fsoc { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: var(--ease); }
.fsoc:hover { background: var(--gold); color: var(--primary-navy); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.45); }
.footer-contact li svg { flex-shrink: 0; color: var(--gold); margin-top: 1px; }
.footer-contact li a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-contact li a:hover { color: var(--gold); }
.footer-btn { margin-top: 22px; }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ─── BACK TO TOP ─── */
.back-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--gold); color: var(--primary-navy); border: none; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(16px); transition: var(--ease); z-index: 50; }
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ─── ANIMATIONS ─── */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.in-view { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */

/* ── Large tablet / small desktop (≤ 1100px) ── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-checks  { grid-template-columns: 1fr; }
    .about-grid    { gap: 52px; }
    .appt-grid     { gap: 52px; }
}

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
    :root { --section-pad: 72px; }

    /* Nav */
    .hamburger  { display: flex; }
    .nav-links  { display: none; }
    .nav-inner  { height: 72px; }
    .nav-logo img { height: 58px; }

    /* Hero */
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 40px 0 64px; }
    .hero-sub  { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual  { justify-content: center; }
    .hero-photo-wrap { max-width: 420px; margin: 0 auto; }
    .hero-photo  { height: 420px; }

    /* Stacked two-col sections */
    .about-grid, .appt-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-exp-badge { right: 0; bottom: -14px; }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    /* Why Us feature boxes: 2×2 */
    .why-feat-grid { grid-template-columns: 1fr 1fr; }

    /* Why a Bookkeeper: keep 2×2 at tablet */
    .whybk-grid { grid-template-columns: repeat(2, 1fr); }

    /* Process steps: vertical */
    .process-steps { flex-direction: column; gap: 0; }
    .process-arrow { transform: rotate(90deg); width: 36px; margin: 2px auto; opacity: 0.5; }
    .process-step  { padding: 32px 28px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-logo  { width: 200px; }
}

/* ── Small tablet / large phone (≤ 680px) ── */
@media (max-width: 680px) {
    :root { --section-pad: 60px; }

    /* Top bar: hide hours + socials, keep phone + email */
    .top-bar-right { display: none; }

    /* Services: single column */
    .services-grid { grid-template-columns: 1fr; }

    /* Why a Bookkeeper: single column */
    .whybk-grid { grid-template-columns: 1fr; }

    /* Why Us feature boxes: single column */
    .why-feat-grid { grid-template-columns: 1fr; }
    .stat-box { padding: 32px 24px; }

    /* About image shorter */
    .about-img-wrap img { height: 420px; }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
    :root { --section-pad: 52px; }

    .container  { padding: 0 16px; }
    .nav-inner  { height: 64px; }
    .nav-logo img { height: 50px; }

    /* Hero */
    .hero-photo-wrap { max-width: 100%; }
    .hero-photo  { height: 300px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

    /* Typography scale-down */
    .section-header h2 { font-size: 1.65rem; }
    .about-content h2, .appt-info h2 { font-size: 1.65rem; }
    .hero-text h1 { font-size: clamp(2rem, 8vw, 2.4rem); }

    /* About */
    .about-img-wrap img { height: 320px; }
    .about-exp-badge { padding: 16px 18px; right: 0; }
    .exp-num { font-size: 1.7rem; }

    /* Process */
    .process-step { padding: 28px 20px; }
    .step-num { font-size: 2.6rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom .container { flex-direction: column; text-align: center; gap: 10px; }
    .footer-logo { width: 160px; }
    .footer-btn  { width: 100%; text-align: center; justify-content: center; }

    /* FAQ */
    .faq-q { font-size: 0.9rem; padding: 16px 18px; }

    /* Why Us */
    .why-feat-box { padding: 28px 22px; }
    .stat-box { padding: 28px 18px; }

    /* Buttons */
    .btn { padding: 13px 24px; }
}
