:root {
    --gold: #D4AF37;
    --gold-light: #e4c152;
    --black: #111111;
    --white: #ffffff;
    --gray: #f5f5f5;
    --gray-dark: #666666;
    --text-dark: #222222;
    --text-light: #777777;
    --shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
    --radius-large: 28px;
    --radius-medium: 18px;
    --radius-small: 12px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 24%),
        radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.12), transparent 28%),
        linear-gradient(180deg, #fbfaf6 0%, #ffffff 44%, #f8f5ec 100%);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    line-height: 1.6;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 66px;
    padding: 0.8rem 0;
}

.brand img,
.footer-logo {
    width: 58px;
    height: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.35rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.98rem;
}

.site-nav a {
    color: var(--text-dark);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    border: 0;
    background: transparent;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.95rem 1.4rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.button-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.25);
}

.button-dark {
    background: transparent;
    color: var(--black);
    border-color: rgba(17, 17, 17, 0.16);
}

.button-small {
    padding: 0.8rem 1.15rem;
}

.button-full {
    width: 100%;
}

.hero-section,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-section {
    padding: 5.5rem 0 4rem;
}

.hero-section::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(17, 17, 17, 0.04), transparent 28%),
        linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent 60%);
    pointer-events: none;
}

.hero-grid,
.split-grid,
.contact-layout,
.article-layout {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.8fr);
    align-items: start;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 800;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(1.95rem, 4vw, 3.55rem);
    max-width: 15ch;
}

.page-hero h1,
.compact-hero h1,
.blog-card h2,
.article-page h1 {
    max-width: none;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.7rem);
}

h3 {
    font-size: 1.35rem;
}

.hero-description,
.section-heading p,
.page-hero p,
.article-content p,
.legal-layout p,
.faq-card p,
.blog-card p,
.audience-card p,
.service-card p,
.pillar-card p,
.process-card p,
.contact-note,
.footer-copy,
.empty-state p,
.hero-panel p,
.contact-card p {
    color: var(--text-light);
    font-size: 1.03rem;
}

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

.hero-points {
    display: grid;
    gap: 0.85rem;
    padding: 0;
    margin: 0;
    list-style: none;
    max-width: 50rem;
}

.hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-dark);
}

.hero-points li::before {
    content: "";
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: var(--gold);
}

.hero-panel,
.service-card,
.pillar-card,
.process-card,
.audience-card,
.contact-form,
.blog-card,
.faq-card,
.aside-card,
.empty-state {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

.hero-panel {
    position: relative;
    padding: 1.35rem;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(32, 32, 32, 0.94)),
        linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent 45%);
    color: var(--white);
}

.hero-panel h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.65rem);
    line-height: 1.08;
}

.hero-panel h2,
.hero-panel strong,
.panel-mark,
.contact-card span {
    color: inherit;
}

.panel-mark {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0.62rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.16);
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
}

.panel-stack {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.8rem;
}

.contact-card {
    padding: 0.72rem 0.9rem;
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card span,
.blog-meta span,
.article-meta span {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-card strong {
    display: block;
    margin-bottom: 0.08rem;
    font-size: 1.04rem;
}

.panel-footnote {
    margin: 0.7rem 0 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
}

.band-section {
    padding-bottom: 1rem;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.band-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.72);
    color: var(--black);
    font-weight: 700;
}

.section {
    padding: 5rem 0;
}

.section-dark {
    background: linear-gradient(180deg, #101010 0%, #171717 100%);
    color: var(--white);
}

.section-dark .section-heading p,
.section-dark .pillar-card p,
.section-dark .faq-card p {
    color: rgba(255, 255, 255, 0.72);
}

.section-dark .pillar-card,
.section-dark .faq-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.section-muted {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0));
}

.section-heading {
    max-width: 980px;
    margin-bottom: 2.2rem;
}

.left-tight {
    max-width: 680px;
}

.service-grid,
.pillar-grid,
.process-grid,
.audience-grid,
.faq-grid,
.blog-list-grid {
    display: grid;
    gap: 1.25rem;
}

.service-grid,
.audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar-grid,
.blog-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.pillar-card,
.process-card,
.audience-card,
.faq-card,
.blog-card {
    padding: 1.55rem;
}

.service-card h3,
.pillar-card h3,
.process-card h3,
.audience-card h3,
.faq-card h3,
.blog-card h3 {
    margin-bottom: 0.8rem;
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 1.1rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.14);
    color: var(--gold);
    font-weight: 800;
}

.split-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
}

.blog-preview {
    display: grid;
    gap: 1rem;
}

.blog-meta,
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 0.8rem;
}

.blog-meta span,
.article-meta span {
    color: var(--text-light);
    background: rgba(17, 17, 17, 0.05);
    padding: 0.38rem 0.55rem;
    border-radius: 999px;
}

.text-link {
    color: var(--black);
    font-weight: 700;
}

.contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 0.75rem;
    margin: 1.8rem 0;
}

.contact-list a,
.contact-list span {
    font-weight: 700;
}

.contact-form {
    padding: 1.75rem;
}

.form-row {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

label {
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: var(--radius-small);
    padding: 0.95rem 1rem;
    font: inherit;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.92);
}

textarea {
    resize: vertical;
    min-height: 160px;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1.2rem 0 1rem;
    font-weight: 400;
}

.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
}

.form-status {
    min-height: 1.5rem;
    margin: 1rem 0 0;
    font-weight: 700;
}

.form-status.is-error {
    color: #ab1e1e;
}

.form-status.is-success {
    color: #2d6a3f;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.compact-hero {
    padding: 3.8rem 0 1.8rem;
}

.hero-copy h1 {
    max-width: none;
}

.page-hero h1,
.compact-hero h1,
.article-page h1 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.14;
}

.section-heading h2 {
    max-width: none;
    line-height: 1.14;
}

.blog-card-large h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.article-page .page-hero {
    padding-bottom: 2rem;
}

.article-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
}

.article-content {
    padding: 2rem;
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow);
}

.article-content h2 {
    margin: 2rem 0 1rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.article-content ul {
    padding-left: 1.2rem;
    color: var(--text-dark);
}

.article-content blockquote {
    margin: 1.8rem 0;
    padding: 1.2rem 1.3rem;
    border-left: 4px solid var(--gold);
    background: rgba(212, 175, 55, 0.08);
    color: var(--text-dark);
    font-weight: 700;
}

.aside-card {
    position: sticky;
    top: 104px;
    padding: 1.6rem;
}

.legal-layout {
    max-width: 820px;
}

.legal-layout h2 {
    margin: 2rem 0 0.9rem;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.large-empty {
    padding: 2rem;
}

.site-footer {
    padding: 2.2rem 0 1.2rem;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
    gap: 1.8rem;
    align-items: start;
}

.footer-list {
    display: grid;
    gap: 0.55rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    background: #1f7a45;
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 18px 30px rgba(31, 122, 69, 0.22);
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 55;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 18px;
    background: rgba(17, 17, 17, 0.96);
    color: var(--white);
    box-shadow: var(--shadow);
    max-width: 920px;
    margin: 0 auto;
}

.cookie-banner.is-hidden,
.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex: 0 0 auto;
}

.cookie-banner a {
    color: var(--gold-light);
    text-decoration: underline;
}

@media (max-width: 980px) {
    .hero-grid,
    .split-grid,
    .contact-layout,
    .article-layout,
    .footer-grid,
    .service-grid,
    .audience-grid,
    .pillar-grid,
    .process-grid,
    .faq-grid,
    .blog-list-grid,
    .band-grid {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 84px;
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: var(--radius-medium);
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(17, 17, 17, 0.08);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .band-grid span {
        justify-content: flex-start;
    }

    .aside-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding-top: 4rem;
    }

    .header-bar {
        min-height: 62px;
        padding: 0.65rem 0;
    }

    .brand img,
    .footer-logo {
        width: 50px;
    }

    .hero-panel,
    .contact-form,
    .article-content {
        padding: 1.3rem;
    }

    .button,
    .floating-whatsapp {
        width: 100%;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

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