:root {
    --color-orange: #ED8C2E;
    --color-blue: #70E6E8;
    --color-black: #111111;
    --color-white: #ffffff;
    --color-offwhite: #f7f5f1;
    --color-text: #222222;
    --color-muted: #666666;
    --color-border: rgba(17, 17, 17, 0.10);

    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;

    --container: 1200px;
}

/* =========================================
   RESET / BASE
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--color-text);
    background: var(--color-offwhite);
    line-height: 1.65;
}

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

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

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

.narrow {
    max-width: 760px;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.7);
}

.section-dark {
    background:
        radial-gradient(circle at top center, rgba(112, 230, 232, 0.06), transparent 24%),
        var(--color-black);
    color: var(--color-white);
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", serif;
    line-height: 1.05;
    margin: 0 0 1rem;
    color: var(--color-black);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-white);
}

h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
}

h3 {
    font-size: 1.7rem;
}

.eyebrow,
.section-kicker,
.footer-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-orange);
}

.eyebrow,
.section-kicker {
    margin-bottom: 1rem;
}

.footer-eyebrow {
    margin-bottom: 0.9rem;
    font-size: 0.78rem;
}

.hero-text,
.entry-content,
.post-card-excerpt,
.section-heading p,
.intro-section p,
.cta-box p {
    font-size: 1.05rem;
    color: var(--color-muted);
}

/* =========================================
   BUTTONS
========================================= */

.button-primary,
.button-secondary,
.button-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button-primary {
    background: var(--color-orange);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

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

.button-blue {
    background: var(--color-blue);
    color: var(--color-black);
    box-shadow: var(--shadow-soft);
}

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

.button-secondary {
    border: 1px solid var(--color-black);
    color: var(--color-black);
    background: transparent;
}

/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 245, 241, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

body.admin-bar .site-header {
    top: 32px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 92px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-branding-text {
    display: flex;
    align-items: center;
}

.site-branding .site-title {
    display: inline-block;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.custom-logo {

    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.site-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-black);
}

.main-menu,
.mobile-menu-list,
.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav {
    display: none;
}

.main-menu {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.main-menu a {
    position: relative;
    padding: 0.25rem 0;
    font-weight: 600;
    font-size: 0.98rem;
}

.main-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 2px;
    background: var(--color-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.main-menu a:hover::after,
.main-menu .current-menu-item > a::after,
.main-menu .current_page_item > a::after {
    transform: scaleX(1);
}

.main-menu .current-menu-item > a,
.main-menu .current_page_item > a {
    color: var(--color-orange);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-black);
    margin: 5px 0;
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 1.25rem 1.25rem;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu-list li + li {
    margin-top: 0.85rem;
}

.mobile-menu-list a {
    display: block;
    padding: 0.55rem 0;
    font-weight: 600;
    font-size: 1rem;
}

.mobile-menu-list a:hover {
    color: var(--color-orange);
}

/* =========================================
   HERO
========================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(110px);
    opacity: 0.48;
    pointer-events: none;
}

.hero-bg-shape-1 {
    width: 520px;
    height: 520px;
    background: var(--color-orange);
    top: 30px;
    left: -170px;
}

.hero-bg-shape-2 {
    width: 560px;
    height: 560px;
    background: var(--color-blue);
    right: -180px;
    bottom: -10px;
}

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

.hero-slider {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, rgba(112, 230, 232, 0.40), rgba(237, 140, 46, 0.24));
    border: 1.5px solid rgba(237, 140, 46, 0.55);
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.7s ease, transform 1.4s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

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

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.18), transparent 35%),
        linear-gradient(to right, rgba(255, 255, 255, 0.06), transparent 30%);
    pointer-events: none;
    z-index: 3;
}

.hero-slider-controls {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hero-dots {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(112, 230, 232, 0.55);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-dot.is-active {
    background: var(--color-orange);
    border-color: rgba(237, 140, 46, 0.9);
    transform: scale(1.15);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(17, 17, 17, 0.28);
    color: var(--color-white);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(237, 140, 46, 0.82);
    transform: translateY(-1px);
}

/* =========================================
   HERO INNER / INTERNAL PAGES
========================================= */

.hero-section-inner {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.hero-section-inner .hero-inner-content {
    max-width: 980px;
    position: relative;
    z-index: 2;
}

.hero-section-inner .entry-title {
    margin-bottom: 1rem;
    max-width: none;
    text-wrap: pretty;
    overflow-wrap: normal;
}

.service-body-section {
    padding-top: 2.5rem;
}

.service-parent-link {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-parent-link a {
    color: var(--color-orange);
}

.service-parent-link a:hover {
    color: var(--color-black);
}

.service-content {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.service-entry-content {
    color: var(--color-text);
    font-size: 1.06rem;
    line-height: 1.85;
}

.service-entry-content > *:first-child {
    margin-top: 0;
}

.service-entry-content h2,
.service-entry-content h3,
.service-entry-content h4 {
    margin-top: 2rem;
}

.service-entry-content ul,
.service-entry-content ol {
    padding-left: 1.3rem;
}

.service-entry-content li + li {
    margin-top: 0.45rem;
}


/* =========================================
   HERO PREVIEW EMPTY
========================================= */

.hero-preview-body {
    margin: 0;
    background: var(--color-offwhite);
}

.hero-preview-empty-page {
    min-height: 100vh;
}

.hero-preview-empty {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: var(--color-offwhite);
}

.hero-preview-empty .hero-bg-shape-1 {
    top: 8%;
    left: -12%;
}

.hero-preview-empty .hero-bg-shape-2 {
    right: -12%;
    bottom: 8%;
}

/* =========================================
   GENERIC SECTION HEADINGS
========================================= */

.section-heading {
    margin-bottom: 2rem;
}

.section-heading.centered {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

/* =========================================
   INTRO
========================================= */

.intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: start;
}

.intro-copy .intro-lead {
    font-size: 1.08rem;
    max-width: 58ch;
}

.intro-points {
    display: grid;
    gap: 1rem;
}

.intro-point {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.2rem 1.25rem;
    background: linear-gradient(180deg, #f09a3f 0%, #ed8c2e 100%);
    border: 1.5px solid rgba(112, 230, 232, 0.95);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 32px rgba(237, 140, 46, 0.16);
}

.intro-point-mark {
    width: 12px;
    height: 12px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: var(--color-blue);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.20);
}

.intro-point h3 {
    margin-bottom: 0.35rem;
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-black);
}

.intro-point p {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.6;
    font-size: 0.96rem;
}

.intro-point div {
    position: relative;
}

.intro-point div::after {
    content: "";
    position: absolute;
    top: 0.25rem;
    right: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(112, 230, 232, 0.14);
    pointer-events: none;
}

/* =========================================
   BUBBLES / SERVICES
========================================= */

.bubbles-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr 0.95fr;
    gap: 1.5rem;
    align-items: start;
}

.bubble-card-large {
    min-height: 100%;
}

.bubble-card {
    position: relative;
    overflow: hidden;
    background: var(--color-blue);
    border: 2px solid var(--color-orange);
    border-radius: 32px;
    padding: 2.15rem 1.8rem 1.95rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bubble-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.30);
    pointer-events: none;
}

.bubble-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-orange);
    box-shadow: 0 24px 52px rgba(237, 140, 46, 0.18);
}

.bubble-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 1.1rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0.01em;
    color: var(--color-orange);
    text-wrap: balance;
}

.bubble-card ul {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bubble-card li + li {
    margin-top: 0.75rem;
}

.bubble-card a {
    color: #14343b;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.5;
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bubble-card a:hover {
    color: var(--color-orange);
    transform: translateX(4px);
}

/* =========================================
   FEATURED / ENFOQUE
========================================= */

.featured-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.featured-copy {
    max-width: 640px;
}

.featured-copy p:last-child {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
}

.featured-values {
    display: grid;
    gap: 1rem;
}

.featured-value {
    padding: 1.2rem 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(112, 230, 232, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.featured-value strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
    color: var(--color-blue);
}

.featured-value span {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.55;
}


/* =========================================
   BUBBLES DARK / INTERNAL NAVIGATION
========================================= */

.bubbles-dark-section {
    position: relative;
    overflow: hidden;
}

.bubbles-dark-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(237, 140, 46, 0.10);
    top: -180px;
    left: -120px;
    filter: blur(50px);
    pointer-events: none;
}

.bubbles-dark-section::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(112, 230, 232, 0.10);
    right: -160px;
    bottom: -220px;
    filter: blur(56px);
    pointer-events: none;
}

.bubbles-dark-section .section-heading {
    position: relative;
    z-index: 2;
}

.bubbles-dark-section .section-heading p:last-child {
    max-width: 760px;
    color: rgba(255,255,255,0.74);
}

.bubbles-dark-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.bubble-card-dark {
    background: rgba(17, 17, 17, 0.62);
    border: 1.5px solid rgba(112, 230, 232, 0.35);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
}

.bubble-card-dark::after {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.bubble-card-dark:hover {
    border-color: var(--color-orange);
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(237, 140, 46, 0.12);
}

.bubble-card-dark.is-current-section {
    border-color: var(--color-orange);
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.30),
        0 0 0 1px rgba(237, 140, 46, 0.18);
    transform: translateY(-4px);
}

.bubble-card-dark.is-current-section h3 a {
    color: var(--color-blue);
}

.bubble-card-dark.is-current-section ul::before {
    background: rgba(237, 140, 46, 0.14);
}

.bubble-card-dark h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 1.1rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0.01em;
    color: var(--color-orange);
    text-wrap: balance;
}

.bubble-card-dark h3 a {
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bubble-card-dark h3 a:hover {
    color: var(--color-blue);
    transform: translateX(2px);
}

.bubble-card-dark li + li {
    margin-top: 0.75rem;
}

.bubble-card-dark a {
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.5;
}

.bubble-card-dark a:hover {
    color: var(--color-blue);
}

.bubble-card-dark ul {
    position: relative;
}

.bubble-card-dark ul::before {
    content: "";
    position: absolute;
    top: -0.2rem;
    right: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(112, 230, 232, 0.08);
    pointer-events: none;
}




/* =========================================
   CTA / CONTACT FORM
========================================= */

.cta-box {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98),
        rgba(255, 255, 255, 0.94)
    );
    border-radius: var(--radius-lg);
    padding: 3.2rem 3rem;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(17, 17, 17, 0.08);
    text-align: center;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(112, 230, 232, 0.34);
    top: -250px;
    right: -190px;
    filter: blur(58px);
    pointer-events: none;
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(237, 140, 46, 0.24);
    bottom: -260px;
    left: -180px;
    filter: blur(58px);
    pointer-events: none;
}

.cta-badge-wrap,
.cta-box h2,
.cta-box p,
.cta-actions {
    position: relative;
    z-index: 2;
}

.cta-text {
    max-width: 760px;
    margin: 0 auto;
}

.cta-form-shell {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(17, 17, 17, 0.05);
    border-radius: 24px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.contact-form {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 2rem auto 0;
    text-align: left;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

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

.form-field label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-black);
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-text);
    padding: 0.95rem 1rem;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(112, 230, 232, 0.9);
    box-shadow: 0 0 0 4px rgba(112, 230, 232, 0.18);
}

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

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-form .button-primary {
    min-width: 170px;
}

.form-notice {
    max-width: 760px;
    margin: 1.25rem auto 0;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    font-weight: 600;
    text-align: center;
}

.form-notice-success {
    background: rgba(112, 230, 232, 0.18);
    border: 1px solid rgba(112, 230, 232, 0.45);
    color: #14343b;
}

.form-notice-error {
    background: rgba(237, 140, 46, 0.14);
    border: 1px solid rgba(237, 140, 46, 0.35);
    color: #7a3d00;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    background:
        radial-gradient(circle at top right, rgba(112, 230, 232, 0.10), transparent 24%),
        radial-gradient(circle at bottom left, rgba(237, 140, 46, 0.08), transparent 22%),
        linear-gradient(180deg, #030303 0%, #0b0b0b 100%);
    color: rgba(255, 255, 255, 0.82);
    padding: 5rem 0 1.8rem;
}

.site-footer h3,
.site-footer h4 {
    color: var(--color-white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2.6rem;
    align-items: start;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    width: 165px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 0.9rem;
    object-fit: contain;
}

.footer-brand-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-brand p {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.78);
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column ul li + li {
    margin-top: 0.45rem;
}

.site-footer a {
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--color-orange);
}

.footer-bottom {
    margin-top: 2.4rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.74);
}

/* =========================================
   POSTS / PAGES / GENERIC CONTENT
========================================= */

.posts-list {
    display: grid;
    gap: 1.5rem;
}

.post-card,
.page-content,
.single-content {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.post-card-title a:hover {
    color: var(--color-orange);
}

.entry-title {
    margin-bottom: 1.25rem;
}

/* =========================================
   ANIMATIONS
========================================= */

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

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

/* =========================================
   GENERIC PAGE / ABOUT / CONTACT / 404
========================================= */

.generic-page-content,
.about-page-content {
    max-width: 100%;
}

.contact-page-section {
    padding-top: 2.5rem;
}

.contact-page-box {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98),
        rgba(255, 255, 255, 0.94)
    );
    border-radius: var(--radius-lg);
    padding: 3.2rem 3rem;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-page-box::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(112, 230, 232, 0.30);
    top: -250px;
    right: -190px;
    filter: blur(58px);
    pointer-events: none;
}

.contact-page-box::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(237, 140, 46, 0.20);
    bottom: -260px;
    left: -180px;
    filter: blur(58px);
    pointer-events: none;
}

.contact-page-intro,
.contact-page-form-shell {
    position: relative;
    z-index: 2;
}

.contact-page-intro {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

.contact-page-intro p:last-child {
    color: var(--color-muted);
}

.contact-page-form-shell {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(17, 17, 17, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.contact-page-form {
    margin-top: 0;
}

.error-hero-section {
    padding-bottom: 2rem;
}

/* =========================================
   RESPONSIVE
========================================= */

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .footer-top,
    .bubbles-grid {
        grid-template-columns: 1fr 1fr;
    }
	.bubbles-dark-grid {
    grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 768px) {
   .menu-toggle {
        display: block;
    }

    .hero-grid,
    .footer-top,
    .bubbles-grid,
    .intro-grid,
    .featured-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 0;
    }

    .header-inner {
        min-height: 78px;
    }

    .site-title {
        font-size: 1.95rem;
    }

    .custom-logo {
        width: 44px;
        height: 44px;
    }

    .mobile-menu {
        padding-top: 0.85rem;
    }

    .hero-section {
        padding-top: 4.5rem;
        padding-bottom: 4rem;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-slider {
        order: 2;
        aspect-ratio: 4 / 5.2;
        border-radius: 28px;
    }

    .hero-slider-controls {
        left: 0.9rem;
        right: 0.9rem;
        bottom: 0.9rem;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-actions {
        gap: 0.8rem;
    }

    .hero-bg-shape-1 {
        width: 260px;
        height: 260px;
        left: -90px;
        top: 0;
    }

    .hero-bg-shape-2 {
        width: 260px;
        height: 260px;
        right: -90px;
        bottom: -10px;
    }

    .cta-box,
    .post-card,
    .page-content,
    .single-content,
    .bubble-card {
        padding: 1.5rem;
    }

    .cta-box {
        padding: 2.25rem 1.6rem 2.1rem;
        border-radius: 28px;
    }

    .cta-box .button-primary {
        width: 100%;
        max-width: 320px;
    }

    .intro-point {
        padding: 1rem;
        border-radius: 18px;
        box-shadow: 0 10px 22px rgba(237, 140, 46, 0.14);
    }

    .intro-point h3 {
        font-size: 1.28rem;
    }

    .featured-value {
        padding: 1rem;
        border-radius: 18px;
    }

    .section-dark .section-heading p,
    .section-dark p {
        max-width: 100%;
    }

    .footer-top {
        gap: 2.2rem;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-brand-title {
        font-size: 1.95rem;
    }
	.bubbles-dark-grid {
    grid-template-columns: 1fr;
}

.bubbles-dark-section::before {
    width: 280px;
    height: 280px;
    top: -120px;
    left: -110px;
    filter: blur(34px);
}

.bubbles-dark-section::after {
    width: 300px;
    height: 300px;
    right: -120px;
    bottom: -160px;
    filter: blur(38px);
}
	
.hero-section-inner {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
}

.hero-preview-empty .hero-bg-shape-1 {
    top: 6%;
    left: -20%;
}

.hero-preview-empty .hero-bg-shape-2 {
    right: -20%;
    bottom: 6%;
}
	.bubble-card-dark h3 {
    font-size: 1.75rem;
}
.hero-section-inner .hero-inner-content {
    max-width: 100%;
}

.hero-section-inner .entry-title {
    max-width: none;
    text-wrap: balance;
}
	 .contact-page-box {
        padding: 2.25rem 1.6rem 2.1rem;
        border-radius: 28px;
    }

    .contact-page-form-shell {
        padding: 1rem;
        border-radius: 20px;
    }
	.hero-actions {
    flex-wrap: nowrap;
    gap: 0.7rem;
}

.hero-actions .button-primary,
.hero-actions .button-blue,
.hero-actions .button-secondary {
    min-height: 46px;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    flex: 1 1 0;
    min-width: 0;
}
}