:root {
    --red: #ef1012;
    --red-dark: #c40d0f;
    --red-deep: #8e0a0c;
    --black: #111111;
    --dark: #1b1b1b;
    --ink: #181818;
    --text: #393939;
    --muted: #6b6b6b;
    --cream: #f7f4f2;
    --line: #ece8e6;
    --white: #ffffff;
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Lato", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; }

ul { padding-left: 0; list-style: none; margin: 0; }

.section-pad { padding: 90px 0; }

.section-title {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.eyebrow {
    color: var(--red);
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
}

.eyebrow.light { color: #ffb4b4; }

.section-lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
    border-radius: 6px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.theme-btn:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.theme-btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.theme-btn-outline:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}

.theme-btn-dark {
    background: var(--black);
    border-color: var(--black);
}

.theme-btn-dark:hover {
    background: var(--red);
    border-color: var(--red);
}

.theme-btn-outline-dark {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.theme-btn-outline-dark:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.thank-banner {
    background: #e8fff0;
    color: #146c2e;
    font-weight: 600;
}

/* Top bar */
.topbar {
    background: var(--black);
    padding: 10px 0;
}

.topbar-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-link i { color: var(--red); }
.topbar-link:hover { color: #ffd0d0; }

/* Navbar */
.main-nav {
    background: var(--white);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
}

.brand-logo {
    max-height: 62px;
    width: auto;
}

.main-nav .nav-link {
    color: var(--ink) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 12px !important;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--red) !important;
}

.dropdown-menu {
    border: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    font-size: 14px;
    padding: 8px 18px;
}

.dropdown-item:hover {
    background: #fff1f1;
    color: var(--red);
}

.navbar-toggler { border: 0; }

/* Hero */
.hero-section {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.55) 0%, rgba(239, 16, 18, 0.35) 100%);
}

.hero-book {
    position: absolute;
    width: 220px;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
    pointer-events: none;
}

.hero-book-left {
    left: 2%;
    bottom: 40px;
    transform: rotate(-8deg);
}

.hero-book-right {
    right: 3%;
    top: 70px;
    transform: rotate(8deg);
    width: 260px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 90px 0;
}

.hero-content h1 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffd0d0;
    margin-bottom: 12px;
}

.hero-content h2 {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #f3f3f3;
    margin-bottom: 28px;
}

/* About + form */
.about-section { background: var(--cream); }

.about-section p { line-height: 1.75; }

.counter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.counter-num {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.counter-item h6 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ink);
    margin: 0;
}

.lead-form {
    background: linear-gradient(180deg, #1b1b1b 0%, #2a1212 100%);
    border-radius: 16px;
    padding: 36px 28px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.lead-form h3 {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.2;
}

.lead-form label,
.lead-form .form-check-label {
    font-size: 13px;
    color: #f0d0d0;
    margin-bottom: 6px;
}

.lead-form .form-check-label a { color: #ffb4b4; }

.form-control,
.form-select {
    border-radius: 8px;
    border: 0;
    min-height: 48px;
    font-size: 15px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px rgba(239, 16, 18, 0.25);
    border-color: var(--red);
}

/* Services */
.service-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(239, 16, 18, 0.15);
}

.service-img { height: 210px; overflow: hidden; }

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover .service-img img { transform: scale(1.06); }

.service-body { padding: 24px; }

.service-body h3 {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--red);
    margin-bottom: 10px;
}

.service-body p {
    color: var(--muted);
    min-height: 72px;
}

.learn-link {
    display: inline-block;
    margin-top: 12px;
    margin-left: 12px;
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
}

/* Portfolio */
.portfolio-section {
    background: var(--black);
}

.portfolio-tabs .nav-link {
    background: transparent;
    color: var(--white);
    border: 1px solid #444;
    border-radius: 30px;
    padding: 8px 18px;
    margin: 0 6px 8px;
    font-weight: 600;
}

.portfolio-tabs .nav-link.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.book-card,
.media-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #222;
}

.book-card img,
.media-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.book-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(17, 17, 17, 0.86));
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    opacity: 0;
    transition: 0.3s ease;
}

.book-card:hover .book-overlay { opacity: 1; }

.book-overlay h4 {
    font-family: var(--serif);
    font-size: 18px;
    margin-bottom: 4px;
}

.book-overlay a {
    color: var(--white);
    border: 1px solid var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
    margin-top: 8px;
}

.book-overlay a:hover {
    background: var(--red);
    border-color: var(--red);
}

.video-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Testimonials */
.testi-visual {
    position: relative;
    min-height: 460px;
}

.testi-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 16px;
    opacity: 0;
    transition: 0.4s ease;
}

.testi-photo.active { opacity: 1; }

.testi-card {
    display: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.testi-card.active { display: block; }

.testi-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.testi-head h4 {
    font-family: var(--serif);
    color: var(--red);
    margin-bottom: 0;
}

.testi-head p {
    margin: 0;
    font-weight: 700;
    color: var(--ink);
}

.name-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.testi-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
}

.testi-nav { margin-top: 18px; }

.testi-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    margin-right: 8px;
}

.testi-nav button:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

/* Connect CTA */
.connect-section {
    background: linear-gradient(110deg, #111 0%, #3a0b0c 55%, #ef1012 140%);
}

.connect-visual {
    position: relative;
    min-height: 380px;
}

.connect-visual img {
    position: absolute;
    width: 170px;
    border-radius: 8px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.connect-visual .cover-1 { left: 10px; top: 40px; transform: rotate(-8deg); }
.connect-visual .cover-2 { left: 50%; top: 0; transform: translateX(-50%) rotate(2deg); width: 190px; z-index: 2; }
.connect-visual .cover-3 { right: 10px; top: 50px; transform: rotate(8deg); }

/* Why us */
.why-box {
    border-radius: 14px;
    padding: 34px 28px;
    color: var(--white);
    height: 100%;
}

.why-box.dark { background: var(--black); }
.why-box.red { background: var(--red); }

.why-box h3 {
    font-family: var(--serif);
    font-size: 28px;
    margin-bottom: 10px;
}

/* Process + form */
.process-section { background: var(--cream); }

.service-form {
    background: var(--black);
    color: var(--white);
    border-radius: 16px;
    padding: 36px 30px;
}

.service-form h3 {
    font-family: var(--serif);
    font-size: 30px;
    margin-bottom: 22px;
}

.service-label { margin: 6px 0 10px; font-weight: 600; }

.service-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 18px;
}

.service-checks label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.process-list { display: flex; flex-direction: column; gap: 22px; }

.process-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
}

.process-list h4 {
    font-family: var(--serif);
    color: var(--ink);
    font-size: 22px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.process-list p { margin: 0; color: var(--muted); }

/* Footer */
.site-footer {
    background: var(--black);
    color: #d8d8d8;
    padding: 70px 0 24px;
}

.footer-logo { max-width: 220px; margin-bottom: 16px; }

.site-footer h5 {
    color: var(--red);
    font-family: var(--serif);
    margin-bottom: 16px;
}

.site-footer ul li { margin-bottom: 8px; }

.site-footer a { color: #d8d8d8; }
.site-footer a:hover { color: var(--red); }

.socials a {
    width: 36px;
    height: 36px;
    border: 1px solid #444;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.info-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.info-list i {
    color: var(--red);
    margin-top: 6px;
}

.info-list small {
    display: block;
    color: #999;
}

.info-list a,
.info-list span { color: var(--white); font-weight: 600; }

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

/* Floating + modal */
.float-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(239, 16, 18, 0.4);
}

.float-btn:hover { background: var(--black); color: var(--white); }

.consult-modal {
    background: var(--black);
    color: var(--white);
    border: 0;
    overflow: hidden;
}

.consult-modal .btn-close {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
}

.consult-side {
    background: linear-gradient(180deg, var(--red), var(--red-deep));
    padding: 40px 28px;
}

.consult-side h3 {
    font-family: var(--serif);
    font-size: 30px;
    margin-bottom: 12px;
}

.discount-badge {
    display: inline-block;
    margin-top: 16px;
    background: var(--black);
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: rise 0.8s ease forwards;
}

@keyframes rise {
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 991px) {
    .hero-content h2 { font-size: 36px; }
    .section-title { font-size: 32px; }
    .hero-book { display: none; }
    .main-nav .theme-btn { margin: 16px 0; }
    .testi-visual { min-height: 320px; }
    .testi-photo { height: 320px; }
}

@media (max-width: 575px) {
    .section-pad { padding: 60px 0; }
    .hero-content { padding: 70px 0; }
    .hero-content h2 { font-size: 28px; }
    .lead-form h3 { font-size: 26px; }
    .connect-visual { min-height: 280px; }
    .connect-visual img { width: 120px; }
    .inner-hero h1 { font-size: 20px; }
    .inner-hero h2 { font-size: 28px; }
}

/* Inner pages */
.inner-hero {
    position: relative;
    padding: 80px 0;
    background: var(--black);
    overflow: hidden;
    color: var(--white);
}

.inner-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
}

.inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(17, 17, 17, 0.88) 0%, rgba(239, 16, 18, 0.45) 100%);
}

.inner-hero .container { position: relative; z-index: 2; }

.breadcrumb-line {
    color: #ffd0d0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.breadcrumb-line a { color: #ffd0d0; }
.breadcrumb-line span { color: var(--white); }

.inner-hero h1 {
    font-family: var(--serif);
    font-size: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffd0d0;
    margin-bottom: 10px;
}

.inner-hero h2 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.inner-hero p { color: #f1f1f1; max-width: 620px; line-height: 1.7; }

.form-note { color: #f0d0d0; font-size: 14px; }

.inner-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.feature-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff1f1;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 10px;
}

.step-card {
    background: var(--white);
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    border: 1px solid var(--line);
}

.step-card h4 {
    font-family: var(--serif);
    font-size: 20px;
    margin: 12px 0 8px;
}

.contact-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.contact-card i {
    color: var(--red);
    font-size: 26px;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-family: var(--serif);
    font-size: 22px;
}

.legal-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.legal-wrap h3 {
    font-family: var(--serif);
    margin-top: 28px;
    color: var(--ink);
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--red);
}

.genre-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.genre-list span {
    background: #fff1f1;
    color: var(--red);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
}

.banner-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 16px;
    height: 100%;
}

.banner-box h4 {
    font-family: var(--serif);
    font-size: 16px;
    color: #ffd0d0;
    margin-bottom: 8px;
}

.banner-box p {
    font-size: 13px;
    color: #f3f3f3;
    margin: 0;
    max-width: none;
}

.inner-cta {
    background: linear-gradient(100deg, #111 0%, #ef1012 160%);
    color: var(--white);
    padding: 60px 0;
}

.inner-cta h2 {
    font-family: var(--serif);
    font-size: 36px;
    margin-bottom: 10px;
}

.inner-cta p { color: #f3f3f3; max-width: 640px; }

.detail-card {
    background: var(--cream);
    border-radius: 14px;
    padding: 28px;
    height: 100%;
}

.detail-card h3 {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 12px;
}
