:root {
    --bg: #f6f0e5;
    --bg-soft: #fbf7f0;
    --surface: rgba(255, 250, 243, 0.9);
    --surface-strong: #fffdf9;
    --surface-dark: #2a211c;
    --text: #261b16;
    --muted: #68554a;
    --line: rgba(79, 46, 27, 0.14);
    --primary: #6f1d1b;
    --primary-strong: #51110f;
    --accent: #d8b26f;
    --shadow: 0 18px 40px rgba(57, 34, 21, 0.12);
    --shadow-soft: 0 10px 24px rgba(57, 34, 21, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(216, 178, 111, 0.18), transparent 28%),
        linear-gradient(180deg, #f8f2e8 0%, #f6f0e5 46%, #f2eadf 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

[hidden] {
    display: none !important;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.eyebrow {
    margin-bottom: 0.9rem;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-shell {
    padding: 4.75rem 0;
}

.section-contrast {
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.88), rgba(245, 236, 225, 0.95));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    max-width: 660px;
    margin-bottom: 2rem;
}

.section-heading h2,
.hero-copy h1 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.06;
}

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

.section-heading p,
.hero-text,
.story-copy p,
.tip-card p,
.collection-card p,
.trust-card p,
.faq-item p,
.contact-panel p {
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 242, 232, 0.96);
    border-bottom: 1px solid rgba(111, 29, 27, 0.08);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #8c3428);
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-copy small {
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.site-nav a {
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 700;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.35rem;
    padding: 0.25rem;
    border: 1px solid rgba(79, 46, 27, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
}

.language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 34px;
    padding: 0 0.8rem;
    border-radius: 999px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.language-link.is-active {
    background: var(--primary);
    color: #fff;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--primary);
}

.nav-phone {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.nav-phone:hover,
.nav-phone:focus-visible {
    color: #fff;
    background: var(--primary-strong);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-strong);
    padding: 0.75rem 1rem;
    color: var(--text);
    cursor: pointer;
}

.hero {
    padding: 4.5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 2.5rem;
}

.hero-copy h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(1.85rem, 4vw, 3.2rem);
}

.hero-text {
    max-width: 620px;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 2rem 0 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    border: 0;
    background: linear-gradient(135deg, var(--primary), #8b2e24);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: linear-gradient(135deg, var(--primary-strong), #732118);
}

.button-secondary {
    border: 1px solid rgba(111, 29, 27, 0.18);
    background: rgba(255, 255, 255, 0.66);
    color: var(--text);
}

.button-full {
    width: 100%;
}

.hero-highlights {
    display: grid;
    gap: 0.75rem;
    list-style: none;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--muted);
    font-weight: 600;
}

.hero-highlights li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    flex: 0 0 auto;
}

.hero-visual {
    max-width: 520px;
    margin-left: auto;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 243, 0.56);
    box-shadow: var(--shadow-soft);
}

.hero-visual picture {
    display: block;
}

.hero-visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 430px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 8px);
}

.hero-visual figcaption {
    padding-top: 1rem;
    color: var(--muted);
}

.trust-strip {
    padding-bottom: 1rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.trust-card,
.collection-card,
.tip-card,
.contact-panel,
.contact-form-card {
    background: var(--surface);
    border: 1px solid rgba(79, 46, 27, 0.08);
    box-shadow: var(--shadow-soft);
}

.trust-card {
    min-height: 100%;
    padding: 1.4rem;
    border-radius: var(--radius-md);
}

.trust-card strong,
.collection-card h3,
.tip-card h3,
.contact-panel h2 {
    display: block;
    margin-bottom: 0.55rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.collection-card {
    overflow: hidden;
    border-radius: 22px;
}

.collection-card picture {
    display: block;
}

.collection-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 190px;
    object-fit: cover;
    object-position: center;
}

.card-copy {
    padding: 1rem 1.1rem 1.15rem;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 1.5rem;
    align-items: start;
}

.story-copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
}

.story-copy p + p {
    margin-top: 1rem;
}

.tip-card {
    padding: 1.8rem;
    border-radius: 24px;
    border-left: 4px solid var(--accent);
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(79, 46, 27, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 251, 246, 0.88);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.15rem 1.25rem;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::marker {
    content: "";
}

.faq-item p {
    padding: 0 1.25rem 1.2rem;
}

.contact-shell {
    padding-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-panel,
.contact-form-card {
    padding: 2rem;
    border-radius: 24px;
}

.contact-list {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0 1.75rem;
    list-style: none;
}

.contact-list strong {
    color: var(--text);
}

.social-follow-card {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 1.6rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(79, 46, 27, 0.08);
    border-radius: 18px;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.social-follow-card:hover,
.social-follow-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.instagram-card {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.12), rgba(253, 29, 29, 0.08), rgba(252, 176, 69, 0.14));
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
    color: #fff;
    flex: 0 0 auto;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-copy {
    display: grid;
    gap: 0.2rem;
}

.social-copy strong {
    color: var(--text);
}

.social-copy span:last-child {
    color: var(--muted);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--surface-strong);
}

.hours-table caption {
    margin-bottom: 0.9rem;
    text-align: left;
    color: var(--primary);
    font-weight: 800;
}

.hours-table th,
.hours-table td {
    padding: 0.95rem;
    text-align: left;
    border-bottom: 1px solid rgba(79, 46, 27, 0.08);
}

.hours-table th {
    background: rgba(111, 29, 27, 0.92);
    color: #fff;
}

.contact-form-card form {
    display: grid;
    gap: 0.9rem;
}

.contact-form-card label {
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    border: 1px solid rgba(79, 46, 27, 0.12);
    border-radius: 14px;
    background: #fff;
    padding: 0.95rem 1rem;
    color: var(--text);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: 2px solid rgba(111, 29, 27, 0.18);
    border-color: rgba(111, 29, 27, 0.35);
}

.form-feedback {
    min-height: 1.5rem;
    color: var(--muted);
    font-size: 0.94rem;
}

.form-note {
    color: var(--muted);
    font-size: 0.92rem;
}

.map-shell {
    padding: 0 0 5.5rem;
}

.map-shell iframe {
    width: 100%;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.map-consent-box {
    display: grid;
    gap: 1rem;
}

.map-consent-placeholder {
    padding: 1.8rem;
    border: 1px solid rgba(79, 46, 27, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 251, 246, 0.92);
    box-shadow: var(--shadow-soft);
}

.map-consent-placeholder h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.12;
}

.map-consent-placeholder p:last-of-type {
    max-width: 720px;
    color: var(--muted);
}

.map-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.site-footer {
    padding: 2.2rem 0;
    background: var(--surface-dark);
    color: rgba(255, 250, 243, 0.88);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.site-footer a {
    color: #fff;
}

.footer-link-button {
    display: inline;
    border: 0;
    padding: 0;
    background: none;
    color: #fff;
    cursor: pointer;
    text-decoration: underline;
}

.floating-actions {
    position: fixed;
    right: 1rem;
    top: 50%;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(-50%);
}

.floating-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-action:hover,
.floating-action:focus-visible {
    transform: scale(1.06);
    box-shadow: var(--shadow);
}

.floating-action svg {
    width: 24px;
    height: 24px;
}

.floating-phone {
    background: var(--primary);
}

.floating-whatsapp {
    background: #25d366;
}

.floating-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.reveal {
    opacity: 1;
    transform: none;
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 80;
}

.cookie-banner__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(79, 46, 27, 0.1);
    border-radius: 22px;
    background: rgba(255, 250, 243, 0.98);
    box-shadow: var(--shadow);
}

.cookie-banner__eyebrow {
    margin-bottom: 0.35rem;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cookie-banner__text {
    color: var(--muted);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-end;
}

.legal-page {
    padding: 4rem 0 5rem;
}

.legal-card {
    max-width: 860px;
    padding: 2rem;
    border: 1px solid rgba(79, 46, 27, 0.08);
    border-radius: 24px;
    background: rgba(255, 251, 246, 0.92);
    box-shadow: var(--shadow-soft);
}

.legal-card h1,
.legal-card h2 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.12;
}

.legal-card h1 {
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 3.3vw, 2.4rem);
}

.legal-card h2 {
    margin: 2rem 0 0.75rem;
    font-size: 1.12rem;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
}

.legal-card ul {
    padding-left: 1.2rem;
}

.legal-card li + li,
.legal-card p + p {
    margin-top: 0.7rem;
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        inset: 84px 1rem auto 1rem;
        display: grid;
        gap: 0.5rem;
        padding: 1rem;
        border: 1px solid rgba(79, 46, 27, 0.12);
        border-radius: 24px;
        background: rgba(255, 250, 243, 0.98);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    }

    .language-switch {
        margin-left: 0;
        width: fit-content;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition-delay: 0s, 0s, 0s;
    }

    .hero-grid,
    .story-grid,
    .contact-grid,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.65rem, 6vw, 2.4rem);
    }

    .cookie-banner__content {
        grid-template-columns: 1fr;
    }

    .cookie-banner__actions {
        justify-content: flex-start;
    }

}

@media (max-width: 640px) {
    .section-shell {
        padding: 3.5rem 0;
    }

    .header-bar {
        min-height: 76px;
    }

    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-visual {
        max-width: none;
        margin-left: 0;
        padding: 0.75rem;
    }

    .hero-visual img {
        aspect-ratio: 5 / 4;
        max-height: 220px;
    }

    .collection-card img {
        max-height: 150px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .card-copy {
        padding: 0.85rem 0.9rem 1rem;
    }

    .collection-card h3 {
        font-size: 1rem;
    }

    .collection-card p {
        font-size: 0.92rem;
    }

    .button {
        width: 100%;
    }

    .map-consent-actions,
    .legal-actions,
    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .cookie-banner__content,
    .map-consent-placeholder,
    .legal-card {
        padding: 1.4rem;
    }

    .contact-panel,
    .contact-form-card,
    .trust-card,
    .tip-card {
        padding: 1.4rem;
    }

    .hours-table th,
    .hours-table td {
        padding: 0.8rem 0.75rem;
        font-size: 0.94rem;
    }

    .floating-actions {
        right: 0.75rem;
        gap: 0.6rem;
    }

    .floating-action {
        width: 50px;
        height: 50px;
    }

    .floating-action svg {
        width: 22px;
        height: 22px;
    }
}
