:root {
    --cream: #f7f3ea;
    --warm-white: #fffdf8;
    --sand: #ebe1d1;
    --sage: #8c9f8f;
    --moss: #4d5f4f;
    --forest: #334435;
    --text: #2c332e;
    --muted: #6f776f;
    --line: #e5dccf;
    --radius-xl: 24px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --shadow-soft: 0 18px 40px rgba(44, 49, 44, 0.09);
    --shadow-card: 0 12px 26px rgba(45, 51, 46, 0.1);
}

html { scroll-behavior: smooth; }

body.landing-page {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 15% 0%, #fcf9f2 0%, var(--cream) 52%, #f4ecde 100%);
}

body.landing-page main {
    overflow: hidden;
}

body.landing-page .navbar {
    background: rgba(255, 252, 246, 0.88) !important;
    border-bottom: 1px solid rgba(188, 175, 154, 0.35) !important;
    backdrop-filter: blur(8px);
}

body.landing-page .navbar-brand {
    font-family: "DM Serif Display", serif;
    font-size: clamp(1.7rem, 2.2vw, 2.2rem);
    letter-spacing: 0.02em;
    color: var(--forest) !important;
}

body.landing-page .nav-link {
    color: #4f564f;
    font-weight: 500;
    letter-spacing: 0.01em;
}

body.landing-page .nav-link:hover,
body.landing-page .nav-link:focus,
body.landing-page .nav-link.active {
    color: var(--forest) !important;
}

.hero-section {
    min-height: calc(100vh - 74px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.1) 100%),
        radial-gradient(circle at 85% 12%, rgba(250, 241, 223, 0.14), rgba(250, 241, 223, 0));
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 5.4rem;
}

.hero-content-panel {
    max-width: 780px;
    color: #fefaf4;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.44rem 0.9rem;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    font-weight: 500;
    color: #f7efe0;
    background: rgba(247, 239, 224, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.1rem;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5.1vw, 4.6rem);
    line-height: 1.14;
    margin-bottom: 1rem;
    max-width: 16ch;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: clamp(1.02rem, 1.95vw, 1.28rem);
    max-width: 48ch;
    color: #f0e7da;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.policy-highlight {
    color: #111;
    background: #fff;
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
}

.hero-actions {
    display: flex;
    gap: 0.78rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-hero,
.btn-hero-secondary {
    border-radius: 999px;
    padding: 0.88rem 1.42rem;
    font-weight: 600;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-hero {
    background: #e9dbc3;
    color: #413626;
    box-shadow: none;
}

.btn-hero:hover,
.btn-hero:focus {
    color: #342a1c;
    background: #e2d2b7;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(18, 20, 16, 0.15);
}

.btn-hero-secondary {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.92);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(16, 18, 15, 0.14);
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(80px, 10vw, 120px);
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-wave path {
    fill: var(--cream);
}

.section-gap {
    margin-top: 3.2rem;
    margin-bottom: 3.2rem;
}

.section-gap-sm {
    margin-top: 2.3rem;
    margin-bottom: 2.3rem;
}

.section-box {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(249, 243, 234, 0.96));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.4rem, 3.4vw, 2.7rem);
}

.section-lead {
    color: #7b6f5f;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.decor-title {
    font-family: "Playfair Display", serif;
    color: #2c352e;
    font-size: clamp(1.85rem, 3.3vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.section-alert {
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.values-box {
    background: linear-gradient(180deg, #fdf9f2, #f6efe3);
}

.value-card {
    height: 100%;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    padding: 1.2rem 1.1rem;
    box-shadow: 0 8px 18px rgba(63, 66, 60, 0.08);
}

.value-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #708673, #4f6452);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.72rem;
}

.value-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.26rem;
    margin-bottom: 0.38rem;
    color: #2f3a31;
}

.value-card p {
    margin: 0;
    color: #626a62;
    line-height: 1.56;
}

.about-box {
    background: linear-gradient(180deg, #fefbf6, #f6f0e6);
}

.about-photo-wrap {
    border-radius: 20px;
}

.about-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-content p {
    color: #646c65;
    line-height: 1.78;
    font-size: 1.02rem;
}

.catalog-box {
    background: linear-gradient(180deg, #fdfaf4, #f5eee2);
}

.catalog-empty {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    color: #636a63;
}

.rabbit-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fffdf9;
    box-shadow: var(--shadow-card);
}

.rabbit-image-wrap {
    position: relative;
    padding: 0.9rem;
    background: linear-gradient(180deg, #f5ebda, #eee2cf);
}

.rabbit-img {
    width: 100%;
    height: 320px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
}

.rabbit-placeholder {
    background: linear-gradient(160deg, #f6edde, #ecdfcc);
    color: #564f40;
    font-weight: 600;
}

.rabbit-carousel .carousel-indicators {
    margin-bottom: 0.42rem;
}

.rabbit-carousel .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 999px;
}

.rabbit-carousel .carousel-control-prev,
.rabbit-carousel .carousel-control-next {
    width: 34px;
    opacity: 0.84;
}

.rabbit-carousel .carousel-control-prev-icon,
.rabbit-carousel .carousel-control-next-icon {
    background-color: rgba(32, 36, 32, 0.42);
    border-radius: 999px;
    background-size: 56%;
}

.rabbit-badges {
    position: absolute;
    top: 1.28rem;
    right: 1.2rem;
}

.rabbit-badge {
    border-radius: 999px;
    padding: 0.34rem 0.66rem;
    font-size: 0.76rem;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.rabbit-badge-age {
    background: rgba(255, 251, 244, 0.9);
    color: #4d564d;
}

.rabbit-name {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: #2e3830;
}

.rabbit-price {
    color: #2f5f35;
    font-size: clamp(1.5rem, 2.1vw, 1.72rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 0.9rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(47, 95, 53, 0.16);
}

.rabbit-lineage {
    font-size: 0.9rem;
    color: #6b726b;
}

.rabbit-facts {
    color: #5f675f;
    line-height: 1.62;
}

.rabbit-fact-line {
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.rabbit-status-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.18rem 0.58rem;
    font-size: 0.74rem;
    font-weight: 600;
    margin-left: 0.2rem;
    vertical-align: middle;
}

.rabbit-status-badge.status-available {
    background: #e5f2e8;
    color: #3f6f49;
}

.rabbit-status-badge.status-reserved {
    background: #f9e9d6;
    color: #996136;
}

.rabbit-status-badge.status-sold {
    background: #e9ecef;
    color: #5e656c;
}

.rabbit-status-badge.status-unavailable {
    background: #eceef1;
    color: #5f666d;
}

.rabbit-description {
    color: #596158;
    line-height: 1.68;
    font-size: 0.9rem;
    margin-bottom: 1.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.landing-page .btn-rabbit {
    background: linear-gradient(180deg, #5f7662, #455a47);
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.72rem 1rem;
}

body.landing-page .btn-rabbit:hover,
body.landing-page .btn-rabbit:focus {
    color: #fff;
    background: linear-gradient(180deg, #687f6b, #425643);
}

.reservation-section {
    background: linear-gradient(180deg, rgba(236, 227, 212, 0.48), rgba(236, 227, 212, 0.4));
    padding: 2.8rem 0;
}

.reservation-box {
    background: linear-gradient(180deg, #fefaf3, #f4ecdf);
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.step-list li {
    display: flex;
    align-items: center;
    gap: 0.76rem;
    font-size: 1.03rem;
    color: #4d564d;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #e7dccb;
}

.step-no {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #6f856f, #4e644f);
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.reservation-map-card,
.location-map-card {
    border-radius: var(--radius-md);
    background: #fff;
    padding: 0.6rem;
    box-shadow: var(--shadow-card);
    position: relative;
}

.reservation-map-card iframe,
.location-map-card iframe {
    width: 100%;
    border: 0;
    border-radius: 12px;
}

.reservation-map-card iframe {
    min-height: 300px;
}

.location-map-card iframe {
    min-height: 380px;
}

.map-pin {
    position: absolute;
    left: 57%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 250, 243, 0.92);
    color: #b45c43;
    font-size: 1.9rem;
    box-shadow: 0 10px 20px rgba(66, 63, 58, 0.22);
}

.reviews-box {
    background: linear-gradient(180deg, #fdfaf4, #f5eee2);
}

.review-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 20px;
    padding: 0.86rem;
    box-shadow: 0 10px 24px rgba(62, 64, 58, 0.11);
}

.review-photo {
    width: 100%;
    height: 250px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.review-text {
    font-family: "Playfair Display", serif;
    color: #4f574f;
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 0.6rem;
}

.review-author {
    color: #3f473f;
    font-weight: 600;
}

.review-date {
    color: #6d746d;
    font-size: 0.88rem;
}

.rabbit-lightbox-image {
    max-height: 78vh;
    object-fit: contain;
    border-radius: 14px;
    background: #111;
}

.location-address {
    color: #626a62;
    font-size: 1.04rem;
}

.contact-box {
    background: #fff;
    border: 1px solid #e7dfd1;
    border-radius: 20px;
    padding: clamp(3.75rem, 6vw, 5rem);
    box-shadow: none;
}

.contact-intro {
    max-width: 760px;
    margin: 0 auto;
}

.contact-description {
    color: #5a6159;
    font-size: 1.02rem;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 0.95rem 1.45rem;
    background: linear-gradient(180deg, #25d366, #1ea852);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid #1d9f4d;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-cta-btn:hover,
.contact-cta-btn:focus {
    color: #fff;
    background: linear-gradient(180deg, #22c460, #1b9748);
    box-shadow: 0 8px 18px rgba(30, 122, 68, 0.22);
    transform: translateY(-1px);
}

.contact-subtle {
    margin-top: 0.85rem;
    color: #7b827a;
    font-size: 0.9rem;
}

.footer-link {
    color: var(--forest);
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover,
.footer-link:focus {
    text-decoration: underline;
    color: #2f3f31;
}

.site-footer {
    margin-top: 2rem;
    padding: 1.5rem 0;
    background: linear-gradient(180deg, #efe4d2, #e2d3bd);
}

.footer-content {
    color: #5d635c;
}

.site-footer-home {
    background: #f3efe6;
    padding: 4rem 0 1.25rem;
}

.footer-content-home {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    color: #4e564d;
}

.footer-col {
    min-width: 0;
}

.footer-brand {
    font-family: "DM Serif Display", serif;
    font-size: 1.9rem;
    color: #2d3a2f;
    margin: 0 0 0.5rem;
}

.footer-heading {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
    color: #566155;
    margin: 0 0 0.65rem;
}

.footer-muted {
    color: #677067;
    max-width: 34ch;
}

.footer-subfooter {
    margin-top: 2.2rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #6c736b;
}

.system-hero {
    min-height: 52vh;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(112deg, rgba(18, 27, 20, 0.66) 0%, rgba(27, 36, 28, 0.44) 45%, rgba(45, 58, 47, 0.2) 100%),
        url('../images/hero-rabbit.jpg') center/cover no-repeat;
}

.system-hero-cancel {
    background:
        linear-gradient(112deg, rgba(38, 33, 20, 0.58) 0%, rgba(46, 39, 27, 0.38) 45%, rgba(45, 58, 47, 0.2) 100%),
        url('../images/rabbit-review-2.jpg') center/cover no-repeat;
}

.system-hero-privacy {
    background:
        linear-gradient(112deg, rgba(18, 27, 20, 0.62) 0%, rgba(27, 36, 28, 0.38) 45%, rgba(45, 58, 47, 0.18) 100%),
        url('../images/rabbit-about.jpg') center/cover no-repeat;
}

.system-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 10%, rgba(250, 241, 223, 0.24), rgba(250, 241, 223, 0));
}

.system-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
}

.system-hero-panel {
    max-width: 760px;
    color: #fefaf4;
}

.system-message-card {
    max-width: 950px;
    margin: 0 auto;
}

.system-page {
    background: #f3ede3;
    padding: 40px 16px 84px;
}

.system-card {
    max-width: 820px;
    margin: 80px auto;
    padding: 56px;
    background: #fffdf8;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.system-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.system-icon.success {
    background: #e4f2e7;
    color: #4f7a53;
}

.system-icon.warning {
    background: #f7ede1;
    color: #9b7b55;
}

.system-icon.neutral {
    background: #efe7d8;
    color: #6f685a;
}

.system-title {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 600;
    color: #2f3a2f;
    line-height: 1.1;
    margin: 0 0 20px;
}

.system-description {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: #3e3a34;
    line-height: 1.7;
    margin: 0 auto 36px;
    max-width: 640px;
}

.system-description.muted {
    color: #6b645b;
}

.system-button {
    display: inline-block;
    border: none;
    border-radius: 999px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #5f7d55;
    text-decoration: none;
    transition: 0.2s ease;
}

.system-button:hover,
.system-button:focus {
    color: #fff;
    background: #4e6a46;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.legal-card {
    max-width: 1080px;
    text-align: left;
}

.legal-section + .legal-section {
    margin-top: 2rem;
}

.legal-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    color: #2f3a2f;
}

.legal-section h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    color: #2f3930;
    margin-bottom: 0.58rem;
}

.legal-section p,
.legal-section li {
    font-family: "Inter", sans-serif;
    color: #3e3a34;
    line-height: 1.7;
    font-size: 17px;
}

.legal-section ul {
    margin: 0;
    padding-left: 1.3rem;
}

@media (max-width: 1199.98px) {
    .rabbit-img {
        height: 290px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 85vh;
    }

    .review-photo {
        height: 220px;
    }

    .system-title {
        font-size: 44px;
    }
}

@media (max-width: 767.98px) {
    body.landing-page .navbar-brand {
        font-size: 1.6rem;
    }

    .hero-section {
        min-height: 82vh;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .section-gap,
    .section-gap-sm {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-box {
        border-radius: 20px;
    }

    .hero-wave {
        height: 90px;
    }

    .rabbit-img {
        height: 260px;
    }

    .reservation-map-card iframe {
        min-height: 250px;
    }

    .location-map-card iframe {
        min-height: 300px;
    }

    .system-page {
        padding: 20px 12px 44px;
    }

    .system-card {
        margin: 30px auto;
        padding: 34px 22px;
    }

    .system-title {
        font-size: 34px;
    }

    .system-description {
        font-size: 16px;
    }

    .system-button {
        width: 100%;
        text-align: center;
    }

    .site-footer-home {
        padding-top: 3rem;
    }

    .footer-content-home {
        grid-template-columns: 1fr;
        gap: 1.45rem;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 16px;
    }
}
