/* =========================================================
   Bayside Snake Catcher — design tokens
   Palette: deep bay teal + warm sand + coral CTA
   Type: Anton (poster headline) + Inter (body)
   Signature: wave divider under hero, evokes Moreton Bay
   ========================================================= */
:root {
    --ink: #12201F;
    --bay: #123A3E;
    --bay-deep: #0D2B2E;
    --sand: #F2EEE0;
    --sand-deep: #E4DCC2;
    --coral: #E85D4A;
    --coral-dark: #C94B3A;
    --gold: #D9A441;
    --white: #FFFDF8;

    --font-display: 'Anton', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --wrap: 1080px;
    --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--sand);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-weight: 400;
    margin: 0 0 0.4em;
    color: var(--ink);
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 760px; }

.eyebrow {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
}

/* ---------------- Top bar ---------------- */
.topbar { background: var(--bay-deep); color: var(--white); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 54px; }
.topbar__brand { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 16px; }
.topbar__phone {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    background: var(--coral);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 3px;
}

/* ---------------- Hero ---------------- */
.hero { position: relative; overflow: hidden; min-height: 80vh; display: flex; align-items: flex-end; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(18,32,31,0.30) 0%, rgba(13,43,46,0.65) 55%, rgba(13,43,46,0.95) 100%);
}
.hero__inner {
    position: relative;
    z-index: 1;
    padding: 40px 24px 70px;
    color: var(--white);
}
.badge {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 13px;
    background: var(--gold);
    color: var(--bay-deep);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(42px, 8.5vw, 84px);
    line-height: 0.98;
    color: var(--white);
    margin-bottom: 16px;
}
.hero__lede {
    font-size: clamp(16px, 2.3vw, 20px);
    max-width: 48ch;
    color: var(--sand-deep);
    margin: 0 0 30px;
    font-weight: 400;
}
.hero__wave { position: relative; z-index: 1; width: 100%; height: 40px; display: block; margin-top: -1px; }

/* ---------------- Call button ---------------- */
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    background: var(--coral);
    padding: 17px 30px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(232,93,74,0.35);
    transition: background .18s var(--ease), transform .18s var(--ease);
}
.btn-call:hover { background: var(--coral-dark); }
.btn-call:active { transform: scale(0.98); }
.btn-call__icon { font-size: 20px; transform: rotate(-10deg); }
.btn-call--large { font-size: 26px; padding: 20px 36px; }

/* ---------------- Trust bar ---------------- */
.trust { background: var(--sand); padding: 40px 0 10px; }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.trust__item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust__item b { font-family: var(--font-display); font-weight: 400; font-size: 26px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--bay); }
.trust__item span { font-size: 14px; color: var(--ink); opacity: 0.7; }

/* ---------------- Sections ---------------- */
.section { padding: 56px 0; }
.section--alt { background: var(--sand-deep); }
.lede-text { font-size: clamp(19px, 2.6vw, 24px); line-height: 1.55; text-align: center; color: var(--ink); font-weight: 500; }
.section h2 { font-size: clamp(28px, 4vw, 40px); margin-top: 6px; color: var(--bay); }
.areas__intro { max-width: 70ch; color: var(--ink); opacity: 0.85; font-size: 16px; margin-bottom: 28px; }

.areas__chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.areas__chips li {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    background: var(--white);
    border: 2px solid var(--bay);
    color: var(--bay);
    padding: 8px 16px;
    border-radius: 6px;
}

/* ---------------- Final CTA ---------------- */
.cta-final { text-align: center; background: var(--bay-deep); color: var(--white); }
.cta-final h2 { color: var(--white); }
.cta-final p { color: var(--sand-deep); font-size: 17px; margin: 0 0 28px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: var(--sand-deep); padding: 24px 0 90px; }
.site-footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 14px; }
.site-footer a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ---------------- Sticky mobile call bar ---------------- */
.mobile-call-bar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 200;
    background: var(--coral);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    padding: 16px 12px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 720px) {
    .trust__grid { grid-template-columns: 1fr; gap: 22px; }
    .mobile-call-bar { display: flex; }
    .site-footer { padding-bottom: 96px; }
    .btn-call--large { font-size: 21px; padding: 16px 24px; }
    .topbar__phone { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
}
