:root {
    --bg: #f6f1eb;
    --bg-alt: #efe5d8;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: #fffdf9;
    --surface-dark: #17110d;
    --line: rgba(44, 28, 17, 0.12);
    --text: #231713;
    --text-soft: #685247;
    --text-inverse: #f8f2eb;
    --accent: #a46b43;
    --accent-dark: #7f4d2c;
    --shadow: 0 24px 80px rgba(42, 25, 16, 0.12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(164, 107, 67, 0.18), transparent 28%),
        radial-gradient(circle at right 20%, rgba(86, 58, 40, 0.10), transparent 24%),
        linear-gradient(180deg, #fbf7f1 0%, #f3ece3 100%);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    margin: 0 0 0.75rem;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

p {
    margin: 0 0 1rem;
    color: var(--text-soft);
}

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

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(20px);
    background: rgba(251, 247, 241, 0.78);
    border-bottom: 1px solid rgba(36, 24, 17, 0.08);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 88px;
}

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

.brand-mark__eyebrow,
.section-badge,
.card-kicker,
.footer-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    color: var(--accent-dark);
}

.brand-mark__name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 700;
}

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

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

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.95rem 1.4rem;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.nav-cta:hover {
    transform: translateY(-1px);
}

.button-primary,
.nav-cta {
    background: var(--surface-dark);
    color: var(--text-inverse) !important;
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.6);
}

.hero-section,
.page-hero {
    padding: 4.5rem 0 2rem;
}

.hero-grid,
.split-layout,
.contact-layout,
.footer-grid,
.cta-panel,
.quote-panel {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
}

.hero-copy h1,
.page-hero h1 {
    font-size: clamp(2.9rem, 5vw, 5.8rem);
}

.hero-lead,
.page-hero p {
    max-width: 62ch;
    font-size: 1.08rem;
}

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

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

.hero-stats li,
.editorial-card,
.content-card,
.pricing-card,
.testimonial-card,
.journal-item,
.contact-form-panel,
.quote-panel,
.cta-panel,
.service-item,
.masonry-card {
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero-stats li {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
}

.hero-stats strong {
    display: block;
    font-size: 1.5rem;
    font-family: Georgia, "Times New Roman", serif;
}

.hero-visual {
    display: grid;
    gap: 1.25rem;
}

.editorial-card {
    min-height: 260px;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    background:
        linear-gradient(180deg, rgba(255, 247, 241, 0.28), rgba(20, 16, 12, 0.7)),
        linear-gradient(120deg, #d7b393 0%, #7d573f 100%);
    color: var(--text-inverse);
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.editorial-card--small {
    min-height: 180px;
}

.editorial-card strong {
    font-size: 2rem;
    font-family: Georgia, "Times New Roman", serif;
}

.section {
    padding: 2.5rem 0;
}

.section-soft {
    background: rgba(255, 249, 243, 0.58);
}

.section-dark {
    background: #1d1410;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.section-heading h2,
.quote-panel h2,
.cta-panel h2,
.page-hero--narrow h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading--light h2,
.section-dark p,
.section-dark strong,
.section-dark span {
    color: var(--text-inverse);
}

.card-grid,
.pricing-grid,
.testimonial-grid,
.masonry-grid {
    display: grid;
    gap: 1.4rem;
}

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

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

.content-card,
.pricing-card,
.testimonial-card,
.journal-item,
.service-item,
.masonry-card,
.contact-form-panel {
    border-radius: var(--radius-lg);
    padding: 1.6rem;
}

.content-card--gallery {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background:
        linear-gradient(180deg, rgba(255, 248, 242, 0.18), rgba(23, 17, 13, 0.72)),
        linear-gradient(135deg, #cab19e 0%, #6d4a35 100%);
}

.content-card--gallery h2,
.content-card--gallery h3,
.content-card--gallery p,
.content-card--gallery .card-meta {
    color: var(--text-inverse);
}

.content-card--soft {
    background: rgba(255, 253, 249, 0.96);
}

.service-stack {
    display: grid;
    gap: 1rem;
}

.service-item {
    padding: 1.2rem 1.4rem;
}

.quote-panel,
.cta-panel {
    grid-template-columns: 1.2fr auto;
    align-items: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
}

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

.testimonial-card {
    min-height: 220px;
    background: rgba(255, 255, 255, 0.08);
}

.page-hero--narrow {
    padding-bottom: 0;
}

.pricing-card--featured {
    background: linear-gradient(180deg, rgba(164, 107, 67, 0.1), rgba(255, 255, 255, 0.85));
}

.price {
    font-size: 1.8rem;
    font-family: Georgia, "Times New Roman", serif;
    margin: 1rem 0;
}

.feature-list {
    display: grid;
    gap: 0.7rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--text-soft);
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.journal-list {
    display: grid;
    gap: 1.2rem;
}

.article-shell {
    max-width: 820px;
}

.contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-control {
    width: 100%;
    border: 1px solid rgba(44, 28, 17, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.9rem 1rem;
    font: inherit;
    color: var(--text);
}

.form-control:focus {
    outline: 2px solid rgba(164, 107, 67, 0.18);
    border-color: var(--accent);
}

.form-error {
    color: #a13232;
    font-size: 0.9rem;
}

.flash-stack {
    margin-top: 1rem;
}

.flash {
    border-radius: 18px;
    padding: 1rem 1.2rem;
    background: #e9f6ee;
    color: #124726;
}

.footer-grid {
    grid-template-columns: 1.2fr 0.7fr 0.7fr;
    padding: 3rem 0 2rem;
}

.site-footer {
    margin-top: 3rem;
    background: #1a130f;
    color: var(--text-inverse);
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer h3 {
    color: rgba(248, 242, 235, 0.82);
}

.footer-links {
    display: grid;
    gap: 0.65rem;
}

.footer-bottom {
    padding: 1rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.masonry-card__placeholder {
    min-height: 220px;
    border-radius: 24px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ead7c9 0%, #8b6248 100%);
}

@media (max-width: 980px) {
    .hero-grid,
    .split-layout,
    .contact-layout,
    .footer-grid,
    .quote-panel,
    .cta-panel,
    .card-grid,
    .card-grid--portfolio,
    .pricing-grid,
    .masonry-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: end;
    }

    .hero-stats,
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .nav-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 0.8rem 1rem;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 2.4rem;
    }

    .section,
    .hero-section,
    .page-hero {
        padding: 2rem 0;
    }
}

.detail-image {
    width: 100%;
    border-radius: 28px;
    margin-bottom: 1.25rem;
    object-fit: cover;
}

.social-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.social-actions--stacked {
    margin-top: 1.5rem;
}

.floating-socials {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floating-social {
    border-radius: 999px;
    padding: 0.9rem 1.15rem;
    font-weight: 700;
    box-shadow: 0 14px 40px rgba(22, 17, 13, 0.22);
}

.floating-social--instagram {
    background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
    color: #ffffff;
}

.floating-social--whatsapp {
    background: #1fa855;
    color: #ffffff;
}

@media (max-width: 720px) {
    .floating-socials {
        right: 0.8rem;
        bottom: 0.8rem;
    }

    .floating-social {
        padding: 0.8rem 1rem;
        font-size: 0.92rem;
    }
}

.hero-photo-frame {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    display: block;
}

.hero-photo-frame__caption {
    position: absolute;
    inset: auto 1.4rem 1.4rem 1.4rem;
    padding: 1.2rem 1.25rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(17, 12, 10, 0.26), rgba(17, 12, 10, 0.72));
    color: #fff8f1;
    backdrop-filter: blur(10px);
}

.hero-photo-frame__caption strong {
    display: block;
    font-size: 1.6rem;
    color: #fff8f1;
}

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

.gallery-showcase-card,
.gallery-wall-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
}

.gallery-showcase-card__media,
.gallery-wall-card__media {
    display: block;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #ead7c9 0%, #8b6248 100%);
}

.gallery-showcase-card__media img,
.gallery-wall-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-showcase-card__body,
.gallery-wall-card__body {
    padding: 1.4rem;
}

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

.gallery-wall-card:nth-child(2),
.gallery-wall-card:nth-child(5) {
    transform: translateY(2rem);
}

.gallery-wall-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, #ead7c9 0%, #8b6248 100%);
}

.gallery-wall-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-soft);
    font-size: 0.95rem;
}

@media (max-width: 980px) {
    .gallery-showcase-grid,
    .gallery-wall {
        grid-template-columns: 1fr;
    }

    .gallery-wall-card:nth-child(2),
    .gallery-wall-card:nth-child(5) {
        transform: none;
    }
}

.site-nav a.is-active {
    color: var(--text);
    font-weight: 700;
}

.nav-cta.is-active-cta {
    box-shadow: 0 0 0 4px rgba(164, 107, 67, 0.12);
}

.page-hero--framed {
    padding-top: 3.2rem;
}

.page-hero__grid,
.gallery-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 1.5rem;
    align-items: start;
}

.info-panel,
.detail-sidebar__card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 252, 248, 0.9);
    box-shadow: var(--shadow);
    padding: 1.6rem;
}

.info-panel__label,
.pill-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    background: rgba(164, 107, 67, 0.12);
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-panel strong {
    display: block;
    margin: 0.85rem 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.gallery-showcase-grid--featured {
    align-items: stretch;
}

.gallery-showcase-card--featured .gallery-showcase-card__media {
    aspect-ratio: 4 / 4.8;
}

.gallery-showcase-card__topline,
.gallery-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.gallery-card-actions {
    margin-top: 1rem;
}

.text-link,
.back-link {
    font-weight: 700;
    color: var(--accent-dark);
}

.back-link {
    display: inline-flex;
    margin-bottom: 1rem;
}

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

.compact-list__item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    padding: 1.2rem 1.3rem;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.75);
    padding: 0.75rem 1rem;
    color: var(--text-soft);
    transition: all 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    background: var(--surface-dark);
    color: var(--text-inverse);
    border-color: var(--surface-dark);
}

.section-tight-top {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.article-shell--wide {
    max-width: 100%;
}

.detail-image--hero {
    min-height: 520px;
    max-height: 640px;
    object-fit: cover;
}

.detail-sidebar {
    position: sticky;
    top: 110px;
}

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

.masonry-card--photo {
    overflow: hidden;
    padding: 0;
}

.masonry-image {
    margin-bottom: 0;
    border-radius: 0;
    min-height: 360px;
    max-height: 520px;
    object-fit: cover;
}

.masonry-card__body {
    padding: 1.2rem 1.3rem 1.4rem;
}

@media (max-width: 980px) {
    .page-hero__grid,
    .gallery-detail-layout,
    .masonry-grid--immersive {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }
}

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

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
}

.nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--surface-dark);
    border-radius: 999px;
}

.lightbox-trigger-card {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 7, 0.82);
    backdrop-filter: blur(10px);
}

.lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, 1120px);
    margin: 4vh auto;
    padding: 1rem;
}

.lightbox__image {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.lightbox__close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--surface-dark);
    font-size: 1.7rem;
    cursor: pointer;
}

.lightbox__caption {
    margin-top: 1rem;
    text-align: center;
    color: #f8f2eb;
}

body.lightbox-open {
    overflow: hidden;
}

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

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        padding: 1rem;
        border-radius: 24px;
        border: 1px solid var(--line);
        background: rgba(255, 251, 246, 0.96);
        box-shadow: var(--shadow);
    }

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

    .site-nav a,
    .nav-cta {
        width: 100%;
        justify-content: flex-start;
    }
}

.hero-grid--refined {
    grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
    gap: 2.4rem;
    align-items: stretch;
}

.hero-copy--refined {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy--refined h1 {
    font-size: clamp(2.9rem, 4.9vw, 5.35rem);
    line-height: 0.98;
    max-width: 10.5ch;
    text-wrap: balance;
    margin-bottom: 1rem;
}

.hero-copy--refined .hero-lead {
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.7;
}

.hero-actions--compact {
    margin: 1.6rem 0 1.35rem;
}

.hero-stats--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.hero-stats--compact li {
    padding: 0.95rem 1rem;
}

.hero-stats--compact strong {
    font-size: 1.25rem;
}

.hero-visual--expanded {
    display: flex;
    align-items: stretch;
}

.hero-slider-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 172px;
    gap: 1rem;
    width: 100%;
}

.hero-photo-frame--wide {
    min-height: 660px;
}

.hero-photo-frame--wide img {
    min-height: 660px;
}

.hero-photo-frame__caption--compact {
    max-width: 320px;
    padding: 1rem 1.1rem;
}

.hero-photo-frame__caption--compact strong {
    font-size: 1.9rem;
    line-height: 1.08;
}

.hero-preview-rail {
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.hero-preview-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--line);
    min-height: 206px;
    background: linear-gradient(135deg, #ead7c9 0%, #8b6248 100%);
    box-shadow: var(--shadow);
}

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

.hero-preview-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.9rem;
    background: linear-gradient(180deg, rgba(17, 12, 10, 0.04), rgba(17, 12, 10, 0.72));
}

.hero-preview-card__overlay span,
.hero-preview-card__overlay strong {
    color: #fff8f1;
}

.hero-preview-card__overlay strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.02rem;
    line-height: 1.2;
}

@media (max-width: 1180px) {
    .hero-grid--refined {
        grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    }

    .hero-copy--refined h1 {
        font-size: clamp(2.8rem, 4.4vw, 4.6rem);
        max-width: 11.4ch;
    }

    .hero-slider-shell {
        grid-template-columns: minmax(0, 1fr) 148px;
    }
}

@media (max-width: 980px) {
    .hero-grid--refined,
    .hero-slider-shell {
        grid-template-columns: 1fr;
    }

    .hero-preview-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .hero-photo-frame--wide,
    .hero-photo-frame--wide img {
        min-height: 480px;
    }

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

@media (max-width: 720px) {
    .hero-copy--refined h1 {
        font-size: 2.65rem;
        line-height: 1.02;
    }

    .hero-preview-rail {
        grid-template-columns: 1fr;
    }

    .hero-preview-card {
        min-height: 170px;
    }

    .hero-photo-frame--wide,
    .hero-photo-frame--wide img {
        min-height: 380px;
    }
}

.hero-grid--refined {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 0.82fr);
    gap: 2rem;
    align-items: start;
}

.hero-copy--refined {
    min-width: 0;
    max-width: 100%;
    padding-right: 0.5rem;
}

.hero-copy--refined h1 {
    max-width: 8.6ch;
    font-size: clamp(2.8rem, 4.45vw, 4.95rem);
    line-height: 1.01;
    letter-spacing: -0.03em;
}

.hero-copy--refined .hero-lead {
    max-width: 31rem;
    font-size: 0.98rem;
}

.hero-visual--expanded {
    min-width: 0;
    width: 100%;
}

.hero-slider-shell {
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 0.85rem;
    align-items: stretch;
    width: 100%;
}

.hero-photo-frame--wide {
    min-width: 0;
    min-height: 620px;
}

.hero-photo-frame--wide img {
    min-height: 620px;
}

.hero-photo-frame__caption--compact {
    max-width: 290px;
}

.hero-preview-rail {
    gap: 0.75rem;
}

.hero-preview-card {
    min-height: 188px;
}

.hero-preview-card__overlay strong {
    font-size: 0.92rem;
}

@media (max-width: 1180px) {
    .hero-grid--refined {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.76fr);
        gap: 1.5rem;
    }

    .hero-copy--refined h1 {
        max-width: 9.2ch;
        font-size: clamp(2.55rem, 4vw, 4.2rem);
    }

    .hero-slider-shell {
        grid-template-columns: minmax(0, 1fr) 116px;
    }

    .hero-photo-frame--wide,
    .hero-photo-frame--wide img {
        min-height: 560px;
    }

    .hero-preview-card {
        min-height: 170px;
    }
}

@media (max-width: 980px) {
    .hero-grid--refined {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-copy--refined {
        padding-right: 0;
    }

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

    .hero-slider-shell {
        grid-template-columns: 1fr;
    }

    .hero-preview-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: none;
    }
}

@media (max-width: 720px) {
    .hero-copy--refined h1 {
        font-size: 2.55rem;
    }

    .hero-preview-rail {
        grid-template-columns: 1fr;
    }

    .hero-photo-frame--wide,
    .hero-photo-frame--wide img {
        min-height: 360px;
    }
}

.home-hero {
    padding-top: 2.6rem;
}

.home-hero__wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2rem;
    align-items: stretch;
}

.home-hero__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 0;
}

.home-hero__content h1 {
    max-width: 8.2ch;
    font-size: clamp(2.9rem, 4.25vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 1rem;
}

.home-hero__lead {
    max-width: 35rem;
    font-size: 1rem;
    line-height: 1.7;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.6rem 0 1.4rem;
}

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

.home-hero__stat {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    padding: 1rem 1rem 0.95rem;
}

.home-hero__stat strong {
    display: block;
    font-size: 1.3rem;
    font-family: Georgia, "Times New Roman", serif;
}

.home-hero__stat span {
    color: var(--text-soft);
}

.home-hero__stage {
    min-width: 0;
    display: flex;
}

.hero-slider {
    width: 100%;
    display: grid;
    gap: 1rem;
}

.hero-slider__viewport {
    position: relative;
    min-height: 680px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #ead7c9 0%, #8b6248 100%);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

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

.hero-slide__overlay {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 420px;
    border-radius: 28px;
    padding: 1.2rem 1.25rem;
    background: linear-gradient(180deg, rgba(17, 12, 10, 0.08), rgba(17, 12, 10, 0.76));
    backdrop-filter: blur(12px);
}

.hero-slide__overlay span,
.hero-slide__overlay h2,
.hero-slide__overlay p,
.hero-slide__link {
    color: #fff8f1;
}

.hero-slide__overlay h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.6rem);
    margin: 0.45rem 0 0.55rem;
}

.hero-slide__link {
    display: inline-flex;
    margin-top: 0.35rem;
    font-weight: 700;
}

.hero-slider__controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.hero-slider__arrow {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 1.7rem;
    color: var(--surface-dark);
    cursor: pointer;
}

.hero-slider__dots {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
}

.hero-slider__dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(36, 23, 18, 0.24);
    cursor: pointer;
}

.hero-slider__dot.is-active {
    width: 34px;
    background: var(--surface-dark);
}

.home-proof-strip {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.4rem;
    align-items: stretch;
}

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

.home-proof-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.home-proof-card strong {
    display: block;
    margin-bottom: 0.65rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
}

@media (max-width: 1180px) {
    .home-hero__wrap {
        grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
        gap: 1.5rem;
    }

    .home-hero__content h1 {
        max-width: 9.1ch;
        font-size: clamp(2.7rem, 3.9vw, 4.4rem);
    }

    .hero-slider__viewport {
        min-height: 600px;
    }
}

@media (max-width: 980px) {
    .home-hero__wrap,
    .home-proof-strip,
    .home-proof-strip__cards {
        grid-template-columns: 1fr;
    }

    .home-hero__content h1,
    .home-hero__lead {
        max-width: none;
    }

    .hero-slider__viewport {
        min-height: 500px;
    }
}

@media (max-width: 720px) {
    .home-hero {
        padding-top: 1.2rem;
    }

    .home-hero__content h1 {
        font-size: 2.55rem;
        line-height: 1.02;
    }

    .home-hero__stats {
        grid-template-columns: 1fr;
    }

    .hero-slider__viewport {
        min-height: 360px;
    }

    .hero-slide__overlay {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1rem;
    }

    .hero-slider__controls {
        gap: 0.7rem;
    }
}

.home-hero__shell {
    width: min(100% - 2rem, 1380px);
    margin: 0 auto;
}

.home-hero-slider {
    border-radius: 34px;
    background: linear-gradient(135deg, #bee7f2 0%, #d9f0f5 100%);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(36, 23, 18, 0.08);
    padding: 1.35rem;
}

.home-hero-slider__viewport {
    position: relative;
    min-height: 630px;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr) 200px;
    gap: 1.25rem;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
}

.home-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.home-hero-slide__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem 2rem 1.2rem;
}

.home-hero-slide__copy h1 {
    max-width: 8ch;
    font-size: clamp(3rem, 4.2vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    margin-bottom: 1rem;
}

.home-hero-slide__lead {
    max-width: 29rem;
    font-size: 1rem;
    line-height: 1.65;
}

.home-hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.home-hero-slide__visual {
    display: flex;
    align-items: end;
    justify-content: center;
    min-width: 0;
}

.home-hero-slide__visual img {
    width: 100%;
    max-width: 620px;
    height: 100%;
    max-height: 580px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
}

.home-hero-slide__visual--placeholder {
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(135deg, #ead7c9 0%, #8b6248 100%);
}

.home-hero-slide__aside {
    display: grid;
    align-content: start;
    gap: 0.9rem;
    padding-top: 0.4rem;
}

.hero-aside-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 0.8rem;
    align-items: stretch;
    border-radius: 20px;
    padding: 0.7rem;
    background: #1d4d94;
    color: #f8fbff;
    min-height: 112px;
}

.hero-aside-card--primary {
    background: #c81f62;
}

.hero-aside-card img {
    width: 74px;
    height: 100%;
    min-height: 86px;
    object-fit: cover;
    border-radius: 14px;
}

.hero-aside-card strong,
.hero-aside-card span,
.hero-aside-card small {
    display: block;
    color: inherit;
}

.hero-aside-card strong {
    font-size: 0.88rem;
    margin-bottom: 0.25rem;
}

.hero-aside-card span {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.hero-aside-card small {
    font-size: 0.74rem;
    opacity: 0.88;
}

.home-hero-slider__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0 0.25rem;
}

@media (max-width: 1280px) {
    .home-hero-slide {
        grid-template-columns: minmax(280px, 0.94fr) minmax(280px, 1fr) 176px;
    }

    .home-hero-slide__copy h1 {
        font-size: clamp(2.6rem, 3.8vw, 4.2rem);
        max-width: 8.7ch;
    }
}

@media (max-width: 1080px) {
    .home-hero-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-hero-slider__viewport {
        min-height: 920px;
    }

    .home-hero-slide__copy {
        padding: 1rem 0.4rem 0 0.4rem;
    }

    .home-hero-slide__copy h1,
    .home-hero-slide__lead {
        max-width: none;
    }

    .home-hero-slide__visual {
        order: 2;
    }

    .home-hero-slide__aside {
        order: 3;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .home-hero-slider {
        padding: 0.85rem;
        border-radius: 26px;
    }

    .home-hero-slider__viewport {
        min-height: 760px;
    }

    .home-hero-slide__copy h1 {
        font-size: 2.45rem;
        line-height: 1;
    }

    .home-hero-slide__visual img {
        max-height: 320px;
    }

    .home-hero-slide__aside {
        grid-template-columns: 1fr;
    }

    .hero-aside-card {
        min-height: 96px;
    }
}

.home-hero {
    padding: 1rem 0 2rem;
}

.home-hero__shell {
    width: min(100% - 1rem, 1560px);
    margin: 0 auto;
}

.home-hero-slider {
    position: relative;
    padding: 0;
    border-radius: 40px;
    background: linear-gradient(180deg, #cceefa 0%, #d9f4fb 100%);
    overflow: hidden;
    border: 1px solid rgba(36, 23, 18, 0.08);
    box-shadow: 0 28px 80px rgba(42, 25, 16, 0.12);
}

.home-hero-slider__viewport {
    position: relative;
    min-height: 700px;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(440px, 1.28fr) 220px;
    gap: 1.5rem;
    align-items: center;
    padding: 2.4rem 2.1rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.home-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.home-hero-slide__copy {
    min-width: 0;
    padding-left: 0.35rem;
}

.home-hero-slide__copy h1 {
    max-width: 7.3ch;
    font-size: clamp(2.7rem, 4vw, 4.55rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    margin-bottom: 1rem;
}

.home-hero-slide__lead {
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.7;
}

.home-hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.home-hero-slide__visual {
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}

.home-hero-slide__visual img,
.home-hero-slide__visual--placeholder {
    width: 100%;
    height: min(100%, 620px);
    min-height: 620px;
    border-radius: 34px;
    object-fit: cover;
    background: linear-gradient(135deg, #ead7c9 0%, #8b6248 100%);
}

.home-hero-slide__aside {
    align-self: start;
    padding-top: 0.65rem;
}

.hero-aside-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 0.85rem;
    min-height: 136px;
    border-radius: 24px;
    padding: 0.82rem;
    background: linear-gradient(180deg, #d81d67 0%, #b41957 100%);
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(120, 21, 58, 0.24);
}

.hero-aside-card img {
    width: 82px;
    height: 100%;
    min-height: 108px;
    object-fit: cover;
    border-radius: 16px;
}

.hero-aside-card strong,
.hero-aside-card span,
.hero-aside-card small {
    color: inherit;
    display: block;
}

.hero-aside-card strong {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.hero-aside-card span {
    font-size: 1.6rem;
    line-height: 1.05;
    font-family: Georgia, "Times New Roman", serif;
    margin-bottom: 0.55rem;
}

.hero-aside-card small {
    font-size: 0.74rem;
    opacity: 0.9;
    line-height: 1.35;
}

.home-hero-slider__controls {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 1.3rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hero-slider__arrow {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(36, 23, 18, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--surface-dark);
    cursor: pointer;
    font-size: 1.75rem;
    backdrop-filter: blur(10px);
}

.hero-slider__dots {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(10px);
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(36, 23, 18, 0.24);
    cursor: pointer;
}

.hero-slider__dot.is-active {
    width: 34px;
    background: var(--surface-dark);
}

@media (max-width: 1360px) {
    .home-hero-slide {
        grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.14fr) 196px;
        padding: 2rem 1.7rem 1.8rem;
    }

    .home-hero-slide__copy h1 {
        font-size: clamp(2.5rem, 3.5vw, 4rem);
        max-width: 7.8ch;
    }

    .home-hero-slide__visual img,
    .home-hero-slide__visual--placeholder {
        min-height: 560px;
    }
}

@media (max-width: 1100px) {
    .home-hero-slider__viewport {
        min-height: 920px;
    }

    .home-hero-slide {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        padding: 1.5rem 1.3rem 5.25rem;
    }

    .home-hero-slide__copy,
    .home-hero-slide__aside {
        padding-left: 0;
    }

    .home-hero-slide__copy h1,
    .home-hero-slide__lead {
        max-width: none;
    }

    .home-hero-slide__visual {
        order: 1;
    }

    .home-hero-slide__copy {
        order: 2;
    }

    .home-hero-slide__aside {
        order: 3;
    }

    .home-hero-slide__visual img,
    .home-hero-slide__visual--placeholder {
        min-height: 480px;
    }

    .hero-aside-card {
        max-width: 360px;
    }
}

@media (max-width: 720px) {
    .home-hero__shell {
        width: min(100% - 0.5rem, 100%);
    }

    .home-hero-slider {
        border-radius: 26px;
    }

    .home-hero-slider__viewport {
        min-height: 780px;
    }

    .home-hero-slide {
        padding: 1rem 1rem 5rem;
    }

    .home-hero-slide__copy h1 {
        font-size: 2.35rem;
        line-height: 1;
    }

    .home-hero-slide__visual img,
    .home-hero-slide__visual--placeholder {
        min-height: 320px;
        border-radius: 24px;
    }

    .hero-aside-card {
        grid-template-columns: 72px 1fr;
        min-height: 110px;
        border-radius: 20px;
    }

    .hero-aside-card span {
        font-size: 1.3rem;
    }

    .home-hero-slider__controls {
        left: 1rem;
        right: 1rem;
        bottom: 0.9rem;
    }
}

.home-hero {
    padding: 0.85rem 0 2rem;
}

.home-hero__shell {
    width: min(100% - 0.75rem, 1600px);
}

.home-hero-slider {
    border-radius: 40px;
    background: #d7eef6;
    padding: 0;
}

.home-hero-slider__viewport {
    min-height: 760px;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    padding: 0;
}

.home-hero-slide__media,
.home-hero-slide__media img,
.home-hero-slide__visual--placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero-slide__media img,
.home-hero-slide__visual--placeholder {
    object-fit: cover;
    background: linear-gradient(135deg, #ead7c9 0%, #8b6248 100%);
}

.home-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            90deg,
            rgba(245, 250, 252, 0.30) 0%,
            rgba(245, 250, 252, 0.20) 22%,
            rgba(245, 250, 252, 0.10) 58%,
            rgba(245, 250, 252, 0.5) 88%,
            rgba(245, 250, 252, 0) 100%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.03) 0%,
            rgba(10, 8, 7, 0.08) 100%
        );
    background-size: 25% 100%, 25% 100%;
    background-position: left top, left top;
    background-repeat: no-repeat, no-repeat;
}

.home-hero-slide__copy,
.home-hero-slide__aside {
    position: relative;
    z-index: 2;
}

.home-hero-slide__copy {
    width: min(100%, 640px);
    padding: 6rem 0 0 4.5rem;
}

.home-hero-slide__copy h1 {
    max-width: 7.2ch;
    font-size: clamp(2.9rem, 4.2vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.home-hero-slide__lead {
    max-width: 31rem;
    font-size: 1.02rem;
    line-height: 1.72;
}

.home-hero-slide__actions {
    margin-top: 1.7rem;
}

.home-hero-slide__aside {
    position: absolute;
    top: 3.2rem;
    right: 3rem;
    width: min(100%, 260px);
}

.hero-aside-card {
    grid-template-columns: 86px 1fr;
    min-height: 140px;
    border-radius: 26px;
    padding: 0.85rem;
    background: linear-gradient(180deg, rgba(216, 29, 103, 0.94) 0%, rgba(180, 25, 87, 0.96) 100%);
    box-shadow: 0 24px 50px rgba(120, 21, 58, 0.28);
    backdrop-filter: blur(10px);
}

.hero-aside-card img {
    width: 86px;
    min-height: 112px;
    border-radius: 18px;
}

.home-hero-slider__controls {
    position: absolute;
    left: 2.2rem;
    right: 2.2rem;
    bottom: 1.35rem;
    z-index: 3;
}

@media (max-width: 1200px) {
    .home-hero-slider__viewport {
        min-height: 680px;
    }

    .home-hero-slide__copy {
        width: min(100%, 560px);
        padding: 4.5rem 0 0 3rem;
    }

    .home-hero-slide__copy h1 {
        font-size: clamp(2.6rem, 3.9vw, 4.35rem);
    }

    .home-hero-slide__aside {
        top: 2.2rem;
        right: 2.2rem;
        width: 220px;
    }
}

@media (max-width: 900px) {
    .home-hero-slider__viewport {
        min-height: 760px;
    }

    .home-hero-slide__overlay {
    background-image:
        linear-gradient(
            180deg,
            rgba(246, 250, 252, 0.92) 0%,
            rgba(246, 250, 252, 0.54) 40%,
            rgba(20, 14, 10, 0.24) 100%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(10, 8, 7, 0.12) 100%
        );
    background-size: 100% 100%, 100% 100%;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

    .home-hero-slide__copy {
        width: auto;
        padding: 3rem 1.4rem 0;
    }

    .home-hero-slide__copy h1,
    .home-hero-slide__lead {
        max-width: none;
    }

    .home-hero-slide__aside {
        top: auto;
        right: auto;
        left: 1.4rem;
        bottom: 5.4rem;
        width: min(100% - 2.8rem, 320px);
    }
}

@media (max-width: 720px) {
    .home-hero__shell {
        width: min(100% - 0.35rem, 100%);
    }

    .home-hero-slider {
        border-radius: 26px;
    }

    .home-hero-slider__viewport {
        min-height: 690px;
    }

    .home-hero-slide__copy {
        padding: 2.2rem 1rem 0;
    }

    .home-hero-slide__copy h1 {
        font-size: 2.35rem;
        line-height: 0.98;
    }

    .home-hero-slide__aside {
        left: 1rem;
        bottom: 4.9rem;
        width: min(100% - 2rem, 280px);
    }

    .hero-aside-card {
        grid-template-columns: 72px 1fr;
        min-height: 112px;
        border-radius: 20px;
    }

    .hero-aside-card img {
        width: 72px;
        min-height: 92px;
    }

    .hero-aside-card span {
        font-size: 1.28rem;
    }

    .home-hero-slider__controls {
        left: 1rem;
        right: 1rem;
        bottom: 0.9rem;
    }
}

.home-hero {
    padding: 0;
}

.home-hero__shell {
    width: 100%;
    max-width: none;
}

.home-hero-slider {
    width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
}

.home-hero-slider__viewport {
    min-height: calc(100vh - 88px);
    max-height: calc(100vh - 88px);
}

.home-hero-slide__media,
.home-hero-slide__media img,
.home-hero-slide__visual--placeholder {
    border-radius: 0;
}


.home-hero-slide__copy {
    width: min(100%, 720px);
    padding: 8.5rem 0 0 6vw;
}

.home-hero-slide__copy h1 {
    max-width: 7.2ch;
    font-size: clamp(3.2rem, 5vw, 6rem);
}

.home-hero-slide__lead {
    max-width: 34rem;
    font-size: 1.05rem;
}

.home-hero-slide__aside {
    top: 3.5rem;
    right: 4vw;
    width: 280px;
}

.home-hero-slider__controls {
    left: 4vw;
    right: 4vw;
    bottom: 1.6rem;
}

@media (max-width: 1200px) {
    .home-hero-slider__viewport {
        min-height: calc(100vh - 88px);
        max-height: none;
    }

    .home-hero-slide__copy {
        padding: 7rem 0 0 4vw;
    }

    .home-hero-slide__copy h1 {
        font-size: clamp(2.9rem, 4.6vw, 4.8rem);
    }

    .home-hero-slide__aside {
        right: 3vw;
        width: 240px;
    }
}

@media (max-width: 900px) {
    .home-hero-slider__viewport {
        min-height: calc(100vh - 80px);
    }

    .home-hero-slide__copy {
        padding: 5.5rem 1.4rem 0;
    }

    .home-hero-slide__aside {
        left: 1.4rem;
        right: auto;
        bottom: 5.8rem;
        top: auto;
        width: min(100% - 2.8rem, 340px);
    }

    .home-hero-slider__controls {
        left: 1.4rem;
        right: 1.4rem;
    }
}

@media (max-width: 720px) {
    .home-hero-slider__viewport {
        min-height: calc(100vh - 76px);
    }

    .home-hero-slide__copy {
        padding: 4.8rem 1rem 0;
    }

    .home-hero-slide__copy h1 {
        font-size: 2.55rem;
        max-width: 8ch;
    }

    .home-hero-slide__lead {
        font-size: 0.98rem;
    }

    .home-hero-slide__aside {
        left: 1rem;
        bottom: 5.2rem;
        width: min(100% - 2rem, 280px);
    }

    .home-hero-slider__controls {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

.home-hero-slide__copy {
    width: min(100%, 620px);
    padding: 7.2rem 0 0 5vw;
}

.home-hero-slide__copy h1 {
    max-width: 7.8ch;
    font-size: clamp(2.55rem, 4vw, 4.6rem);
    line-height: 0.95;
    margin-bottom: 0.9rem;
}

.home-hero-slide__lead {
    max-width: 30rem;
    font-size: 0.96rem;
    line-height: 1.68;
}

.section-badge {
    font-size: 0.68rem;
}

.hero-aside-card {
    grid-template-columns: 78px 1fr;
    min-height: 126px;
    padding: 0.8rem;
}

.hero-aside-card img {
    width: 78px;
    min-height: 100px;
}

.hero-aside-card strong {
    font-size: 0.82rem;
}

.hero-aside-card span {
    font-size: 1.35rem;
    line-height: 1.05;
}

.hero-aside-card small {
    font-size: 0.72rem;
}

@media (max-width: 1200px) {
    .home-hero-slide__copy {
        padding: 6.1rem 0 0 4vw;
    }

    .home-hero-slide__copy h1 {
        font-size: clamp(2.35rem, 3.7vw, 3.95rem);
    }
}

@media (max-width: 720px) {
    .home-hero-slide__copy {
        padding: 4.25rem 1rem 0;
    }

    .home-hero-slide__copy h1 {
        font-size: 2.1rem;
        max-width: 9ch;
    }

    .home-hero-slide__lead {
        font-size: 0.92rem;
    }

    .hero-aside-card span {
        font-size: 1.15rem;
    }
}

.pricing-card--interactive {
    position: relative;
}

.pricing-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.service-favorite-button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-soft);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-favorite-button:hover {
    transform: translateY(-1px);
}

.service-favorite-button.is-active {
    background: rgba(200, 31, 98, 0.14);
    border-color: rgba(200, 31, 98, 0.34);
    color: #c81f62;
}

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

.service-action-button {
    min-width: 142px;
}

.service-card-feedback {
    margin-top: 0.85rem;
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 720px) {
    .service-card-actions {
        flex-direction: column;
    }

    .service-action-button {
        width: 100%;
    }
}

.services-page-hero__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    align-items: end;
}

.services-hero-note {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 252, 248, 0.84);
    box-shadow: var(--shadow);
    padding: 1.5rem 1.6rem;
}

.services-hero-note strong {
    display: block;
    margin-bottom: 0.55rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

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

.services-card {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    padding: 1.7rem;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(251, 247, 241, 0.92) 100%);
    box-shadow: 0 28px 70px rgba(42, 25, 16, 0.10);
}

.services-card--featured {
    background:
        radial-gradient(circle at top right, rgba(164, 107, 67, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(247, 239, 229, 0.96) 100%);
}

.services-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.services-card__header h2 {
    margin-bottom: 0;
    font-size: clamp(1.7rem, 2vw, 2.15rem);
}

.services-card__summary-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: start;
}

.services-card__summary {
    margin: 0;
    font-size: 1rem;
    line-height: 1.72;
}

.services-card__price-badge {
    min-width: 148px;
    border: 1px solid rgba(164, 107, 67, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    padding: 0.9rem 1rem;
    text-align: right;
}

.services-card__price-badge span {
    display: block;
    color: var(--text-soft);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-card__price-badge strong {
    display: block;
    margin-top: 0.3rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    color: var(--text);
}

.services-card__body {
    display: grid;
    gap: 1.2rem;
}

.services-card__description p:last-child {
    margin-bottom: 0;
}

.services-card__deliverables {
    border-top: 1px solid rgba(44, 28, 17, 0.08);
    padding-top: 1.1rem;
}

.services-card__label {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-list--soft {
    gap: 0.8rem;
}

.feature-list--soft li {
    padding-left: 1.2rem;
}

.services-card__footer {
    margin-top: auto;
    border-top: 1px solid rgba(44, 28, 17, 0.08);
    padding-top: 1rem;
}

.service-card-actions--refined {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-action-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 50px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(44, 28, 17, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.service-action-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(164, 107, 67, 0.28);
}

.service-action-chip--accent {
    background: var(--surface-dark);
    color: var(--text-inverse);
    border-color: var(--surface-dark);
}

.service-action-chip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(44, 28, 17, 0.08);
    font-size: 0.92rem;
}

.service-action-chip--accent .service-action-chip__icon {
    background: rgba(255, 255, 255, 0.12);
}

.service-favorite-button {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.94);
}

.service-card-feedback {
    margin-top: 0.9rem;
}

@media (max-width: 980px) {
    .services-page-hero__shell,
    .services-catalog,
    .services-card__summary-row {
        grid-template-columns: 1fr;
    }

    .services-card__price-badge {
        text-align: left;
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .services-card {
        padding: 1.35rem;
        border-radius: 26px;
    }

    .services-card__header h2 {
        font-size: 1.5rem;
    }

    .service-card-actions--refined {
        flex-direction: column;
    }

    .service-action-chip {
        width: 100%;
        justify-content: center;
    }
}

:root {
    --bg: #f3f1ed;
    --bg-alt: #e8e3dc;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #fcfbf8;
    --surface-dark: #16181c;
    --line: rgba(33, 37, 42, 0.12);
    --text: #171a1f;
    --text-soft: #616873;
    --text-inverse: #f5f2ed;
    --accent: #7a6254;
    --accent-dark: #5c4a40;
    --shadow: 0 24px 70px rgba(22, 24, 28, 0.10);
}

body {
    background:
        radial-gradient(circle at top left, rgba(122, 98, 84, 0.10), transparent 30%),
        radial-gradient(circle at right 18%, rgba(74, 83, 92, 0.08), transparent 24%),
        linear-gradient(180deg, #f8f6f2 0%, #efebe5 100%);
}

.site-header {
    background: rgba(248, 246, 242, 0.82);
    border-bottom: 1px solid rgba(22, 24, 28, 0.08);
}

.section-soft {
    background: rgba(244, 241, 236, 0.72);
}

.section-dark,
.site-footer {
    background: #171a1f;
}

.button-secondary,
.service-action-chip,
.filter-chip,
.info-panel,
.detail-sidebar__card,
.home-proof-card,
.services-hero-note,
.services-card,
.gallery-showcase-card,
.gallery-wall-card,
.content-card,
.pricing-card,
.testimonial-card,
.journal-item,
.contact-form-panel,
.quote-panel,
.cta-panel,
.service-item,
.masonry-card {
    background: rgba(255, 255, 255, 0.82);
}

.content-card--gallery,
.editorial-card,
.masonry-card__placeholder,
.gallery-wall-card__placeholder,
.gallery-showcase-card__media,
.gallery-wall-card__media,
.home-hero-slide__visual--placeholder {
    background: linear-gradient(135deg, #d8d2cb 0%, #7a6254 100%);
}

.pricing-card--featured,
.services-card--featured {
    background:
        radial-gradient(circle at top right, rgba(122, 98, 84, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 252, 248, 0.98) 0%, rgba(241, 236, 230, 0.96) 100%);
}

.home-hero-slider {
    background: #d9dfe2;
    border-color: rgba(22, 24, 28, 0.08);
    box-shadow: 0 28px 80px rgba(22, 24, 28, 0.12);
}



.hero-aside-card,
.hero-aside-card--primary {
    background: linear-gradient(180deg, #2c3138 0%, #1c2026 100%);
    color: var(--text-inverse);
    box-shadow: 0 22px 46px rgba(22, 24, 28, 0.24);
}

.hero-slider__arrow,
.lightbox__close,
.nav-toggle,
.service-favorite-button {
    background: rgba(255, 255, 255, 0.90);
    border-color: rgba(22, 24, 28, 0.12);
}

.hero-slider__dots {
    background: rgba(255, 255, 255, 0.62);
}

.hero-slider__dot,
.service-action-chip__icon,
.info-panel__label,
.pill-tag {
    background: rgba(122, 98, 84, 0.10);
}

.hero-slider__dot.is-active,
.filter-chip:hover,
.filter-chip.is-active,
.button-primary,
.nav-cta,
.service-action-chip--accent {
    background: var(--surface-dark);
    border-color: var(--surface-dark);
    color: var(--text-inverse) !important;
}

.service-favorite-button.is-active {
    background: rgba(122, 98, 84, 0.14);
    border-color: rgba(122, 98, 84, 0.28);
    color: var(--accent-dark);
}

.floating-social--instagram,
.floating-social--whatsapp {
    background: var(--surface-dark);
    color: var(--text-inverse);
}

.flash {
    background: rgba(22, 24, 28, 0.08);
    color: var(--text);
}

/* Unified Brand Palette */
:root {
    --bg: #f4f2ee;
    --bg-alt: #ebe6df;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #fdfbf8;
    --surface-dark: #181b20;
    --line: rgba(24, 27, 32, 0.11);
    --text: #181b20;
    --text-soft: #666d77;
    --text-inverse: #f5f2ed;
    --accent: #746356;
    --accent-dark: #5d4f45;
    --shadow: 0 24px 72px rgba(24, 27, 32, 0.10);
}

html,
body {
    background:
        radial-gradient(circle at top left, rgba(116, 99, 86, 0.09), transparent 30%),
        radial-gradient(circle at right 20%, rgba(82, 88, 97, 0.07), transparent 24%),
        linear-gradient(180deg, #f8f6f2 0%, #efebe5 100%);
    color: var(--text);
}

body,
p,
.site-nav a,
.feature-list li,
.gallery-wall-card__meta,
.services-card__price-badge span,
.form-control,
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer h3 {
    color: var(--text-soft);
}

h1,
h2,
h3,
h4,
.brand-mark__name,
.hero-aside-card strong,
.hero-aside-card span,
.info-panel strong,
.price,
.services-card__price-badge strong {
    color: var(--text);
}

.brand-mark__eyebrow,
.section-badge,
.card-kicker,
.footer-kicker,
.services-card__label,
.info-panel__label,
.pill-tag,
.text-link,
.back-link {
    color: var(--accent-dark);
}

.site-header {
    background: rgba(248, 246, 242, 0.84);
    border-bottom-color: rgba(24, 27, 32, 0.08);
}

.site-footer,
.section-dark {
    background: #181b20;
}

.section-dark p,
.section-dark strong,
.section-dark span,
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer h3,
.footer-bottom p,
.hero-aside-card,
.hero-aside-card strong,
.hero-aside-card span,
.hero-aside-card small,
.service-action-chip--accent,
.service-action-chip--accent .service-action-chip__icon,
.button-primary,
.nav-cta,
.floating-social--instagram,
.floating-social--whatsapp {
    color: var(--text-inverse) !important;
}

.section-soft,
.page-hero,
.home-proof-strip,
.services-section {
    background: transparent;
}

.button-secondary,
.service-action-chip,
.filter-chip,
.info-panel,
.detail-sidebar__card,
.home-proof-card,
.services-hero-note,
.services-card,
.gallery-showcase-card,
.gallery-wall-card,
.content-card,
.pricing-card,
.testimonial-card,
.journal-item,
.contact-form-panel,
.quote-panel,
.cta-panel,
.service-item,
.masonry-card,
.compact-list__item,
.hero-stats li,
.form-control,
.flash,
.nav-toggle,
.hero-slider__arrow,
.lightbox__close,
.service-favorite-button {
    background: rgba(255, 255, 255, 0.86);
    border-color: var(--line);
    box-shadow: var(--shadow);
}

.button-primary,
.nav-cta,
.service-action-chip--accent,
.filter-chip:hover,
.filter-chip.is-active,
.hero-slider__dot.is-active,
.floating-social--instagram,
.floating-social--whatsapp {
    background: var(--surface-dark);
    border-color: var(--surface-dark);
}

.button-secondary:hover,
.service-action-chip:hover,
.nav-toggle:hover,
.hero-slider__arrow:hover,
.service-favorite-button:hover {
    border-color: rgba(116, 99, 86, 0.28);
}

.info-panel__label,
.pill-tag,
.service-action-chip__icon,
.hero-slider__dots,
.hero-slider__dot,
.flash,
.service-favorite-button.is-active {
    background: rgba(116, 99, 86, 0.10);
}

.service-favorite-button.is-active {
    color: var(--accent-dark);
    border-color: rgba(116, 99, 86, 0.26);
}

.home-hero-slider,
.hero-slider__viewport,
.hero-photo-frame,
.editorial-card,
.content-card--gallery,
.gallery-showcase-card__media,
.gallery-wall-card__media,
.masonry-card__placeholder,
.gallery-wall-card__placeholder,
.home-hero-slide__visual--placeholder {
    background: linear-gradient(135deg, #d8d2ca 0%, #756256 100%);
}

.home-hero-slider {
    border-color: rgba(24, 27, 32, 0.08);
    box-shadow: 0 28px 82px rgba(24, 27, 32, 0.12);
}



.hero-aside-card,
.hero-aside-card--primary {
    background: linear-gradient(180deg, #30353d 0%, #1d2127 100%);
    box-shadow: 0 22px 48px rgba(24, 27, 32, 0.26);
}

.testimonial-card,
.site-footer,
.section-dark .content-card,
.section-dark .pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.pricing-card--featured,
.services-card--featured {
    background:
        radial-gradient(circle at top right, rgba(116, 99, 86, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(240, 235, 229, 0.95) 100%);
}

.services-hero-note,
.quote-panel,
.cta-panel,
.home-proof-card {
    background: rgba(255, 255, 255, 0.80);
}

.form-control:focus {
    outline-color: rgba(116, 99, 86, 0.18);
    border-color: var(--accent);
}

.flash {
    color: var(--text);
}

.site-footer .button-secondary,
.site-footer .button-secondary:visited {
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(24, 27, 32, 0.10);
}

.site-footer .button-secondary:hover {
    color: var(--text) !important;
    background: #ffffff;
}

.floating-social {
    width: 56px;
    height: 56px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.floating-social svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: currentColor;
}

.floating-socials {
    gap: 0.85rem;
}

.floating-social {
    position: relative;
    width: 58px;
    height: 58px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(24, 27, 32, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 44px rgba(24, 27, 32, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.floating-social:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 24px 54px rgba(24, 27, 32, 0.34);
}

.floating-social::after {
    content: attr(data-floating-label);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: rgba(24, 27, 32, 0.92);
    color: var(--text-inverse);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-social:hover::after,
.floating-social:focus-visible::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.floating-social svg {
    width: 24px;
    height: 24px;
    display: block;
}

.floating-social:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.42);
    outline-offset: 3px;
}

@media (max-width: 720px) {
    .floating-social {
        width: 54px;
        height: 54px;
    }

    .floating-social::after {
        display: none;
    }
}

.journal-hero__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 1.5rem;
    align-items: end;
}

.journal-hero__note {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

.journal-hero__note strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    color: var(--text);
}

.journal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 1.5rem;
    align-items: start;
}

.journal-featured-stack,
.journal-feed {
    display: grid;
    gap: 1.35rem;
}

.journal-feature-card,
.journal-feed-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
}

.journal-feature-card {
    grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.05fr);
    min-height: 320px;
}

.journal-feed-card {
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 220px;
}

.journal-feature-card__media,
.journal-feed-card__media {
    display: block;
    height: 100%;
    min-height: 100%;
    background: linear-gradient(135deg, #d8d2ca 0%, #756256 100%);
}

.journal-feature-card__media img,
.journal-feed-card__media img,
.journal-feature-card__placeholder,
.journal-feed-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #d8d2ca 0%, #756256 100%);
}

.journal-feature-card__body,
.journal-feed-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.6rem;
}

.journal-feature-card__body h2,
.journal-feed-card__body h3 {
    margin-bottom: 0;
}

.article-hero__shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 1.6rem;
    align-items: center;
}

.article-hero__content {
    max-width: 760px;
}

.article-hero__summary {
    max-width: 52ch;
    font-size: 1.04rem;
    line-height: 1.75;
}

.article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 1.2rem;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.article-hero__visual {
    border: 1px solid var(--line);
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}

.article-hero__visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.article-layout-modern {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.5rem;
    align-items: start;
}

.article-content-card,
.article-sidebar__card {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
}

.article-content-card {
    padding: 2rem 2.1rem;
}

.article-sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 110px;
}

.article-sidebar__card {
    padding: 1.5rem;
}

.article-sidebar__card strong {
    display: block;
    margin: 0.7rem 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    color: var(--text);
}

.compact-list--article-meta {
    margin-top: 1rem;
}

.prose-content {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.85;
}

.prose-content p {
    margin-bottom: 1.2rem;
    color: var(--text-soft);
}

.prose-content h2,
.prose-content h3,
.prose-content strong {
    color: var(--text);
}

@media (max-width: 1100px) {
    .journal-layout,
    .article-hero__shell,
    .article-layout-modern {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 820px) {
    .journal-hero__shell,
    .journal-feature-card,
    .journal-feed-card {
        grid-template-columns: 1fr;
    }

    .journal-feature-card__media,
    .journal-feed-card__media {
        min-height: 220px;
    }

    .article-hero__visual img {
        height: 280px;
    }

    .article-content-card {
        padding: 1.4rem;
    }
}

.journal-hero__shell--compact {
    grid-template-columns: minmax(0, 1.2fr) 260px;
    gap: 1rem;
    align-items: center;
}

.journal-hero__shell--compact .journal-hero__note {
    padding: 1.2rem 1.25rem;
}

.journal-layout--single {
    gap: 1.25rem;
}

.journal-feature-card--wide {
    min-height: 360px;
}

@media (max-width: 980px) {
    .journal-hero__shell--compact {
        grid-template-columns: 1fr;
    }
}

.services-page-hero .container,
.services-page-hero__shell {
    align-items: center;
}

.services-page-hero__shell {
    grid-template-columns: minmax(0, 1.2fr) 260px;
    gap: 1rem;
}

.services-hero-note {
    padding: 1.2rem 1.25rem;
}

@media (max-width: 980px) {
    .services-page-hero__shell {
        grid-template-columns: 1fr;
    }
}

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

.about-hero__content {
    display: grid;
    gap: 1.25rem;
}

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

.about-stat-card,
.about-hero__panel,
.about-story-card,
.about-process-card,
.about-value-card {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
}

.about-stat-card {
    padding: 1rem 1.1rem;
}

.about-stat-card strong {
    display: block;
    margin-bottom: 0.2rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    color: var(--text);
}

.about-hero__panel {
    padding: 1.5rem;
}

.about-hero__panel strong {
    display: block;
    margin: 0.8rem 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    color: var(--text);
}

.about-story-grid,
.about-values-grid,
.about-process-grid {
    display: grid;
    gap: 1.25rem;
}

.about-story-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.about-story-card,
.about-process-card,
.about-value-card {
    padding: 1.55rem;
}

.about-story-card--wide h2 {
    margin-bottom: 0.8rem;
}

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

.about-process-card h3,
.about-value-card h3 {
    margin: 0.65rem 0 0.75rem;
}

.about-value-card {
    min-height: 100%;
}

@media (max-width: 980px) {
    .about-hero__shell,
    .about-story-grid,
    .about-process-grid,
    .about-values-grid,
    .about-hero__stats {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    display: block;
    margin-top: 3.5rem;
    background: #181b20;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-grid {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer,
.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer .footer-kicker,
.site-footer .footer-bottom p {
    color: rgba(245, 242, 237, 0.88) !important;
}

.site-footer h2,
.site-footer h3 {
    color: #ffffff !important;
}

.site-footer .footer-kicker {
    color: rgba(245, 242, 237, 0.62) !important;
}
.journal-hero__shell--balanced {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.journal-hero__note--stacked {
    display: grid;
    gap: 0.9rem;
    align-self: stretch;
}

.journal-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.journal-active-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.9rem;
    margin-top: 1rem;
}

.journal-layout--with-sidebar {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.5rem;
    align-items: start;
}

.journal-main-column {
    display: grid;
    gap: 1.35rem;
}

.journal-sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 108px;
}

.journal-sidebar__card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    padding: 1.35rem;
}

.journal-sidebar__links {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
}

.journal-sidebar__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(122, 103, 88, 0.14);
    border-radius: 18px;
    background: rgba(248, 245, 241, 0.9);
    color: var(--text);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.journal-sidebar__link:hover,
.journal-sidebar__link.is-active {
    transform: translateY(-1px);
    border-color: rgba(135, 89, 60, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

.journal-sidebar__link strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    color: var(--text);
}

.journal-sidebar__empty {
    display: block;
    margin-top: 1rem;
    color: var(--text-soft);
}

.journal-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.journal-tag-cloud .pill-tag.is-active {
    background: var(--text);
    color: #fff;
}

.journal-tag-cloud .pill-tag small {
    font-size: 0.78em;
    opacity: 0.75;
}

.journal-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

@media (max-width: 1100px) {
    .journal-layout--with-sidebar {
        grid-template-columns: 1fr;
    }

    .journal-sidebar {
        position: static;
    }
}

@media (max-width: 820px) {
    .journal-hero__shell--balanced {
        grid-template-columns: 1fr;
    }
}
.home-hero-slide {
    --hero-title-color: #17110d;
    --hero-text-color: #4f4037;
    --hero-overlay-rgb: 246 250 252;
    --hero-overlay-a1: 0.20;
    --hero-overlay-a2: 0.12;
    --hero-overlay-a3: 0.05;
    --hero-overlay-a4: 0.00;
    --hero-overlay-width: 28%;
}

.home-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            90deg,
            rgb(var(--hero-overlay-rgb) / var(--hero-overlay-a1)) 0%,
            rgb(var(--hero-overlay-rgb) / var(--hero-overlay-a2)) 22%,
            rgb(var(--hero-overlay-rgb) / var(--hero-overlay-a3)) 46%,
            rgb(var(--hero-overlay-rgb) / var(--hero-overlay-a4)) 64%,
            rgb(var(--hero-overlay-rgb) / 0) 100%
        );
    background-size: var(--hero-overlay-width) 100%;
    background-position: left top;
    background-repeat: no-repeat;
    pointer-events: none;
}

.home-hero-slide__copy h1,
.home-hero-slide__copy .home-hero-slide__eyebrow {
    color: var(--hero-title-color);
}

.home-hero-slide__copy p,
.home-hero-slide__lead {
    color: var(--hero-text-color);
}

.home-hero-slide.is-dark-text {
    --hero-title-color: #17110d;
    --hero-text-color: #5d4c42;
    --hero-overlay-rgb: 246 250 252;
    --hero-overlay-a1: 0.20;
    --hero-overlay-a2: 0.12;
    --hero-overlay-a3: 0.05;
    --hero-overlay-a4: 0.00;
    --hero-overlay-width: 28%;
}

.home-hero-slide.is-light-text {
    --hero-title-color: #f8f4ef;
    --hero-text-color: rgba(248, 244, 239, 0.90);
    --hero-overlay-rgb: 17 12 10;
    --hero-overlay-a1: 0.26;
    --hero-overlay-a2: 0.14;
    --hero-overlay-a3: 0.05;
    --hero-overlay-a4: 0.00;
    --hero-overlay-width: 30%;
}

@media (max-width: 900px) {
    .home-hero-slide__overlay {
        background-image:
            linear-gradient(
                180deg,
                rgb(var(--hero-overlay-rgb) / 0.16) 0%,
                rgb(var(--hero-overlay-rgb) / 0.08) 42%,
                rgb(var(--hero-overlay-rgb) / 0.03) 100%
            );
        background-size: 100% 100%;
        background-position: center;
    }

    .home-hero-slide.is-dark-text {
        --hero-title-color: #17110d;
        --hero-text-color: #5d4c42;
        --hero-overlay-rgb: 246 250 252;
    }

    .home-hero-slide.is-light-text {
        --hero-title-color: #f8f4ef;
        --hero-text-color: rgba(248, 244, 239, 0.90);
        --hero-overlay-rgb: 17 12 10;
    }
}
