:root {
    --bg: #f7f4ee;
    --surface: #fffdf8;
    --surface-strong: #ffffff;
    --text: #18323a;
    --muted: #5f6c71;
    --brand: #e77c3c;
    --brand-dark: #bd5a1d;
    --accent: #1d7f7a;
    --accent-soft: #dff3ef;
    --line: rgba(24, 50, 58, 0.1);
    --shadow: 0 18px 60px rgba(24, 50, 58, 0.09);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(231, 124, 60, 0.2), transparent 28%),
        radial-gradient(circle at top right, rgba(29, 127, 122, 0.16), transparent 24%),
        var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    color: var(--muted);
    line-height: 1.75;
}

.site-nav,
.admin-nav {
    padding: 18px 0;
    background: rgba(255, 253, 248, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.brand-mark {
    display: inline-flex;
    gap: 14px;
    align-items: center;
}

.brand-mark span:last-child {
    display: inline-flex;
    flex-direction: column;
}

.brand-mark small {
    color: var(--muted);
    font-size: 0.75rem;
}

.brand-mark__logo {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand), #f5c65a);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: var(--shadow);
}

.brand-mark__logo--image {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    padding: 0;
}

.brand-mark__logo--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar .nav-link {
    color: var(--text);
    font-weight: 600;
}

.btn-brand {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, var(--brand), #f1a24d);
    box-shadow: 0 14px 34px rgba(231, 124, 60, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.hero-section,
.page-hero,
.admin-section,
.admin-login-section {
    padding: 72px 0 32px;
}

.hero-section h1,
.page-hero h1,
.admin-heading h1,
.admin-login-card h1 {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    line-height: 0.95;
    margin-bottom: 18px;
}

.hero-text {
    font-size: 1.06rem;
    max-width: 620px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-visual,
.detail-image,
.map-card,
.content-card,
.catalog-card,
.feature-card,
.testimonial-card,
.cta-card,
.admin-stat,
.admin-login-card,
.gallery-admin-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-visual {
    overflow: hidden;
    padding: 12px;
}

.hero-visual img,
.detail-image img,
.catalog-card img,
.gallery-card img,
.gallery-admin-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-xl) - 12px);
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.trust-bar span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.section-block {
    padding: 36px 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.45);
}

.section-heading {
    margin-bottom: 26px;
}

.section-heading h2,
.content-card h2,
.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 8px;
}

.link-arrow {
    color: var(--brand-dark);
    font-weight: 700;
}

.catalog-card {
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-card:hover {
    transform: translateY(-4px);
}

.catalog-card img {
    aspect-ratio: 1 / 1;
    min-height: 0;
}

.catalog-card__body {
    padding: 24px;
}

.catalog-card__body h2,
.catalog-card__body h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-price-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.product-price-block strong {
    font-size: 1.05rem;
    color: var(--text);
}

.product-price-block span {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.product-price-block--detail {
    margin-bottom: 20px;
}

.catalog-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.feature-card {
    height: 100%;
    padding: 26px;
}

.feature-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 18px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 800;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    min-height: 0;
    border-radius: var(--radius-lg);
}

.gallery-card figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(24, 50, 58, 0.72);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.gallery-card--tall {
    aspect-ratio: 1 / 1;
    min-height: 0;
}

.testimonial-strip {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

.testimonial-card {
    padding: 26px;
}

.stars {
    margin-bottom: 14px;
    color: #f59e0b;
    letter-spacing: 0.15em;
}

.cta-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 34px;
    background: linear-gradient(135deg, rgba(29, 127, 122, 0.95), rgba(231, 124, 60, 0.95));
}

.cta-card,
.cta-card p,
.cta-card .eyebrow,
.cta-card h2 {
    color: #fff;
}

.content-card,
.admin-stat,
.admin-login-card {
    padding: 28px;
}

.value-list {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-list a,
.contact-list span {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(247, 244, 238, 0.8);
}

.map-card {
    overflow: hidden;
    min-height: 320px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.detail-image {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 12px;
}

.site-footer {
    padding: 48px 0 32px;
    margin-top: 40px;
    background: #173038;
    color: rgba(255, 255, 255, 0.84);
}

.site-footer a,
.site-footer p,
.site-footer h6,
.footer-bottom {
    color: rgba(255, 255, 255, 0.84);
}

.site-footer h6 {
    margin-bottom: 14px;
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-actions {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: grid;
    gap: 10px;
    z-index: 1040;
}

.floating-actions__btn {
    padding: 12px 16px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.is-whatsapp { background: #25d366; }
.is-call { background: #0f172a; }
.is-top { background: var(--brand); }

.admin-body {
    background: linear-gradient(180deg, #f6f5f2 0%, #eef5f3 100%);
}

.admin-heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin-bottom: 24px;
}

.admin-stat {
    height: 100%;
}

.admin-stat span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-weight: 700;
}

.admin-stat strong {
    font-size: 2.4rem;
    line-height: 1;
}

.admin-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
}

.admin-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.gallery-admin-card {
    padding: 14px;
}

.gallery-admin-card img {
    height: 180px;
    margin-bottom: 12px;
}

.settings-preview-card {
    height: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(24, 50, 58, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.settings-preview-card__label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.settings-preview-card img,
.settings-preview-card__empty {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    border-radius: 18px;
}

.settings-preview-card img {
    object-fit: cover;
}

.settings-preview-card__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 244, 238, 0.9);
    color: var(--muted);
    font-weight: 700;
}

.admin-login-section {
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
}

.admin-login-card {
    max-width: 520px;
    margin: 0 auto;
}

.form-control,
.form-select {
    border-radius: 16px;
    border-color: rgba(24, 50, 58, 0.12);
    padding: 14px 18px;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(231, 124, 60, 0.45);
    box-shadow: 0 0 0 0.25rem rgba(231, 124, 60, 0.12);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonial-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 767.98px) {
    .hero-section,
    .page-hero,
    .admin-section,
    .admin-login-section {
        padding-top: 48px;
    }

    .hero-actions .btn,
    .catalog-card__actions .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
