/*---------------------------------------
  LAYOUT — Sections, Topbar, Nav, Hero, 
  Services, Bio, Contact, Footer
  Inspired by Barista Cafe
-----------------------------------------*/

/* ---- Container ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ---- Section Base ---- */
.section-padding {
    padding: 100px 0;
}

/* ============================================
   TOPBAR
   ============================================ */
.site-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-topbar);
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
}

.topbar-left {
    white-space: nowrap;
}

.topbar-center {
    flex: 1;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 18px;
}

.topbar-urgency {
    position: relative;
    height: 100%;
}

.topbar-urgency span {
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    white-space: nowrap;
}

.topbar-urgency span.active {
    opacity: 1;
}

.topbar-cta {
    color: var(--secondary-color);
    font-weight: var(--font-weight-semibold);
    text-decoration: underline;
}

.topbar-cta:hover {
    color: var(--white-color);
}

.topbar-right a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-right a:hover {
    color: var(--white-color);
}

.topbar-right svg {
    flex-shrink: 0;
}

/* ============================================
   NAVIGATION — Barista Floating Style
   ============================================ */
.site-nav {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: 12px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-base);
}

.site-nav .nav-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--overlay-dark);
    border-radius: var(--border-radius-medium);
    padding: 12px 30px;
    transition: var(--transition-base);
}

.site-nav.is-scrolled .nav-inner {
    background: var(--overlay-dark);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-brand {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--white-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-brand:hover {
    color: var(--white-color);
}

.nav-brand span {
    color: var(--secondary-color);
}

.nav-logo {
    height: 100px;
    width: auto;
    margin-top: -25px;
    margin-bottom: -25px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-bold);
    padding: 8px 16px;
    border-radius: var(--border-radius-large);
    text-decoration: none;
}

.nav-item:hover,
.nav-item.active {
    color: var(--secondary-color);
}

.nav-cta {
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    padding: 8px 22px;
    border-radius: var(--border-radius-large);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--white-color);
    color: var(--secondary-color);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.nav-hamburger span {
    display: block;
    background: var(--white-color);
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    transition: var(--transition-base);
}

.nav-hamburger span:first-child {
    top: 0;
}

.nav-hamburger span:nth-child(2) {
    top: 10px;
}

.nav-hamburger span:last-child {
    top: 20px;
}

.nav-hamburger[aria-expanded="true"] span:first-child {
    top: 10px;
    transform: rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:last-child {
    top: 10px;
    transform: rotate(-45deg);
}

/* ============================================
   HERO — Full viewport with diamond overlay
   ============================================ */
.hero-section {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
    min-height: 620px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: transform, opacity;
}

.slide.active {
    opacity: 1;
}

/* Diamond overlay like Barista */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-dark);
    z-index: 2;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 300px;
    height: 420px;
    background: var(--overlay-dark);
    border-radius: var(--border-radius-medium);
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 780px;
    padding: 0 30px;
}

.hero-hook {
    color: var(--secondary-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
    font-style: italic;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-h1 {
    font-size: clamp(36px, 5.5vw, var(--h1-font-size));
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-h1 .highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    animation: scrollPulse 2s infinite;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: var(--font-weight-light);
}

/* ============================================
   SECTION — EMPATHY (About style)
   ============================================ */
.section-empathy {
    background-color: var(--secondary-color);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-empathy .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    color: var(--secondary-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-empathy .section-tag {
    color: rgba(255, 255, 255, 0.7);
}

.section-empathy h2 {
    color: var(--white-color);
    font-size: var(--h2-font-size);
    margin-bottom: 24px;
}

.empathy-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
    margin-bottom: 16px;
}

.empathy-body p strong {
    color: var(--white-color);
}

.empathy-image-wrap {
    position: relative;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
}

.empathy-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.empathy-image-info {
    background: var(--gradient-warm);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
}

.empathy-image-info h4 {
    color: var(--white-color);
    font-size: var(--h4-font-size);
    line-height: 1.3;
}

.decorative-rule {
    display: none;
}

/* ============================================
   SECTION — SERVICES (People/Team style)
   ============================================ */
.section-services {
    background-color: var(--section-bg-color);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-services .section-tag {
    color: rgba(255, 255, 255, 0.7);
}

.section-services h2 {
    color: var(--white-color);
    margin-bottom: 48px;
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-visual {
    position: relative;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-visual img {
    transform: scale(1.15);
}

.service-visual-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-warm);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-visual-overlay {
    opacity: 0.2;
}

.service-body {
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-number {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-bold);
    padding: 4px 14px;
    border-radius: var(--border-radius-large);
    margin-bottom: 12px;
}

.service-body h3 {
    font-size: var(--h5-font-size);
    color: var(--white-color);
    margin-bottom: 8px;
}

.service-body p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-cta {
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    margin-top: auto;
    align-self: flex-start;
}

.service-cta:hover {
    color: var(--white-color);
    border-bottom-color: var(--white-color);
}

/* ============================================
   SECTION — BIO (About split style)
   ============================================ */
.section-bio {
    background-color: var(--dark-soft);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.bio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Photo column */
.bio-visual {
    position: relative;
}

.bio-photo-frame {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    position: relative;
}

.bio-photo-frame img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    object-position: top center;
    min-height: 400px;
}

.bio-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--white-color);
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius-medium);
    padding: 16px 24px;
    text-align: center;
    z-index: 5;
}

.badge-year {
    display: block;
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-top: 4px;
}

/* Content column */
.bio-content .section-tag {
    color: var(--secondary-color);
}

.bio-content h2 {
    color: var(--white-color);
    margin-bottom: 24px;
}

.bio-quote {
    margin-bottom: 32px;
}

.bio-quote p {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 12px;
}

.bio-signature {
    margin-top: 20px;
}

.bio-signature cite {
    color: var(--secondary-color);
    font-style: normal;
    font-weight: var(--font-weight-semibold);
    font-size: var(--p-font-size);
}

/* Stats row */
.stats-row {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 16px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.stat-number {
    display: block;
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-bold);
}

.stat-sub {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-light);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

/* ============================================
   SECTION — CONTACT / CLOSING
   ============================================ */
.section-closing {
    background-color: var(--dark-color);
    background-image: url('../img/Artesania en Cuero.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-closing::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay-dark);
    z-index: 1;
}

.section-closing .container {
    position: relative;
    z-index: 10;
}

.section-closing .section-tag {
    color: var(--secondary-color);
}

/* Centered closing heading and body */
.closing-tag-centered {
    text-align: center;
}

.closing-h2-centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-closing h2 {
    color: var(--white-color);
    margin-bottom: 20px;
}

.closing-body-centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.closing-body {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
    margin-bottom: 32px;
}

.closing-body strong {
    color: var(--white-color);
}

/* Scarcity alert */
.scarcity-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(188, 108, 37, 0.15);
    border: 1px solid rgba(188, 108, 37, 0.3);
    border-radius: var(--border-radius-small);
    padding: 16px 20px;
    margin-bottom: 40px;
    max-width: 700px;
}

.scarcity-centered {
    margin-left: auto;
    margin-right: auto;
}

.scarcity-icon {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1;
}

.scarcity-alert p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-light);
    line-height: 1.5;
}

.scarcity-alert strong {
    color: var(--white-color);
}

/* Map + CTAs */
.closing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-wrapper {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.map-iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

.map-label {
    background: var(--dark-soft);
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-bold);
    padding: 10px 20px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Navigation buttons row */
.ctas-nav-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.cta-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-small);
    padding: 12px 10px;
    color: var(--white-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    text-align: center;
    transition: var(--transition-base);
}

.cta-nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.cta-nav-icon {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    object-fit: contain;
    flex-shrink: 0;
}

.cta-reserve-main {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.closing-ctas {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-info {
    margin-bottom: 32px;
}

.contact-label {
    display: block;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.contact-address,
.contact-hours {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-light);
    margin-bottom: 16px;
}

.ctas-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ---- Bio Firma ---- */
.bio-firma {
    display: block;
    max-width: 180px;
    height: auto;
    margin: 24px auto 0;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

/* ---- Stats row full width ---- */
.stats-row--full {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    grid-column: 1 / -1;
    width: 100%;
}

/* ---- Services close CTA ---- */
.services-close-cta {
    text-align: center;
    padding-top: 40px;
}

.services-close-text {
    color: var(--white-color);
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
}

.services-close-cta .cta-primary {
    display: inline-flex;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--dark-soft);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand {
    margin-bottom: 24px;
}

.footer-brand .nav-brand {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--white-color);
}

.footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 12px;
    vertical-align: middle;
}

.footer-brand .nav-brand span {
    color: var(--secondary-color);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-light);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-seo-text {
    color: rgba(255, 255, 255, 0.35);
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-light);
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-light);
}

/* Footer Social */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.social-link {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--secondary-color);
    background: rgba(188, 108, 37, 0.15);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.social-link svg {
    flex-shrink: 0;
}

/* Footer Credit */
.footer-credit {
    color: rgba(255, 255, 255, 0.3);
    font-size: var(--small-font-size);
    font-weight: var(--font-weight-light);
    margin-top: 12px;
}

.footer-estarup-link {
    color: var(--secondary-color);
    font-weight: var(--font-weight-semibold);
    text-decoration: underline;
}

.footer-estarup-link:hover {
    color: var(--white-color);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media screen and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 991px) {
    :root {
        --h1-font-size: 48px;
        --h2-font-size: 36px;
        --h3-font-size: 26px;
        --h4-font-size: 24px;
        --p-font-size: 16px;
    }

    /* Topbar hide center on mobile */
    .topbar-center {
        display: none;
    }

    /* Nav mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background: rgba(15, 15, 15, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
        border-radius: var(--border-radius-medium);
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 4px;
        margin-top: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-hamburger {
        display: block;
    }

    .nav-item {
        padding: 12px 20px;
        width: 100%;
        border-radius: var(--border-radius-small);
    }

    .nav-cta {
        margin-top: 8px;
    }

    /* Empathy section */
    .section-empathy .container {
        grid-template-columns: 1fr;
    }

    .empathy-image-wrap {
        order: -1;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Bio layout */
    .bio-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Contact layout */
    .closing-layout {
        grid-template-columns: 1fr;
    }

    .ctas-nav-row {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .nav-logo {
        height: 52px;
    }

    /* Stats grid fallback to flex */
    .stats-row--full {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .stats-row--full .stat-divider {
        display: none;
    }

    .stats-row--full .stat-item {
        flex: 0 0 auto;
        min-width: 120px;
    }
}

@media screen and (max-width: 580px) {
    .site-topbar {
        padding: 6px 16px;
        font-size: 12px;
    }

    .site-nav {
        padding: 8px 16px;
    }

    .site-nav .nav-inner {
        padding: 10px 16px;
    }

    .nav-logo {
        height: 90px;
        width: auto;
        margin-top: -15px;
        margin-bottom: -15px;
        vertical-align: middle;
    }

    .container {
        padding: 0 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .stats-row--full {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .stats-row--full .stat-divider {
        display: none;
    }

    .stat-divider {
        width: 50%;
        height: 1px;
        margin: 0 auto;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-section::after {
        width: 180px;
        height: 260px;
    }

    .section-empathy,
    .section-services,
    .section-bio,
    .section-closing {
        padding: 60px 0;
    }

    .ctas-nav-row {
        grid-template-columns: 1fr;
    }

    .cta-nav-btn {
        font-size: 13px;
        padding: 14px 12px;
    }

    .bio-firma {
        max-width: 140px;
    }

    .services-close-text {
        font-size: var(--h5-font-size);
    }
}