:root {
    color-scheme: light;
    --primary-rgb: 181, 107, 45;
    --accent-rgb: 141, 77, 31;
    --secondary-rgb: 36, 25, 15;
    --text-rgb: 36, 25, 15;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-soft: rgba(255, 255, 255, 0.74);
    --surface-muted: rgba(255, 255, 255, 0.6);
    --card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 246, 241, 0.96) 100%);
    --card-bg-strong: linear-gradient(180deg, rgba(27, 20, 14, 0.98) 0%, rgba(45, 31, 21, 0.96) 100%);
    --line: rgba(66, 44, 24, 0.12);
    --line-strong: rgba(var(--primary-rgb), 0.2);
    --muted: color-mix(in srgb, var(--text, #24190f) 62%, #ffffff 38%);
    --heading: color-mix(in srgb, var(--text, #24190f) 90%, #000000 10%);
    --body-bg: #f4efe8;
    --body-accent: color-mix(in srgb, var(--primary, #b56b2d) 16%, #ffffff 84%);
    --shadow-sm: 0 12px 28px rgba(24, 17, 11, 0.08);
    --shadow-md: 0 24px 60px rgba(24, 17, 11, 0.1);
    --shadow-lg: 0 40px 90px rgba(24, 17, 11, 0.14);
    --radius-sm: 18px;
    --radius-md: 26px;
    --radius-lg: 34px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Urbanist", sans-serif;
    color: var(--text, #24190f);
    background:
        radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.12) 0%, transparent 28%),
        radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.08) 0%, transparent 22%),
        linear-gradient(180deg, #fcfbf8 0%, var(--soft-bg, var(--body-bg)) 100%);
}

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

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

iframe {
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.public-site-body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, transparent 18%),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 120px
        );
    opacity: 0.65;
}

.site-shell {
    position: relative;
    min-height: 100vh;
}

.container,
.page-shell {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.page {
    padding: 36px 0 92px;
}

.page > .home-hero-section:first-child {
    margin-top: -36px;
}

.page-shell + .page-shell {
    margin-top: 28px;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(66, 44, 24, 0.08);
    transition: background-color 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 30px rgba(24, 17, 11, 0.08);
    border-bottom-color: rgba(66, 44, 24, 0.12);
}

.site-header-top {
    border: 1px solid rgba(66, 44, 24, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 46px;
    padding: 0 18px;
}

.header-top-badge {
    margin: 0;
    color: var(--heading);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-meta-list,
.header-socials,
.footer-contact-list,
.footer-links,
.footer-socials,
.detail-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.header-meta-list a,
.header-meta-list span,
.header-socials a,
.footer-contact-list a,
.footer-links a,
.footer-socials a,
.detail-contact-strip a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.header-inner {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

.nav-shell {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    align-self: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(66, 44, 24, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: var(--heading);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header-brand-block,
.header-nav-block {
    border: 1px solid rgba(66, 44, 24, 0.08);
    border-radius: 26px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.header-brand-block {
    display: grid;
    gap: 22px;
    padding: 22px;
}

.brand {
    display: inline-flex;
    flex: 1 1 auto;
    align-items: center;
    gap: 16px;
    min-width: 0;
    max-width: 100%;
}

.brand-mark {
    flex: 0 0 auto;
}

.brand-logo-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: 56px;
    object-fit: contain;
}

.brand-mark {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary, #b56b2d) 0%, var(--accent, #8d4d1f) 100%);
    box-shadow: 0 24px 44px rgba(var(--primary-rgb), 0.22);
}

.brand-text {
    color: var(--heading);
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.header-quick-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.header-meta-chip {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(248, 243, 236, 0.92) 100%);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.header-meta-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.24);
    box-shadow: var(--shadow-sm);
}

.header-meta-chip span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-meta-chip strong {
    color: var(--heading);
    font-size: 0.97rem;
    font-weight: 800;
    line-height: 1.45;
    word-break: break-word;
}

.header-nav-block {
    display: grid;
    align-content: space-between;
    gap: 18px;
    padding: 18px 20px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 800;
    transition: color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--heading);
    background: rgba(var(--primary-rgb), 0.1);
    box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), 0.14);
    transform: translateY(-1px);
}

.header-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.eyebrow,
.section-label,
.panel-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(var(--primary-rgb), 0.14);
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--accent, #8d4d1f);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-text,
.info-card p,
.panel-list li,
.page-rich-text,
.footer-text,
.footer-copy,
.section-heading p,
.contact-card p,
.entity-card-body p,
.gallery-item-body p {
    color: var(--muted);
    line-height: 1.8;
}

.hero-actions,
.error-actions,
.detail-cta-actions,
.hero-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: -0.01em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

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

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary, #b56b2d) 0%, var(--accent, #8d4d1f) 100%);
    box-shadow: 0 20px 42px rgba(var(--primary-rgb), 0.26);
}

.button-secondary {
    color: var(--heading);
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(66, 44, 24, 0.12);
    box-shadow: 0 12px 26px rgba(24, 17, 11, 0.08);
}

.button-compact {
    min-height: 46px;
    padding: 0 18px;
}

.text-link,
.detail-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--accent, #8d4d1f);
    font-weight: 900;
    transition: transform 0.22s ease, color 0.22s ease;
}

.text-link {
    margin-top: 16px;
}

.text-link:hover,
.detail-cta-link:hover {
    transform: translateX(2px);
}

.breadcrumb-nav {
    padding: 14px 18px;
    border: 1px solid rgba(66, 44, 24, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-sm);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    color: rgba(var(--text-rgb), 0.28);
}

.breadcrumb-item span[aria-current="page"] {
    color: var(--heading);
}

.section-intro,
.detail-hero,
.home-hero,
.error-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.home-hero-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    background:
        linear-gradient(135deg, rgba(var(--secondary-rgb), 0.98) 0%, rgba(29, 21, 15, 0.98) 46%, rgba(var(--accent-rgb), 0.94) 100%);
}

.home-hero-section::before,
.home-hero-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.home-hero-section::before {
    top: -180px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 72%);
}

.home-hero-section::after {
    right: -140px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.home-hero {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    min-height: 620px;
    padding: 52px 72px;
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
    gap: 24px;
    align-items: center;
}

.section-intro-copy,
.section-intro-panel,
.detail-hero-copy,
.detail-hero-panel,
.error-hero-copy,
.error-hero-panel,
.info-card,
.contact-card {
    border: 1px solid rgba(66, 44, 24, 0.08);
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    box-shadow: var(--shadow-md);
}

.section-intro-copy,
.detail-hero-copy,
.section-intro-panel,
.detail-hero-panel,
.error-hero-copy,
.error-hero-panel,
.info-card,
.contact-card {
    padding: 34px;
}

.home-hero-copy,
.detail-hero-copy,
.section-intro-copy,
.error-hero-copy {
    position: relative;
    overflow: hidden;
}

.home-hero-copy,
.home-hero-side {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-hero-copy::after,
.detail-hero-copy::after,
.section-intro-copy::after,
.error-hero-copy::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.16) 0%, transparent 70%);
    pointer-events: none;
}

.section-intro-copy h1,
.detail-hero-copy h1,
.home-hero-copy h1,
.error-hero-copy h1 {
    margin: 0 0 16px;
    color: var(--heading);
    font-size: clamp(2.6rem, 6vw, 4.9rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.detail-hero-copy h1,
.section-intro-copy h1,
.error-hero-copy h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.detail-hero-panel,
.section-intro-panel,
.error-hero-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 239, 229, 0.94) 100%);
}

.home-hero-copy {
    display: grid;
    align-content: center;
    gap: 0;
    min-width: 0;
}

.home-hero-copy .eyebrow {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.home-hero-copy h1 {
    color: #fff;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.home-hero-copy .hero-text {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.9;
}

.home-hero-copy .hero-actions {
    margin-top: 28px;
}

.home-hero-copy .button-primary {
    background: #fff;
    color: var(--secondary, #24190f);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.home-hero-copy .button-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.home-hero-side {
    min-width: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    background: transparent;
}

.hero-media,
.detail-hero-media,
.gallery-item-media,
.entity-card-media {
    overflow: hidden;
    border-radius: 24px;
}

.hero-media {
    position: relative;
    background: transparent;
    width: 100%;
    height: 100%;
    max-width: 540px;
    min-height: 460px;
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.hero-media img,
.detail-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.hero-media-placeholder {
    display: grid;
    place-items: center;
    min-height: 460px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.hero-media-placeholder-copy {
    display: grid;
    gap: 10px;
    width: min(100% - 48px, 320px);
    text-align: center;
}

.hero-media-placeholder-copy strong {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.hero-media-placeholder-copy span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.panel-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding-left: 18px;
}

.panel-list li + li {
    margin-top: 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.section-heading h2 {
    margin: 0;
    color: var(--heading);
    font-size: clamp(2rem, 4vw, 3.1rem);
    letter-spacing: -0.045em;
}

.section-heading p {
    max-width: 760px;
    margin: 12px 0 0;
}

.home-about-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: stretch;
}

.home-page-section {
    width: min(90%, var(--container));
    margin: 50px auto;
}

.home-about-media,
.home-about-copy {
    overflow: hidden;
    border: 1px solid rgba(66, 44, 24, 0.08);
    border-radius: 30px;
    background: var(--card-bg);
    box-shadow: var(--shadow-md);
}

.home-about-media {
    min-height: 360px;
    background: #e7ddd2;
}

.home-about-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.home-about-copy {
    display: grid;
    align-content: center;
    padding: 34px;
}

.home-about-copy h2 {
    margin: 0 0 14px;
    color: var(--heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.04em;
}

.home-about-placeholder {
    display: grid;
    place-items: center;
    min-height: 360px;
    color: var(--muted);
    font-weight: 800;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.content-grid-single {
    grid-template-columns: 1fr;
}

.info-card {
    background: var(--card-bg);
}

.info-card h2,
.contact-card h2,
.detail-cta-copy h2,
.entity-card h2 {
    margin: 0 0 12px;
    color: var(--heading);
    letter-spacing: -0.035em;
}

.info-card h2 {
    font-size: 1.64rem;
}

.info-card-detail {
    padding: 40px;
}

.info-card-cta {
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(255, 255, 255, 0.96) 54%, rgba(var(--accent-rgb), 0.08) 100%);
}

.info-card-cta::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.18) 0%, transparent 72%);
    pointer-events: none;
}

.page-rich-text p,
.page-rich-text ul,
.page-rich-text ol,
.page-rich-text blockquote {
    margin: 0 0 16px;
}

.page-rich-text h2,
.page-rich-text h3 {
    margin: 26px 0 14px;
    color: var(--heading);
}

.page-rich-text blockquote {
    padding: 20px 22px;
    border-left: 4px solid rgba(var(--primary-rgb), 0.36);
    border-radius: 0 18px 18px 0;
    background: rgba(var(--primary-rgb), 0.06);
}

.entity-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.entity-card,
.gallery-item {
    overflow: hidden;
    border: 1px solid rgba(66, 44, 24, 0.08);
    border-radius: 30px;
    background: var(--card-bg);
    box-shadow: var(--shadow-md);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.entity-card:hover,
.gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-rgb), 0.16);
    box-shadow: var(--shadow-lg);
}

.entity-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    background: #e7ddd2;
}

.entity-card-media img,
.gallery-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.34s ease;
}

.entity-card:hover .entity-card-media img,
.gallery-item:hover .gallery-item-media img {
    transform: scale(1.05);
}

.entity-card-body,
.gallery-item-body {
    padding: 26px;
}

.entity-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.entity-card-kicker,
.post-date,
.meta {
    margin: 0;
    color: var(--accent, #8d4d1f);
    font-size: 0.92rem;
    font-weight: 900;
}

.entity-card h2 {
    font-size: 1.48rem;
}

.gallery-item-media {
    aspect-ratio: 4 / 3;
    background: #e7ddd2;
}

.detail-contact-strip {
    margin-top: 20px;
}

.detail-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: 24px;
    padding: 30px;
    border: 1px solid rgba(66, 44, 24, 0.08);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 244, 236, 0.94) 100%);
    box-shadow: var(--shadow-md);
}

.detail-cta-copy,
.detail-cta-panel {
    min-width: 0;
}

.detail-cta-copy h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.detail-cta-actions {
    margin-top: 24px;
}

.detail-cta-panel {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(66, 44, 24, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
}

.detail-cta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-cta-meta {
    display: grid;
    gap: 6px;
}

.detail-cta-meta strong,
.detail-cta-meta p {
    margin: 0;
}

.detail-cta-meta strong {
    color: var(--heading);
    font-size: 1.12rem;
    font-weight: 900;
}

.detail-cta-meta p {
    color: var(--muted);
    line-height: 1.7;
}

.detail-cta-service {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.detail-cta-location {
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.06) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.detail-cta-blog {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.06) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.page-alert {
    padding: 16px 18px;
    border: 1px solid transparent;
    border-radius: 20px;
    font-weight: 800;
}

.page-alert-success {
    color: #1f6447;
    background: rgba(45, 135, 98, 0.12);
    border-color: rgba(45, 135, 98, 0.18);
}

.page-alert-danger {
    color: #7d2a24;
    background: rgba(198, 82, 73, 0.12);
    border-color: rgba(198, 82, 73, 0.18);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 24px;
}

.contact-card h2 {
    font-size: 1.8rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-field {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

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

.contact-field input,
.contact-field textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid rgba(66, 44, 24, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--heading);
    outline: none;
    resize: vertical;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(var(--primary-rgb), 0.34);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.12);
    background: #fff;
}

.contact-field-error {
    color: #b8433d;
    font-size: 0.88rem;
    font-weight: 800;
}

.contact-info-list {
    display: grid;
    gap: 14px;
}

.contact-info-item {
    padding: 18px 20px;
    border: 1px solid rgba(66, 44, 24, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
}

.contact-info-item strong,
.contact-info-item p {
    display: block;
    margin: 0;
}

.contact-info-item p {
    margin-top: 8px;
}

.contact-map-card {
    overflow: hidden;
}

.contact-map-embed {
    margin-top: 16px;
    overflow: hidden;
    border-radius: 24px;
}

.contact-map-embed iframe {
    display: block;
    width: 100%;
    min-height: 380px;
    border: 0;
}

.error-hero-copy {
    display: grid;
    align-content: center;
}

.error-hero-panel {
    display: grid;
    gap: 18px;
}

.error-code-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    margin-bottom: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent, #8d4d1f);
    font-size: 1.04rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.error-panel-list {
    display: grid;
    gap: 10px;
}

.error-panel-list a {
    padding: 16px 18px;
    border: 1px solid rgba(66, 44, 24, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--heading);
    font-weight: 800;
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.error-panel-list a:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.22);
    background: rgba(255, 255, 255, 0.96);
}

.error-contact-card {
    padding: 24px;
    border: 1px solid rgba(66, 44, 24, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
}

.sticky-contact-actions {
    position: relative;
    z-index: 70;
}

.floating-whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(var(--primary-rgb), 0.16);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary, #b56b2d) 0%, var(--accent, #8d4d1f) 100%);
    box-shadow: 0 24px 56px rgba(var(--primary-rgb), 0.28);
    color: #fff;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 64px rgba(var(--primary-rgb), 0.34);
}

.floating-whatsapp-button-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.floating-whatsapp-button-text {
    font-weight: 900;
}

.mobile-contact-bar {
    display: none;
}

.mobile-contact-bar-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 12px;
}

.mobile-contact-action {
    display: grid;
    gap: 4px;
    min-height: 66px;
    padding: 14px 16px;
    border-radius: 22px;
    border: 1px solid transparent;
    box-shadow: var(--shadow-md);
}

.mobile-contact-action-call {
    color: #fff;
    background: linear-gradient(135deg, var(--primary, #b56b2d) 0%, var(--accent, #8d4d1f) 100%);
}

.mobile-contact-action-whatsapp {
    color: var(--heading);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(66, 44, 24, 0.1);
}

.mobile-contact-action-label {
    font-size: 1rem;
    font-weight: 900;
}

.mobile-contact-action-meta {
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
    opacity: 0.84;
    word-break: break-word;
}

.site-footer {
    width: 100%;
    padding: 52px 0 0;
    background: linear-gradient(180deg, rgba(246, 239, 229, 0) 0%, rgba(241, 233, 222, 0.72) 100%);
}

.footer-inner {
    display: grid;
    gap: 24px;
    width: 100%;
    padding: 48px 56px 34px;
    border-top: 1px solid rgba(66, 44, 24, 0.08);
    border-bottom: 1px solid rgba(66, 44, 24, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 239, 229, 0.96) 100%);
    box-shadow: none;
    border-radius: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) minmax(220px, 0.9fr);
    gap: 26px;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-column-brand {
    padding-right: 18px;
}

.footer-badge {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    border: 1px solid rgba(var(--primary-rgb), 0.14);
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--accent, #8d4d1f);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-title {
    margin: 0;
    color: var(--heading);
    font-size: 1.16rem;
    font-weight: 900;
}

.footer-text,
.footer-copy {
    margin: 0;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-contact-list a,
.footer-socials a {
    width: fit-content;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(66, 44, 24, 0.08);
}

.site-credit-band {
    display: flex;
    justify-content: center;
    padding: 14px 16px 28px;
    background: rgba(241, 233, 222, 0.72);
}

.site-credit-link {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
    transition: color 0.22s ease, transform 0.22s ease;
}

.site-credit-link:hover {
    color: var(--accent, #8d4d1f);
    transform: translateY(-1px);
}

@media (max-width: 1200px) {
    .header-inner,
    .home-hero,
    .home-about-section,
    .section-intro,
    .detail-hero,
    .detail-cta,
    .error-hero,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .content-grid,
    .entity-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 18px 0;
        min-height: auto;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .home-hero {
        min-height: auto;
        padding: 56px 32px;
        gap: 28px;
    }

    .home-hero-copy h1 {
        font-size: clamp(2.6rem, 8vw, 4.2rem);
    }

    .hero-media,
    .hero-media img,
    .hero-media-placeholder {
        min-height: 420px;
        border-radius: 28px;
    }
}

@media (max-width: 780px) {
    .page {
        padding: 26px 0 112px;
    }

    .container.header-inner {
        width: min(calc(100% - 24px), var(--container));
    }

    .header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 0;
        min-height: auto;
    }

    .menu-toggle {
        display: inline-flex;
        flex: 0 0 48px;
        margin-left: auto;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .nav-shell {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        z-index: 70;
        display: none;
        padding: 14px;
        border: 1px solid rgba(66, 44, 24, 0.12);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 46px rgba(24, 17, 11, 0.12);
    }

    .nav-shell.is-open {
        display: block;
    }

    .home-hero {
        padding: 40px 20px;
        gap: 22px;
    }

    .page > .home-hero-section:first-child {
        margin-top: -26px;
    }

    .brand-logo-image {
        width: auto;
        max-width: min(100%, calc(100vw - 120px));
        height: 46px;
    }

    .brand {
        flex: 1 1 auto;
        min-height: 48px;
        align-items: center;
        overflow: hidden;
    }

    .section-intro-copy,
    .section-intro-panel,
    .detail-hero-copy,
    .detail-hero-panel,
    .home-hero-copy,
    .home-hero-side,
    .error-hero-copy,
    .error-hero-panel,
    .info-card,
    .contact-card,
    .footer-inner,
    .detail-cta {
        padding: 24px;
        border-radius: 26px;
    }

    .content-grid,
    .entity-grid,
    .gallery-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: grid;
        width: 100%;
        gap: 8px;
    }

    .main-nav a {
        width: 100%;
        justify-content: flex-start;
        border-radius: 14px;
        min-height: 44px;
        padding: 0 16px;
    }

    .section-intro-copy h1,
    .detail-hero-copy h1,
    .home-hero-copy h1,
    .error-hero-copy h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .floating-whatsapp-button {
        display: none;
    }

    .mobile-contact-bar {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        display: block;
    }

    .home-page-section {
        width: min(calc(100% - 24px), 90%);
        margin: 50px auto;
    }

    .footer-inner {
        padding: 32px 20px 24px;
    }
}

@media (max-width: 560px) {
    .container,
    .page-shell {
        width: min(calc(100% - 20px), var(--container));
    }

    .button,
    .hero-actions .button,
    .detail-cta-actions .button {
        width: 100%;
    }

    .hero-actions,
    .error-actions,
    .detail-cta-actions,
    .hero-contact-actions {
        display: grid;
    }

    .footer-bottom {
        display: grid;
    }
}
