/* DESIGN TOKENS */
:root {
    --cream: #f9f4ee;
    --ink: #1a1410;
    --gold: #c4973b;
    --blush: #e8d5c4;
    --muted: rgba(249, 244, 238, 0.55);
    --ff-display: Lora, Georgia, "Times New Roman", Times, serif;
    --ff-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --ff-price: "Fira Code", "IBM Plex Mono", "Courier New", monospace;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET / BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--ff-body);
    overflow-x: hidden;
}

/* subtle grain */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
}

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

/* SCROLL REVEAL */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s var(--ease),
        transform 0.7s var(--ease);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* TYPOGRAPHY HELPERS */
.eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
}
.section-title strong {
    font-weight: 700;
}

/* BUTTONS */
.btn-ink {
    display: inline-block;
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 0.85rem 2.4rem;
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.25s var(--ease),
        transform 0.15s var(--ease),
        color 0.25s;
}
.btn-ink:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(249, 244, 238, 0.3);
    padding: 0.85rem 2.4rem;
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        border-color 0.25s,
        color 0.25s;
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 0.85rem 2.4rem;
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-gold:hover {
    opacity: 0.88;
}

/* NAVBAR */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(249, 244, 238, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196, 151, 59, 0.2);
    transition: padding 0.3s var(--ease);
}

.nav-brand {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.nav-brand span {
    color: var(--gold);
}

.nav-item-link {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.2s;
    padding: 0.4rem 0;
    display: block;
}
.nav-item-link:hover {
    color: var(--gold);
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    overflow: hidden;
    position: relative;
}

.hero__left {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem 6rem 8%;
    position: relative;
}
.hero__left::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 0;
    bottom: 0;
    width: 60px;
    background: var(--ink);
    /*clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);*/
    z-index: 2;
}

.hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--ff-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1;
    color: var(--cream);
    margin-bottom: 1.5rem;
}
.hero__title em {
    font-style: italic;
    color: var(--gold);
}

.hero__sub {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 400px;
    margin-bottom: 2.5rem;
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__right {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 8% 6rem 5rem;
}

.hero__badge {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35em 0.9em;
    /*border-radius: 999px;*/
    margin-bottom: 1.5rem;
}

.hero__right-title {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.hero__right-title span {
    color: var(--gold);
}

.hero__divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 1.75rem 0;
}

/* credential rows */
.cred-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cred-icon {
    width: 42px;
    height: 42px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.cred-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.15rem;
}

.cred-value {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--ink);
}

/* AUDIENCE STRIP */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--blush);
}

.audience-card {
    background: var(--cream);
    padding: 3rem 2.5rem;
    cursor: default;
    transition: background 0.3s var(--ease);
}
.audience-card:hover {
    background: var(--ink);
}

.ac-num {
    font-family: var(--ff-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}
.audience-card:hover .ac-num {
    color: var(--gold);
}

.ac-title {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--ink);
    transition: color 0.3s;
}
.audience-card:hover .ac-title {
    color: var(--cream);
}

.ac-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    transition: color 0.3s;
}
.audience-card:hover .ac-desc {
    color: var(--muted);
}

/* OFFER SECTION */
.offer-section {
    padding: 7rem 8%;
    background: #fff;
}

.offer-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.body-text {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.benefit-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.93rem;
    line-height: 1.65;
}

.offer-list {
    display: flex;
    flex-direction: column;
}

.offer-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(196, 151, 59, 0.15);
    align-items: flex-start;
}
.offer-item:last-child {
    border-bottom: none;
}

.offer-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-text {
    font-size: 0.93rem;
    line-height: 1.65;
    color: #333;
}
.offer-text strong {
    color: var(--ink);
}

/* ABOUT */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.about__image {
    position: relative;
    overflow: hidden;
    background: var(--ink);
}
.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(196, 151, 59, 0.3),
        rgba(26, 20, 16, 0.5)
    );
}
.about__caption {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 2;
}
.about__caption-name {
    font-family: var(--ff-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
}
.about__caption-name strong {
    font-weight: 700;
}
.about__caption-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-top: 1rem;
}

.about__content {
    background: var(--cream);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-block {
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}
.quote-block p {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.quote-line {
    width: 32px;
    height: 1px;
    background: rgba(196, 151, 59, 0.4);
    margin-bottom: 0.5rem;
}
.quote-block cite {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

/* PRICING */
.pricing-section {
    background: var(--ink);
    padding: 5rem 8%;
}

.price-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.price-toggle {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    overflow: hidden;
}

.price-toggle-btn {
    background: transparent;
    border: none;
    color: var(--muted);
    font-family: var(--ff-body);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.65rem 1.6rem;
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.price-toggle-btn:not(.active):hover {
    color: var(--cream);
}
.price-toggle-btn.active {
    background: var(--gold);
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.price-card {
    background: #231d17;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}
.price-card.featured {
    background: var(--gold);
}
.price-card.price-card-full {
    grid-column: 1 / -1;
}

.price-corner {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(196, 151, 59, 0.1);
}

.price-group {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    padding: 0.5rem 0;
    margin-top: 2.5rem;
}
.price-group:first-child {
    margin-top: 0;
}
.price-group::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.price-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}
.price-card.featured .price-label {
    color: rgba(255, 255, 255, 0.7);
}

.price-amount {
    font-family: var(--ff-price);
    font-size: 1rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.price-amount span {
    font-size: 2rem;
}
.price-amount .price-value {
    font-size: 2rem;
}

.price-amount .price-currency {
    font-size: 1rem;
}

.price-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
}
.price-card.featured .price-desc {
    color: rgba(255, 255, 255, 0.85);
}

.price-original {
    text-decoration: line-through;
    opacity: 0.4;
    font-size: 2rem;
    margin-right: 0.25rem;
}
.price-card.featured .price-original {
    color: rgba(255, 255, 255, 0.5);
}

.price-promo-tag {
    display: inline-block;
    /*display: none;*/
    background: var(--gold);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5em 0.7em;
    border-radius: 2px;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.price-card.featured .price-promo-tag {
    background: rgba(255, 255, 255, 0.2);
}

.price-promo-note {
    /*display: none;*/
    font-size: 0.78rem;
    color: #dcb55b;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.price-card.featured .price-promo-note {
    /*display: none;*/
    color: #fff;
}

/* HERO PROMO BADGE */
.hero__promo {
    /*display: none;*/
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 5;
}

.hero__promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    margin: 0.25rem;
    color: #fff;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    font-family: var(--ff-display);
    font-size: 6rem;
    /*rotate: 25deg;*/
    font-weight: 700;
    /*line-height: 1.2;*/
    text-align: center;
    text-shadow: 0 2px 5px #000;
    box-shadow: 0 0 30px #231d17;
    /*padding: 0.5rem;*/
    /*animation: promo-anim 2.5s alternate infinite;*/
}

.hero__promo-icon span {
    font-size: 2rem;
}

.hero__promo-icon a {
    transform: translateY(-0.25rem);
    animation: promo-anim-shake 3s infinite;
}

@keyframes promo-anim {
    0% { rotate: -45deg }
    100% { rotate: 45deg }
}

@keyframes promo-anim-shake {
    0%, 88% {
        transform: translateY(-0.25rem) rotate(0deg);
    }
    89% { transform: translateY(-0.25rem) translate(2px, -3px) rotate(2deg); }
    90% { transform: translateY(-0.25rem) translate(-3px, 2px) rotate(-2deg); }
    91% { transform: translateY(-0.25rem) translate(-4px, -1px) rotate(1deg); }
    92% { transform: translateY(-0.25rem) translate(4px, 3px) rotate(-1deg); }
    93% { transform: translateY(-0.25rem) translate(-3px, 4px) rotate(2deg); }
    94% { transform: translateY(-0.25rem) translate(3px, -4px) rotate(-2deg); }
    95% { transform: translateY(-0.25rem) translate(-4px, -2px) rotate(1deg); }
    96% { transform: translateY(-0.25rem) translate(4px, 1px) rotate(-1deg); }
    97% { transform: translateY(-0.25rem) translate(-2px, 3px) rotate(2deg); }
    98% { transform: translateY(-0.25rem) translate(3px, -2px) rotate(-2deg); }
    99% { transform: translateY(-0.25rem) translate(-2px, 1px) rotate(0deg); }
    100% {
        transform: translateY(-0.25rem) rotate(0deg);
    }
}


/* QUOTES STRIP */
.quotes-strip {
    background: var(--gold);
    padding: 5rem 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.qs-quote {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    color: #fff;
    line-height: 1.55;
    margin-bottom: 1rem;
}
.qs-line {
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
}
.qs-author {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* CONTACT */
.contact-section {
    padding: 7rem 8%;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.ci-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(196, 151, 59, 0.15);
}
.ci-row:last-of-type {
    border-bottom: none;
}

.ci-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.ci-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.ci-value {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--ink);
}
.ci-value a:hover {
    color: var(--gold);
}

.contact-note {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.65;
    margin-top: 2rem;
}

/* ── form ── */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

.fg {
    margin-bottom: 2rem;
}

.fg label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 20, 16, 0.2);
    border-radius: 0;
    padding: 0.7rem 0;
    font-family: var(--ff-body);
    font-size: 0.93rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.25s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-bottom-color: var(--gold);
}
.fg input::placeholder,
.fg textarea::placeholder {
    color: #bbb;
}

.fg select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    padding-right: 2rem;
    cursor: pointer;
}

.fg textarea {
    resize: none;
    min-height: 100px;
}

.form-msg {
    display: none;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    border-left: 3px solid var(--gold);
    background: rgba(196, 151, 59, 0.08);
    color: var(--ink);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.form-note {
    font-size: 0.74rem;
    color: #aaa;
    margin-top: 1rem;
    line-height: 1.5;
}

/* FOOTER */
.site-footer {
    background: var(--ink);
    padding: 4rem 8% 2.5rem;
    color: rgba(249, 244, 238, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(249, 244, 238, 0.08);
    margin-bottom: 2rem;
}

.footer-brand {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
}

.footer-col-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 340px;
}

.footer-heading {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-link {
    display: block;
    font-size: 0.88rem;
    padding: 0.3rem 0;
    transition: color 0.2s;
    color: rgba(249, 244, 238, 0.5);
}
.footer-link:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.78rem;
    text-align: center;
}

/* FLOATING CALL BUTTON */
.fab-wrap {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.fab-tip {
    background: var(--ink);
    color: var(--cream);
    font-size: 0.78rem;
    padding: 0.45rem 1rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition:
        opacity 0.25s,
        transform 0.25s;
    pointer-events: none;
}
.fab-wrap:hover .fab-tip {
    opacity: 1;
    transform: translateX(0);
}

.fab-btn {
    width: 62px;
    height: 62px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(196, 151, 59, 0.45);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    animation: fab-pulse 2.5s infinite;
}
.fab-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(196, 151, 59, 0.6);
}

@keyframes fab-pulse {
    0%,
    100% {
        box-shadow:
            0 8px 32px rgba(196, 151, 59, 0.45),
            0 0 0 0 rgba(196, 151, 59, 0.4);
    }
    50% {
        box-shadow:
            0 8px 32px rgba(196, 151, 59, 0.45),
            0 0 0 14px rgba(196, 151, 59, 0);
    }
}

/* PHONE MODAL */
.phone-modal .modal-content {
    background: var(--ink);
    border: none;
    border-radius: 0;
}
.phone-modal .modal-body {
    padding: 3rem;
    text-align: center;
}
.phone-modal .modal-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.phone-modal .modal-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.phone-modal .phone-number {
    font-family: var(--ff-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--cream);
    display: block;
    margin-bottom: 2rem;
}
.phone-modal .btn-close-modal {
    width: 100%;
    padding: 0.85rem;
    background: rgba(249, 244, 238, 0.08);
    border: 1px solid rgba(249, 244, 238, 0.15);
    color: var(--cream);
    font-family: var(--ff-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}
.phone-modal .btn-close-modal:hover {
    background: rgba(249, 244, 238, 0.16);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .hero__left::after {
        display: none;
    }
    .hero__left {
        padding: 5rem 6%;
    }
    .hero__right {
        padding: 4rem 6%;
    }
    .hero__promo {
        top: 1rem;
        right: 1rem;
    }
    .hero__promo-icon {
        width: 74px;
        height: 74px;
        font-size: 3.25rem;
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .offer-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-section {
        grid-template-columns: 1fr;
    }
    .about__image {
        min-height: 340px;
    }
    .about__content {
        padding: 4rem 6%;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .quotes-strip {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .fab-wrap {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .offer-section,
    .contact-section {
        padding: 5rem 5%;
    }
    .quotes-strip,
    .pricing-section {
        padding: 4rem 5%;
    }
}

/* COOKIE CONSENT BANNER */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--cream);
    border-top: 2px solid var(--gold);
    padding: 1.25rem 8%;
    display: none;
    box-shadow: 0 -8px 32px rgba(26, 20, 16, 0.1);
}
.cookie-bar.show {
    display: block;
}

.cookie-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-bar__text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--ink);
}
.cookie-bar__text a {
    color: var(--gold);
    text-decoration: underline;
}
.cookie-bar__text a:hover {
    opacity: 0.8;
}

.cookie-bar__btn {
    flex-shrink: 0;
    padding: 0.7rem 2.2rem;
    background: var(--ink);
    color: var(--cream);
    border: none;
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s var(--ease);
}
.cookie-bar__btn:hover {
    background: var(--gold);
}

@media (max-width: 768px) {
    .cookie-bar__inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-bar {
        padding: 1rem 5%;
    }
}
