:root {
    --bg-900: #0d0a06;
    --bg-800: #14100a;
    --bg-750: #171208;
    --bg-700: #1a140c;
    --bg-card: #16110a;
    --bg-card-light: #1A140C66;
    --bg-input: #100c07;
    --bg-arrows: #DFA93F1F;

    --gold-dark: #DFA93F4D;
    --gold-600: #c8912e;
    --gold-500: #dfa93f;
    --gold-400: #e8b95c;
    --gold-300: #f3cf87;

    --cream-100: #f6efe2;
    --cream-300: #d9cdbb;
    --muted: #b3a58f;
    --board: #B3A58FA6;
    --error: #D9534F;

    --border-gold: rgba(223, 169, 63, 0.55);
    --border-gold-soft: rgba(223, 169, 63, 0.32);
    --border-line: rgba(255, 255, 255, 0.28);

    --grad-gold: linear-gradient(90deg, #b88d35 0%, #d7b154 20%, #e8c867 50%, #dfbd5f 75%, #c79d43 100%);
    --grad-panel: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.25));
    --grad-vline: linear-gradient(180deg, transparent, var(--border-line), transparent);
    --grad-hline: linear-gradient(90deg, transparent, var(--border-line), transparent);

    --font-display: "Oswald", "Arial Narrow", sans-serif;
    --font-body: "Poppins", "Segoe UI", sans-serif;
    --font-script: "Caveat", cursive;

    --shadow-gold: 0 6px 30px rgba(223, 169, 63, 0.35);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.45);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: 0.25s ease;

    --container: 1240px;
    --nav-h: 110px;
}

/* Global */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    margin: 0;
    background: var(--bg-900);
    color: var(--cream-100);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--gold-400);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-300);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0;
    letter-spacing: 0.02em;
}

p {
    margin: 0;
}

.container {
    width: min(var(--container), 100% - 48px);
    margin-inline: auto;
}

.gold {
    color: var(--gold-500);
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desc {
    display: inline;
}

.hl {
    color: var(--gold-300);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.95em 2.2em;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition),
        background-color var(--transition), color var(--transition);
}

.hr__rule {
    width: 64px;
    height: 3px;
    background: var(--grad-gold);
    border: none;
    border-radius: 2px;
    margin: 1.3rem 0 0;
}

.btn--gold {
    background: var(--grad-gold);
    color: #241a08;
    box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
    color: #241a08;
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(223, 169, 63, 0.5);
}

.btn--ghost {
    background: transparent;
    border-color: var(--border-gold);
    color: var(--gold-400);
}

.btn--ghost:hover {
    background: rgba(223, 169, 63, 0.1);
    color: var(--gold-300);
}

.btn svg {
    width: 1.1em;
    height: 1.1em;
}

.sec-head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 0.9rem;
}

.sec-title {
    font-size: clamp(1.4rem, 3.6vw, 2.8rem);
    font-weight: 700;
}

.sec-rule {
    width: 64px;
    height: 3px;
    background: var(--grad-gold);
    border: none;
    border-radius: 2px;
    margin: 1.4rem auto 0;
}

.sec-sub {
    max-width: 750px;
    margin: 1.3rem auto 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.section {
    padding: clamp(2rem, 8vw, 4.5rem) 0;
}

.cta__desc {
    display: flex;
    gap: 1.1rem;
}

.callback {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1.3rem;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.1rem 2rem;
    background: var(--grad-panel);
}

.callback svg {
    flex: none;
    width: 42px;
    height: 42px;
    color: var(--gold-500);
}

.callback__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.callback__title strong {
    display: block;
    color: var(--gold-500);
    font-size: 1.15rem;
}

.callback__sub {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Nav */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(13, 10, 6, 0.72);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.nav__inner {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav__logo img {
    height: 80px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.4vw, 2.2rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream-100);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--gold-500);
}

.mobile-icons {
    display: none;
}

.nav__toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-sm);
    color: var(--gold-400);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav__toggle svg {
    width: 22px;
    height: 22px;
}

.nav__burger>summary {
    list-style: none;
    -webkit-tap-highlight-color: transparent;
}

.nav__toggle .icon-close {
    display: none;
}

.nav__burger[open] .nav__toggle .icon-menu {
    display: none;
}

.nav__burger[open] .nav__toggle .icon-close {
    display: block;
}

.nav__mobile {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 35%;
    right: 0;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    padding: 0.4rem 24px 1.2rem;
    background: rgba(13, 10, 6, 0.96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(223, 169, 63, 0.15);
}

.nav__mobile .nav__link {
    padding: 0.8rem 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__burger[open] .nav__mobile {
    display: flex;
}

.hidden {
    display: none;
}

/* Hero */

.hero {
    position: relative;
    padding: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem)) 0 0;
    background:
        linear-gradient(90deg, rgba(13, 10, 6, 0.94) 0%, rgba(13, 10, 6, 0.75) 42%, rgba(13, 10, 6, 0.25) 100%),
        url("assets/hero.webp") right top / cover no-repeat;
}

.hero__eyebrow {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-500);
}

.hero__title {
    margin-top: 1.2rem;
    font-size: clamp(2.3rem, 5.6vw, 4rem);
    font-weight: 700;
    max-width: 650px;
}

.hero__swoosh {
    width: min(430px, 70%);
    height: 14px;
    margin-top: 1.2rem;
    color: var(--gold-500);
}

.hero__lead {
    margin-top: 2.2rem;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero__sub {
    margin-top: 0.7rem;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--cream-300);
    font-weight: 300;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    margin-top: clamp(2.2rem, 4vw, 3.5rem);
    max-width: 780px;
    min-height: 140px;
}

.hfeat {
    position: relative;
    flex: 1 1 160px;
    padding: 0.4rem 1.2rem;
    text-align: center;
}

.hfeat+.hfeat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: var(--grad-gold);
}

.hfeat svg {
    width: 34px;
    height: 34px;
    color: var(--gold-500);
    margin-inline: auto;
}

.hfeat__title {
    margin-top: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hfeat__sub {
    margin-top: 0.2rem;
    font-size: 0.78rem;
    color: var(--muted);
}

.hero__banner {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    background: rgba(13, 10, 6, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.4rem, 3.5vw, 3rem);
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 80%;
}

.hero__banner-main {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.hero__banner-main>svg {
    flex: none;
    width: 52px;
    height: 52px;
    color: var(--gold-500);
}

.hero__banner-main p {
    font-family: var(--font-display);
    font-size: clamp(.9rem, 1.9vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.4;
}

.hero__banner-side {
    display: grid;
    gap: 1.1rem;
}

.hbitem {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.hbitem svg {
    flex: none;
    width: 30px;
    height: 30px;
    color: var(--gold-500);
}

.hbitem__label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-300);
}

.hbitem__value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.proof {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(3px);
    border-top: 1px solid rgba(223, 169, 63, 0.15);
    border-bottom: 1px solid rgba(223, 169, 63, 0.15);
}

.proof__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.proof__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.proof__item+.proof__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 46px;
    background: var(--grad-gold);
}

.proof__icon {
    width: 30px;
    height: 30px;
    color: var(--gold-500);
}

.proof__num {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--cream-300);
    display: inline-flex;
    align-items: baseline;
    gap: 0.15em;
}

.proof__num .star {
    color: var(--gold-500);
    font-size: 0.7em;
}

.proof__label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.35;
}

.proof--mini {
    position: absolute;
    left: 8%;
    right: 24px;
    bottom: 0;
    background: rgba(20, 15, 8, 0.92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(223, 169, 63, 0.35);
}

.proof--mini .proof__grid {
    grid-template-columns: repeat(3, 1fr);
}

/* About */

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: .6rem;
    align-items: start;
}

.about .eyebrow,
.about .sec-title {
    text-align: left;
}

.about__text,
.animals__text {
    margin-top: 1.6rem;
    color: var(--cream-300);
    font-weight: 300;
}

.about__list {
    list-style: none;
    margin: 1.8rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.about__list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    font-size: 0.95rem;
}

.about__list svg {
    flex: none;
    width: 20px;
    height: 20px;
    color: var(--gold-500);
    margin-top: 0.2em;
}

.about__desc {
    padding: 3.5rem 1.1rem;
}

.about__cta {
    margin-top: .5rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.i-arrow-down {
    width: 40px;
    height: 76px;
    color: var(--gold-500);
}

.about__media {
    position: relative;
    margin-right: calc((100vw - min(var(--container), 100vw - 48px)) / -2);
    padding-bottom: 72px;
}

.photo-frame {
    position: relative;
    border-left: 6px solid var(--border-gold);
    border-right: none;
    border-radius: 260px 0 0 260px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 700px;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.badge-oc {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--bg-700);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-sm);
    padding: 0.55rem 1rem;
}

.badge-oc svg {
    width: 26px;
    height: 26px;
    color: var(--gold-500);
}

.badge-oc__title {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.badge-oc__sub {
    font-size: 0.72rem;
    color: var(--cream-300);
    letter-spacing: 0.04em;
}

/* Why */

.why {
    background: var(--bg-750);
}

.why .proof__item+.proof__item::before {
    height: 70%;
}

.why__item svg {
    width: 40px;
    height: 40px;
    color: var(--gold-500);
    margin-inline: auto;
}

.why__title {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.why__text {
    margin-top: 0.6rem;
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 300;
}

.free {
    background:
        radial-gradient(ellipse 70% 55% at 50% 0%, rgba(223, 169, 63, 0.08), transparent 70%),
        var(--bg-800);
}

.free__panel {
    border: 1px solid var(--gold-600);
    border-radius: var(--radius-lg);
    background: var(--grad-panel);
    padding: clamp(1.1rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.fitem {
    position: relative;
    display: flex;
    gap: 1.4rem;
    padding: clamp(1rem, 2.5vw, 1.8rem);
}

.fitem__icon {
    flex: none;
    width: 64px;
    height: 64px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 30%, rgba(223, 169, 63, 0.18), transparent 70%);
}

.fitem__icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold-500);
}

.fitem__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fitem__text {
    margin-top: 0.6rem;
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 300;
}

.fitem:nth-child(even)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: var(--grad-gold);
}

.fitem:nth-child(n + 3)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--grad-gold);
}

.free__cta {
    margin-top: 2.6rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.free__cta-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: var(--cream-300);
}

.free__cta-item svg {
    width: 34px;
    height: 34px;
    color: var(--gold-500);
}

/* Services */

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.scard {
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    padding: 1.8rem 1.7rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.scard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.scard__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 64px;
}

.scard__title {
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.scard__head svg {
    flex: none;
    width: 44px;
    height: 44px;
    color: var(--gold-500);
}

.scard__text {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 300;
}

.services__cta {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Pricing */

.pricing {
    position: relative;
    background: url("assets/tlo.webp") center/cover no-repeat;
    overflow: hidden;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    align-items: stretch;
}

.pcard {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    padding: 0 1.8rem 1.8rem;
}

.pcard__badge {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-align: center;
    color: var(--bg-card);
    background: var(--grad-gold);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 0.55rem;
    margin: 0 -1.8rem;
}

.pcard--featured {
    box-shadow: 0 0 50px rgba(223, 169, 63, 0.22);
}

.pcard__name {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 1.6rem 0 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pcard__price {
    padding: 1.6rem 0 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
}

.pcard__amount {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.pcard__unit {
    font-size: 0.85rem;
    color: var(--muted);
}

.pcard__features {
    list-style: none;
    margin: 0;
    padding: .7rem 0 1.8rem;
    display: grid;
    gap: 0.2rem;
    flex: 1;
}

.pcard__features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: var(--cream-300);
}

.pcard__features li::before {
    content: "";
    flex: none;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-500);
}

.pricing__note {
    margin-top: 2.4rem;
    border: 1px solid var(--border-gold-soft);
    border-left: 2px solid var(--gold-500);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    padding: 1.6rem 2rem;
    display: grid;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: var(--muted);
}

.pricing__note strong {
    color: var(--cream-100);
}

/* Reviews */

.reviews__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.stars {
    color: var(--gold-500);
    font-size: 1.25rem;
    letter-spacing: 0.25em;
}

.reviews__score {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-500);
}

.reviews__count {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.carousel {
    overflow: hidden;
    touch-action: pan-y;
}

.carousel__track {
    display: flex;
    transition: transform 0.45s ease;
}

.rcard {
    flex: 0 0 calc(100% / 3);
    padding: 0 0.8rem;
}

.rcard__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    padding: 1.7rem 1.3rem 1.5rem;
}

.rcard .stars {
    font-size: 0.95rem;
}

.rcard__text {
    margin-top: 1.1rem;
    font-size: 0.92rem;
    font-style: italic;
    font-weight: 300;
    color: var(--cream-300);
    flex: 1;
}

.rcard__author {
    margin-top: 1.4rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
    font-size: 0.95rem;
}

.carousel__nav {
    margin-top: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
}

.carousel__arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    background: transparent;
    color: var(--gold-500);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background-color var(--transition);
}

.carousel__arrow:hover {
    background: var(--bg-arrows);
}

.carousel__arrow svg {
    width: 18px;
    height: 18px;
}

.carousel__dots {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    max-width: 130px;
}

.carousel__dots-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.dot {
    flex: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--gold-dark);
    cursor: pointer;
    transition: background-color var(--transition), transform 0.3s ease;
}

.dot.is-active {
    background: var(--gold-500);
}

.dot.is-small {
    transform: scale(0.55);
}

/* FAQ */

.faq {
    background: var(--bg-800);
}

.faq__list {
    max-width: 1080px;
    margin-inline: auto;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    overflow: hidden;
}

.faq__item+.faq__item {
    border-top: 1px solid rgba(223, 169, 63, 0.25);
}

.faq__q {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.5rem clamp(1.2rem, 3vw, 2.2rem);
    cursor: pointer;
    list-style: none;
}

.faq__q::-webkit-details-marker {
    display: none;
}

.faq__num {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-500);
}

.faq__title {
    flex: 1;
    font-family: var(--font-display);
    font-size: clamp(0.8rem, 1.6vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq__icon {
    flex: none;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    position: relative;
    transition: transform var(--transition);
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--gold-500);
    transform: translate(-50%, -50%);
}

.faq__icon::before {
    width: 12px;
    height: 1.5px;
}

.faq__icon::after {
    width: 1.5px;
    height: 12px;
    transition: opacity var(--transition);
}

.faq__item[open] .faq__icon::after {
    opacity: 0;
}

.faq__a {
    padding: 0 clamp(1.2rem, 3vw, 2.2rem) 1.8rem calc(clamp(1.2rem, 3vw, 2.2rem) + 2.5rem);
    display: grid;
    gap: 1rem;
    font-size: 0.94rem;
    font-weight: 300;
    color: var(--cream-300);
}

.faq__footer {
    margin-top: 2.8rem;
    text-align: center;
    font-size: 1.05rem;
    color: var(--cream-300);
    font-weight: 300;
}

.faq__footer a {
    font-weight: 600;
}

/* Animals */

.animals {
    background: url("assets/fela.webp") right top/cover no-repeat;
}

.animals__frame {
    position: relative;
    border-right: 6px solid var(--border-gold);
    border-radius: 0 260px 260px 0;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    min-height: 600px;
    width: 50vw;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 1) 60%,
            rgba(0, 0, 0, .95) 80%,
            rgba(0, 0, 0, 0.9) 90%,
            rgba(0, 0, 0, 0.85) 100%);
}

.animals__content {
    max-width: 520px;
    padding: 3rem 1.2rem;
    margin: auto auto;
}

.animal__image {
    display: none;
}

.sec-title .heart {
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    color: var(--gold-500);
    vertical-align: -0.08em;
    margin-left: 0.25em;
}

.feats {
    display: flex;
    margin-top: 2rem;
}

.pfeat {
    position: relative;
    flex: 1;
    text-align: center;
    padding: 0.2rem 1rem;
}

.pfeat+.pfeat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background: var(--grad-vline);
}

.pfeat svg {
    width: 30px;
    height: 30px;
    color: var(--gold-500);
    margin-inline: auto;
}

.pfeat__title {
    margin-top: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pfeat__sub {
    font-family: var(--font-script);
    font-size: 1.15rem;
    color: var(--gold-400);
    line-height: 1.2;
}

/* Socials */

.social {
    background: linear-gradient(180deg, var(--bg-800), var(--bg-900));
    text-align: center;
}

.social__buttons {
    margin-top: 2.2rem;
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.social__buttons svg {
    height: 30px;
    width: 30px;
}

/*Contact */

.contact {
    position: relative;
    background: url("assets/tlo.webp") center/cover no-repeat;
    overflow: hidden;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
}

.contact__intro {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--cream-300);
}

.contact__items {
    margin-top: 2.4rem;
    display: grid;
    gap: 1.5rem;
}

.citem {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.citem__icon {
    flex: none;
    width: 52px;
    height: 52px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.citem__icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold-500);
}

.citem__label {
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
}

.citem__value {
    font-size: 0.98rem;
    color: var(--cream-100);
}

.citem__value a {
    color: var(--cream-100);
}

.citem__value a:hover {
    color: var(--gold-300);
}

.contact__socials {
    display: flex;
    gap: 1.6rem;
    padding: 2rem 0 .5rem 3.5rem;
}

.contact__socials svg {
    height: 40px;
    width: 40px;
    transition: all 1s ease;
    color: var(--gold-600);
}

.contact__socials svg:hover {
    transform: scale(1.05);
    color: var(--gold-300);
}

.form-card {
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    padding: clamp(1.2rem, 3.5vw, 2.6rem);
}

.form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

.field {
    display: grid;
    gap: 0.55rem;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 0.88rem;
    color: var(--cream-100);
}

.field input,
.field textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--cream-100);
    background: var(--bg-input);
    border: 1px solid rgba(223, 169, 63, 0.35);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    transition: border-color var(--transition);
    width: 100%;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--board);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold-500);
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.form__consent {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
}

.form__consent input {
    width: 16px;
    height: 16px;
    accent-color: var(--gold-500);
    cursor: pointer;
}

.captcha-wrapper {
    width: 228px;
    height: 58px;
    overflow: hidden;
}

.h-captcha {
    margin-bottom: -1.3rem;
    transform-origin: left top;
    transform: scale(0.75);
}

.form__submit {
    grid-column: 1 / -1;
    width: 100%;
}

/* Footer */

.footer {
    background: var(--bg-900);
    border-top: 1px solid rgba(223, 169, 63, 0.15);
    padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 3.5rem);
}

.footer__logo img {
    height: 88px;
    width: auto;
}

.footer__tagline {
    margin-top: 1.4rem;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted);
    max-width: 320px;
}

.footer__heading {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 1.3rem;
}

.footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.footer__links a {
    color: var(--cream-300);
    font-size: 0.92rem;
    font-weight: 300;
}

.footer__links a:hover {
    color: var(--gold-400);
}

.footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--cream-300);
}

.footer__contact svg {
    flex: none;
    width: 18px;
    height: 18px;
    color: var(--gold-500);
    transition: all 1s ease;
}

.footer__contact svg:hover {
    transform: scale(1.1);
    color: var(--gold-300);
}

.footer__contact a {
    color: var(--cream-300);
}

.footer__contact a:hover {
    color: var(--gold-400);
}

.footer__contact .footer__socials {
    padding-left: 3.5rem;
}

.form-error {
    color: var(--error);
    font-size: .8rem;
    margin-top: .3rem;
}

.result {
    color: var(--gold-500);
    font-weight: 500;
    font-size: 1.1rem;
    font-family: var(--font-display);
    text-align: center;
    padding-top: 10px;
}

.footer__bottom {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--muted);
}

.footer__credit a {
    font-weight: 600;
    font-style: italic;
}

@media (max-width: 1124px) {
    .hero__banner {
        grid-template-columns: 1.4fr 1fr;
    }

    .about__grid {
        grid-template-columns: 1fr 1.6fr;
    }

    .photo-frame img {
        object-position: 90%;
    }

    .proof--mini {
        bottom: -20px;
    }

    .proof__item {
        padding: .6rem;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .animals__frame {
        width: 65vw;
    }

    .animals__content {
        padding: 3.5rem;
        max-width: 460px;
        margin: 0;
    }
}

@media (max-width: 940px) {
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 860px) {
    :root {
        --nav-h: 90px;
    }

    .mobile-icons {
        display: flex;
        align-items: center;
        gap: 0.7rem;
    }

    .mobile-icons .nav__phone {
        padding: 0;
        width: 44px;
        height: 44px;
    }

    .mobile-icons .nav__phone svg {
        width: 20px;
        height: 20px;
    }

    .nav__links,
    .nav__phone-full {
        display: none;
    }

    .nav__toggle {
        display: inline-flex;
    }

    .nav__logo img {
        height: 70px;
    }

    .hero__banner {
        max-width: 100%;
    }

    .about__grid {
        grid-template-columns: 1fr 1.3fr;
    }

    .photo-frame {
        height: 600px;
    }

    .free__panel {
        grid-template-columns: 1fr;
    }

    .fitem:nth-child(even)::before {
        content: none;
    }

    .fitem:nth-child(n + 2)::after {
        content: "";
        position: absolute;
        top: 0;
        left: 8%;
        right: 8%;
        height: 1px;
        background: var(--grad-hline);
    }

    .rcard {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .hfeat {
        flex: 1 1 40%;
    }

    .hfeat::before {
        display: none;
    }

    .hero__banner {
        grid-template-columns: 1fr;
    }

    .hero__banner-side {
        grid-template-columns: 1fr 1fr;
    }

    .desc {
        display: none;
    }

    .proof__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .proof__item {
        padding: 0.7rem 0.5rem;
    }

    .proof__item+.proof__item::before {
        content: none;
    }

    .proof__item:nth-child(-n + 2)::after {
        content: "";
        position: absolute;
        left: 20%;
        right: 20%;
        bottom: 0;
        height: 1px;
        background: var(--grad-hline);
    }

    .proof__grid::before,
    .proof__grid::after {
        content: "";
        position: absolute;
        left: 50%;
        width: 1px;
        transform: translateX(-50%);
        background: var(--grad-vline);
    }

    .proof__grid::before {
        top: 10%;
        height: 32%;
    }

    .proof__grid::after {
        bottom: 10%;
        height: 32%;
    }

    .about {
        margin-bottom: 4rem;
    }


    .about__grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .about__media {
        margin-right: 0;
        padding-bottom: 56px;
    }

    .photo-frame {
        border-right: 1px solid var(--border-gold);
        border-radius: 10px;
        height: 600px;
    }

    .free__cta {
        flex-direction: column-reverse;
    }

    .free__cta-item {
        font-size: .8rem;
    }

    .proof--mini .proof__grid::after,
    .proof--mini .proof__grid::before {
        display: none;
    }

    .services__grid,
    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .rcard__inner {
        height: auto;
    }

    .animals {
        background: none;
    }

    .animals__content {
        padding: 3rem 1.1rem;
        max-width: 550px;
        text-align: center;
    }

    .animals__frame {
        position: relative;
        border-right: none;
        border-radius: 0;
        box-shadow: none;
        min-height: auto;
        width: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, .7) 60%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.2) 100%);
    }

    .animal__image {
        display: block;
        padding-top: 2rem;
    }

    .animal__image img {
        max-width: 100%;
        display: block;
        height: 100%;
        object-fit: cover;
        object-position: right;
        border: 1px solid var(--border-gold);
        border-radius: 10px;
        border-right: 3px solid var(--border-gold);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 540px) {
    .hero {
        background: linear-gradient(90deg, rgba(13, 10, 6, 0.94) 0%, rgba(13, 10, 6, 0.75) 42%, rgba(13, 10, 6, 0.65) 100%), url(assets/hero.webp) 70% 20% / cover no-repeat;
    }

    .hero__eyebrow,
    .eyebrow {
        font-size: .55rem;
    }

    .hero__banner {
        gap: 1.3rem;
    }

    .hero__banner-main>svg {
        display: none;
    }

    .hero__banner-main {
        flex-direction: column;
    }

    .hero__banner-side {
        grid-template-columns: 1fr;
    }

    .hbitem__label {
        font-size: .7rem;
    }

    .hbitem__value {
        font-size: .8rem;
    }

    .proof__label {
        font-size: .5rem;
        padding: 0 .4rem;
    }

    .photo-frame {
        height: 400px;
    }

    .proof--mini {
        left: 0;
        right: 0;
        bottom: -40px;
    }

    .cta__desc {
        flex-direction: column;
    }

    .fitem__icon {
        position: absolute;
        left: 90%;
        width: 24px;
        height: 24px;
        border: none;
        border-radius: none;
        display: grid;
        place-items: center;
        background: transparent;
    }

    .form__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .photo-frame {
        height: 300px;
    }

    .about__desc {
        padding: 3.5rem 0;
    }

    .callback {
        padding: 1.1rem;
    }


    .about__cta {
        gap: .6rem;
    }

    .i-arrow-down {
        width: 20px;
    }

    .badge-oc {
        top: 0;
        right: 0;
        padding: 0.45rem .3rem;
    }

    .proof--mini {
        bottom: 0;
    }

    .proof--mini .proof__icon {
        width: 20px;
        height: 20px;
    }

    .proof--mini .proof__num {
        font-size: .8rem;
    }

    .proof--mini .proof__label {
        padding: 0;
    }

    .scard__title {
        font-size: .95rem;
    }
}