:root {
    --background: #f1ede6;
    --surface: #fffdf9;
    --surface-strong: #fff7eb;
    --accent: #d27843;
    --accent-strong: #b7612f;
    --text-primary: #2d2924;
    --text-secondary: #5f564d;
    --border: rgba(45, 41, 36, 0.08);
    --shadow-soft: 0 20px 60px rgba(45, 41, 36, 0.12);
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --max-width: 1080px;
    --transition: all 0.25s ease;
    --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

main {
    margin-top: 84px;
}

.topbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(255, 253, 249, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(45, 41, 36, 0.08);
}

.topbar__logo {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.topbar__links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.topbar__links a {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 0.2rem;
    transition: var(--transition);
}

.topbar__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    transform-origin: left;
    transform: scaleX(0);
    background: var(--accent);
    transition: transform 0.25s ease;
}

.topbar__links a:hover {
    color: var(--text-primary);
}

.topbar__links a:hover::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 18px 45px rgba(178, 97, 47, 0.3);
}

.btn-primary:hover {
    background: var(--accent-strong);
    box-shadow: 0 22px 60px rgba(178, 97, 47, 0.32);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(45, 41, 36, 0.2);
    color: var(--text-primary);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
}

.btn-soft {
    background: rgba(210, 120, 67, 0.12);
    color: var(--accent-strong);
}

.btn-soft:hover {
    background: rgba(210, 120, 67, 0.2);
}

.btn-outlined {
    background: transparent;
    border-color: rgba(45, 41, 36, 0.16);
    color: var(--text-primary);
}

.btn-outlined:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
}

.btn-language {
    background: var(--surface);
    border-color: rgba(45, 41, 36, 0.16);
    color: var(--text-secondary);
    padding-inline: 1.35rem;
}

.btn-language:hover {
    color: var(--text-primary);
    border-color: var(--accent);
}

.section {
    padding: 5rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.2rem;
}

.section--hero {
    background: var(--surface-strong);
    border-top: none;
    padding-top: 6rem;
}

.hero-layout {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 960px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

.hero-copy {
    max-width: 520px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-strong);
    margin-bottom: 1.25rem;
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.08rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.hero-highlights {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.hero-highlights li {
    position: relative;
    padding-left: 1.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    background: rgba(210, 120, 67, 0.2);
    border: 2px solid var(--accent);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-gallery {
    position: relative;
    display: grid;
    gap: 1.5rem;
}

.hero-gallery input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hero-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    background: #0d0906;
    aspect-ratio: 4 / 3;
}

.hero-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image figcaption {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    color: #fffdf9;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}

.hero-thumbs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-thumb {
    width: 82px;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 12px 28px rgba(45, 41, 36, 0.12);
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8);
    transition: var(--transition);
}

.hero-thumb:hover {
    transform: translateY(-3px);
}

.hero-thumb:hover img {
    filter: saturate(1);
}

.hero-gallery input:nth-of-type(1):checked ~ .hero-frame .hero-image:nth-of-type(1),
.hero-gallery input:nth-of-type(2):checked ~ .hero-frame .hero-image:nth-of-type(2),
.hero-gallery input:nth-of-type(3):checked ~ .hero-frame .hero-image:nth-of-type(3),
.hero-gallery input:nth-of-type(4):checked ~ .hero-frame .hero-image:nth-of-type(4),
.hero-gallery input:nth-of-type(5):checked ~ .hero-frame .hero-image:nth-of-type(5),
.hero-gallery input:nth-of-type(6):checked ~ .hero-frame .hero-image:nth-of-type(6),
.hero-gallery input:nth-of-type(7):checked ~ .hero-frame .hero-image:nth-of-type(7),
.hero-gallery input:nth-of-type(8):checked ~ .hero-frame .hero-image:nth-of-type(8) {
    opacity: 1;
}

.hero-gallery input:nth-of-type(1):checked ~ .hero-thumbs label:nth-of-type(1),
.hero-gallery input:nth-of-type(2):checked ~ .hero-thumbs label:nth-of-type(2),
.hero-gallery input:nth-of-type(3):checked ~ .hero-thumbs label:nth-of-type(3),
.hero-gallery input:nth-of-type(4):checked ~ .hero-thumbs label:nth-of-type(4),
.hero-gallery input:nth-of-type(5):checked ~ .hero-thumbs label:nth-of-type(5),
.hero-gallery input:nth-of-type(6):checked ~ .hero-thumbs label:nth-of-type(6),
.hero-gallery input:nth-of-type(7):checked ~ .hero-thumbs label:nth-of-type(7),
.hero-gallery input:nth-of-type(8):checked ~ .hero-thumbs label:nth-of-type(8) {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.hero-gallery input:nth-of-type(1):checked ~ .hero-thumbs label:nth-of-type(1) img,
.hero-gallery input:nth-of-type(2):checked ~ .hero-thumbs label:nth-of-type(2) img,
.hero-gallery input:nth-of-type(3):checked ~ .hero-thumbs label:nth-of-type(3) img,
.hero-gallery input:nth-of-type(4):checked ~ .hero-thumbs label:nth-of-type(4) img,
.hero-gallery input:nth-of-type(5):checked ~ .hero-thumbs label:nth-of-type(5) img,
.hero-gallery input:nth-of-type(6):checked ~ .hero-thumbs label:nth-of-type(6) img,
.hero-gallery input:nth-of-type(7):checked ~ .hero-thumbs label:nth-of-type(7) img,
.hero-gallery input:nth-of-type(8):checked ~ .hero-thumbs label:nth-of-type(8) img {
    filter: saturate(1.05);
}

.section-heading {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.1rem, 3.4vw, 2.6rem);
    margin-bottom: 0.85rem;
}

.section-heading p {
    color: var(--text-secondary);
    font-size: 1.02rem;
}

.media-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.price-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-bottom: 3rem;
}

.price-card {
    padding: 2.5rem 2.2rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(45, 41, 36, 0.08);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.price-card-badge {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    background: rgba(210, 120, 67, 0.14);
    color: var(--accent-strong);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.price-card-header h3 {
    font-size: 1.38rem;
    margin-bottom: 0.45rem;
}

.price-card-subtitle {
    color: var(--text-secondary);
}

.price-card-rate {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
}

.price-card-amount {
    font-size: 2.1rem;
    font-weight: 700;
}

.price-card-period {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-card-features {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    color: var(--text-secondary);
}

.price-card-features li {
    position: relative;
    padding-left: 1.6rem;
}

.price-card-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: rgba(210, 120, 67, 0.25);
}

.addons-heading {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1.75rem;
}

.addons-list {
    display: grid;
    gap: 1rem;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(45, 41, 36, 0.08);
    background: var(--surface);
    box-shadow: 0 12px 28px rgba(45, 41, 36, 0.08);
    gap: 1rem;
}

.addon-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    align-items: baseline;
}

.addon-title {
    font-weight: 600;
}

.addon-description {
    color: var(--text-secondary);
}

.addon-price {
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(210, 120, 67, 0.14);
    color: var(--accent-strong);
}

#about h2 {
    margin-bottom: 1.5rem;
}

#about p + p {
    margin-top: 1.15rem;
}

.contact-card {
    background: var(--surface-strong);
    border-radius: var(--radius-lg);
    padding: 2.4rem 2.1rem;
    display: grid;
    gap: 1.6rem;
    border: 1px solid rgba(45, 41, 36, 0.08);
    box-shadow: var(--shadow-soft);
}

.contact-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem 1.4rem;
    align-items: start;
}

.contact-row + .contact-row {
    padding-top: 1.4rem;
    border-top: 1px solid rgba(45, 41, 36, 0.08);
}

.contact-row-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(210, 120, 67, 0.14);
    display: grid;
    place-items: center;
}

.contact-row-icon img {
    width: 22px;
    height: 22px;
}

.contact-row-title {
    font-weight: 600;
}

.contact-row-detail {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.map-frame {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    border: 1px solid rgba(45, 41, 36, 0.08);
    box-shadow: var(--shadow-soft);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-link {
    text-align: center;
    margin-top: 1.2rem;
}

.map-link a {
    color: var(--accent-strong);
    font-weight: 600;
}

.map-link a:hover {
    text-decoration: underline;
}

@media (max-width: 960px) {
    .topbar {
        padding: 0.9rem 1.35rem;
    }

    .topbar__links {
        display: none;
    }

    .section__inner {
        padding: 0 1.35rem;
    }

    .hero-layout {
        gap: 2.4rem;
    }

    .hero-frame {
        aspect-ratio: 5 / 4;
    }
}

@media (max-width: 640px) {
    main {
        margin-top: 72px;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .addon-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .addon-price {
        width: 100%;
        text-align: center;
    }

    .contact-row {
        grid-template-columns: 1fr;
    }

    .contact-row-icon {
        width: 42px;
        height: 42px;
    }
}
