:root {
    --accent: #e8734a;
    --accent-dark: #cf5a33;
    --ink: #1c1e21;
    --muted: #6b7075;
    --bg: #ffffff;
    --bg-alt: #f7f5f2;
    --line: #e9e4de;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(28, 30, 33, 0.08);
    --font-head: "Sora", sans-serif;
    --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-size: 17px;
}

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

.container { max-width: 1120px; margin-inline: auto; padding-inline: 24px; }

.skip-link {
    position: absolute; left: -999px; top: 0;
    background: var(--ink); color: #fff; padding: 8px 16px; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap {
    display: flex; align-items: center; gap: 28px;
    height: 68px;
}
.brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-head); font-size: 20px; font-weight: 400;
    text-decoration: none; color: var(--ink); margin-right: auto;
}
.brand-logo { height: 34px; width: auto; }
.nav { display: flex; gap: 26px; }
.nav a {
    text-decoration: none; color: var(--muted);
    font-weight: 500; font-size: 15px;
    transition: color 0.2s;
}
.nav a:hover { color: var(--accent-dark); }
.nav-cta { white-space: nowrap; }
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    background: var(--accent); color: #fff;
    font-family: var(--font-body); font-weight: 600; font-size: 16px;
    padding: 12px 26px; border-radius: 999px;
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-lg { padding: 16px 34px; font-size: 17px; }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-ghost {
    background: transparent; color: #fff;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: url("../img/hero.jpg") center / cover no-repeat;
    color: #fff;
    min-height: 640px;
    display: flex; align-items: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(20, 18, 16, 0.82) 20%, rgba(20, 18, 16, 0.45));
}
.hero-inner { position: relative; padding-block: 96px; }
.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(34px, 5.4vw, 60px);
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 20px;
}
.lead { font-size: 19px; max-width: 620px; opacity: 0.92; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-points {
    list-style: none;
    display: flex; flex-wrap: wrap; gap: 12px 28px;
    margin-top: 36px;
    font-weight: 500; font-size: 15px;
}
.hero-points li::before { content: "✓ "; color: var(--accent); font-weight: 700; }

/* ---------- Sections ---------- */
.section { padding-block: 88px; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-sub { color: var(--muted); margin-top: 12px; }

.eyebrow {
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700; font-size: 13px;
    margin-bottom: 10px;
}

h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 700; line-height: 1.2;
}
h3 { font-family: var(--font-head); font-weight: 700; }

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

/* ---------- Cards ---------- */
.card-photo {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.card-photo img { width: 100%; height: 260px; object-fit: cover; }
.card-body { padding: 26px 28px 30px; }
.card-body h3 { font-size: 22px; margin-bottom: 12px; }
.card-body p + p { margin-top: 10px; }
.price-hint { font-weight: 600; color: var(--accent-dark); }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: step; }
.step {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--accent); color: #fff;
    font-family: var(--font-head); font-weight: 700; font-size: 18px;
    margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }

.photo-strip {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    margin-top: 48px;
}
.photo-strip img {
    width: 100%; height: 240px; object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ---------- Ticks ---------- */
.ticks { list-style: none; margin-top: 18px; }
.ticks li { padding-left: 30px; position: relative; margin-bottom: 10px; }
.ticks li::before {
    content: "✓";
    position: absolute; left: 0;
    color: var(--accent); font-weight: 800;
}
.ticks-cols { columns: 2; column-gap: 40px; }
.ticks-cols li { break-inside: avoid; }

/* ---------- Pricing ---------- */
.pricing { align-items: stretch; }
.plan {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex; flex-direction: column;
}
.plan-popular {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow);
    position: relative;
}
.badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 14px; border-radius: 999px;
    white-space: nowrap;
}
.plan h3 { font-size: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.plan-time { color: var(--muted); font-size: 15px; margin-top: 4px; }
.plan-price {
    font-family: var(--font-head);
    font-size: 32px; font-weight: 800;
    margin: 14px 0 16px;
}
.plan ul { list-style: none; font-size: 15px; }
.plan ul li { padding-left: 22px; position: relative; margin-bottom: 8px; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.plan-btn { margin-top: auto; align-self: flex-start; }

.extras {
    margin-top: 56px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 36px;
}
.extras h3 { font-size: 20px; margin-bottom: 6px; }
.extras .ticks { margin-top: 14px; }

.signs { margin-top: 48px; }
.signs h3 { font-size: 22px; margin-bottom: 20px; }
.signs-grid .sign {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex; flex-direction: column;
}
.sign span { color: var(--muted); font-size: 15px; }
.sign strong { font-family: var(--font-head); font-size: 24px; font-weight: 700; }
.muted { color: var(--muted); font-size: 15px; margin-top: 14px; }

/* ---------- Facebook ---------- */
.fb-wrap {
    max-width: 540px;
    margin-inline: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow);
}
.fb-page-plugin {
    width: 100%;
    height: 600px;
    border-radius: 10px;
}

/* ---------- Contact ---------- */
.contact-cards { margin-top: 8px; }
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 28px;
    text-decoration: none; color: var(--ink);
    display: flex; flex-direction: column; gap: 4px;
    transition: transform 0.15s, box-shadow 0.15s;
}
a.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-label {
    color: var(--accent-dark);
    text-transform: uppercase; letter-spacing: 0.1em;
    font-size: 12px; font-weight: 700;
}
.contact-card strong { font-family: var(--font-head); font-size: 19px; word-break: break-word; }
.contact-card small { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink); color: rgba(255, 255, 255, 0.75);
    padding-block: 28px; font-size: 15px;
}
.footer-wrap {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
}
.footer-links { display: flex; align-items: center; gap: 22px; }
.footer-link { color: #fff; text-decoration: none; font-weight: 600; }
.footer-link:hover { color: var(--accent); }
a.footer-link[aria-label] {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 500;
}

/* ---------- Floating buttons ---------- */
.call-fab {
    display: none;
    position: fixed; right: 18px; bottom: 18px; z-index: 60;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--accent); color: #fff;
    align-items: center; justify-content: center;
    box-shadow: 0 8px 22px rgba(232, 115, 74, 0.45);
}
.messenger-fab {
    position: fixed; right: 18px; bottom: 88px; z-index: 60;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--ink); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 22px rgba(28, 30, 33, 0.35);
    transition: transform 0.15s, background 0.2s;
}
.messenger-fab:hover { transform: translateY(-2px); background: #000; }
@media (min-width: 721px) {
    .messenger-fab { bottom: 18px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }    .grid-3 { grid-template-columns: 1fr; }
    .photo-strip img { height: 180px; }
    .ticks-cols { columns: 1; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    .section { padding-block: 64px; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; row-gap: 24px; }
    .plan-btn { align-self: stretch; text-align: center; }

    .nav {
        display: none;
        position: absolute; top: 68px; left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 8px 24px 16px;
    }
    .nav.open { display: flex; }
    .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
    .nav a:last-child { border-bottom: none; }
    .nav-toggle {
        display: inline-flex; flex-direction: column; gap: 5px;
        background: none; border: none; cursor: pointer; padding: 6px;
    }
    .nav-toggle span {
        width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
        transition: transform 0.25s, opacity 0.25s;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-cta { display: none; }
    .call-fab { display: flex; }
    .hero { min-height: 560px; }
    .photo-strip { grid-template-columns: 1fr; }
}
