/*
Theme Name: Optikoucing Coach
Theme URI: https://optikoucing.optimus.sk
Author: Optikoucing
Description: Profesionálna tema pre mentálneho kouča s rezervačným systémom
Version: 2.6
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: optikoucing-coach
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #8c786d;
    --secondary-color: #a99387;
    --accent-color: #6f5a50;
    --light-bg: #f5f3ef;
    --surface-color: #fbfaf7;
    --soft-bg: #ede8e2;
    --text-color: #8c786d;
    --muted-text: #aa988e;
    --border-color: #d8cec6;
    --shadow-color: rgba(111, 90, 80, 0.12);
    --brand-green: #9fbe35;
    --brand-green-dark: #78951f;
    --brand-charcoal: #505352;
    --brand-green-soft: #f1f6df;
}

html, body {
    font-family: var(--body-font, 'Cormorant Garamond', Georgia, 'Times New Roman', serif);
    line-height: 1.65;
    color: var(--text-color);
    background-color: var(--light-bg);
    font-size: 19px;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6,
.hero-script {
    font-family: var(--heading-font, 'Cormorant Garamond', Georgia, 'Times New Roman', serif);
}

body {
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
    -webkit-hyphens: none;
    hyphens: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
label,
blockquote,
a,
button {
    overflow-wrap: normal;
    word-break: normal;
    -webkit-hyphens: none;
    hyphens: none;
}

::selection {
    background: var(--soft-bg);
    color: var(--accent-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.12;
}

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

p {
    margin-bottom: 1rem;
}

/* Header & Navigation */
.header {
    background: rgba(245, 243, 239, 0.94);
    color: var(--text-color);
    padding: 0.3rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 var(--border-color);
    backdrop-filter: blur(14px);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 0;
}

.logo a {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    border-radius: 6px;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.logo img {
    display: block;
    max-height: none;
    width: auto;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.brand-logo-frame {
    position: relative;
    display: block;
    width: 230px;
    height: 86px;
    overflow: hidden;
    border-radius: 8px;
}

.brand-logo-image {
    position: absolute;
    top: -67px;
    left: 0;
    display: block;
    width: 230px !important;
    max-width: none;
    max-height: none !important;
    transform-origin: center;
    filter: saturate(1.16) contrast(1.13) brightness(0.98);
    transition: transform 0.45s ease, filter 0.45s ease;
}


.brand-logo-frame::after {
    content: '';
    position: absolute;
    top: -25%;
    left: -55%;
    width: 35%;
    height: 150%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    transform: skewX(-18deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.brand-logo-link:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 7px 11px rgba(111, 90, 80, 0.2));
}

.brand-logo-link:hover .brand-logo-image {
    transform: scale(1.035);
    filter: saturate(1.24) contrast(1.17) brightness(0.98);
}

.brand-logo-link:hover .brand-logo-frame::after {
    left: 125%;
}

nav ul {
    list-style: none;
    display: flex;
    gap: clamp(0.7rem, 1.4vw, 1.5rem);
    align-items: center;
}

nav a {
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
    white-space: nowrap;
}

nav a:hover {
    color: var(--accent-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-color: var(--light-bg);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
        url('../../uploads/edited/titulna-realna-konzultacia.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--text-color);
    padding: 7rem 2rem 5rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.6rem);
    margin-bottom: 1.4rem;
    line-height: 1.05;
    font-weight: 500;
}

.hero p {
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    margin-bottom: 2rem;
    opacity: 1;
    line-height: 1.25;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--surface-color);
    padding: 0.85rem 2.15rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
}

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

.content-wrapper {
    padding: 4rem 0;
}

/* Sections */
section {
    margin: 4rem 0;
}

section h2 {
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.1;
}

.section-subtitle {
    text-align: center;
    color: var(--muted-text);
    font-size: 1.35rem;
    margin-bottom: 2rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 3px;
    box-shadow: 0 10px 30px var(--shadow-color);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    min-width: 0;
}

.service-card:hover {
    box-shadow: 0 14px 36px rgba(111, 90, 80, 0.16);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 1rem 0;
}

.service-duration {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* About Section */
#about {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

#about > h2 {
    margin-bottom: 1.5rem;
}

.about-content,
.about-intro {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}

.about-content > *,
.about-intro > * {
    min-width: 0;
}

.about-image {
    width: 100%;
    height: 390px;
    aspect-ratio: auto;
    max-height: none;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.image-placeholder,
.blog-placeholder {
    background: linear-gradient(135deg, var(--soft-bg) 0%, var(--surface-color) 100%);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
}

.image-placeholder {
    height: 400px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.about-text h3 {
    color: var(--secondary-color);
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
}

.about-text p {
    margin-bottom: 0.6rem;
    line-height: 1.55;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-lead {
    color: var(--accent-color);
    font-size: 1.15rem;
}

.about-details {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: 1.5rem;
    max-width: 1040px;
    margin: 1.5rem auto 0;
}

.about-card {
    min-width: 0;
    padding: clamp(1.4rem, 3vw, 2rem);
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.about-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.about-card ul {
    margin: 0.75rem 0 0 1.2rem;
}

.about-card li {
    margin-bottom: 0.8rem;
    padding-left: 0.2rem;
    line-height: 1.55;
}

.about-card li:last-child {
    margin-bottom: 0;
}

.about-card strong {
    color: var(--accent-color);
}

/* Detailed service content */
#co-je-koucing,
#about,
#life-koucing,
#business-koucing,
#karierne-poradenstvo,
#pricing,
#reservation {
    scroll-margin-top: 110px;
}

.intro-section {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.intro-quote {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--accent-color);
    background: var(--surface-color);
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.45;
    text-align: left;
}

.service-detail {
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.service-detail-alt {
    background: var(--soft-bg);
}

.service-detail-header {
    max-width: 920px;
    margin: 0 auto 2.5rem;
}

.service-detail-header h2 {
    margin-bottom: 1rem;
}

.service-detail-header h3 {
    margin: 1.75rem 0 0.75rem;
    font-size: 1.45rem;
}

.service-lead {
    color: var(--accent-color);
    font-size: 1.18rem;
    line-height: 1.75;
}

.service-tagline {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-style: italic;
}

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

.detail-card,
.career-card {
    padding: clamp(1.4rem, 3vw, 2rem);
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    min-width: 0;
}

.service-detail-alt .detail-card {
    background: var(--surface-color);
}

.detail-card h3,
.career-card h3,
.service-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.45rem;
}

.detail-card ul {
    margin: 1rem 0 0 1.2rem;
}

.detail-card li {
    margin-bottom: 0.65rem;
    padding-left: 0.25rem;
}

.career-card > span {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.career-card strong {
    color: var(--accent-color);
}

.service-cta {
    margin-top: 2rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.service-detail-alt .service-cta {
    background: var(--surface-color);
}

.service-cta .cta-button {
    margin-top: 0.5rem;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(560px, 68vw);
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 1.8rem calc((100% - min(560px, 68vw)) / 2) 2.4rem;
    overscroll-behavior-inline: contain;
}

.blog-grid::-webkit-scrollbar {
    display: none;
}

.blog-carousel {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}

.blog-post {
    background: var(--surface-color);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    scroll-snap-align: center;
    opacity: 0.58;
    transform: scale(0.9);
    filter: saturate(0.78);
}

.blog-post:hover,
.blog-post.is-active {
    box-shadow: 0 14px 36px rgba(111, 90, 80, 0.16);
    opacity: 1;
    transform: scale(1);
    filter: none;
}

.blog-thumbnail {
    width: 100%;
    height: clamp(240px, 30vw, 355px);
    background: linear-gradient(135deg, var(--soft-bg) 0%, var(--surface-color) 100%);
    object-fit: cover;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.blog-post:hover .blog-thumbnail img,
.blog-post.is-active:hover .blog-thumbnail img {
    transform: scale(1.035);
}

.blog-carousel-arrow {
    position: absolute;
    z-index: 3;
    top: 44%;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--surface-color);
    color: var(--accent-color);
    font-size: 1.35rem;
    cursor: pointer;
    box-shadow: 0 10px 26px var(--shadow-color);
    transition: transform .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
}

.blog-carousel-prev { left: 1rem; }
.blog-carousel-next { right: 1rem; }
.blog-carousel-arrow:hover { transform: scale(1.08); background: var(--brand-green); color: #fff; }
.blog-carousel-arrow:disabled { opacity: .3; cursor: default; transform: none; }

.blog-carousel-dots {
    display: flex;
    justify-content: center;
    gap: .55rem;
    margin-top: -.9rem;
}

.blog-carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: var(--border-color);
    cursor: pointer;
    transition: width .3s ease, background-color .3s ease;
}

.blog-carousel-dots button.is-active {
    width: 30px;
    background: var(--brand-green);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-auto-columns: 84vw;
        padding-left: calc((100% - 84vw) / 2);
        padding-right: calc((100% - 84vw) / 2);
        gap: .9rem;
    }
    .blog-post { transform: scale(.96); opacity: .7; }
    .blog-post.is-active { transform: scale(1); opacity: 1; }
    .blog-thumbnail { height: 240px; }
    .blog-carousel-arrow { width: 44px; height: 44px; top: 42%; }
    .blog-carousel-prev { left: .15rem; }
    .blog-carousel-next { right: .15rem; }
}

.blog-placeholder {
    height: 100%;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-post h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
    margin-left: 5px;
}

.blog-post-link,
.post-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-post-link:focus-visible,
.post-card-link:focus-visible {
    outline: 3px solid var(--brand-green);
    outline-offset: 4px;
}

.blog-all-link {
    display: flex;
    justify-content: center;
    margin-top: 2.2rem;
}

/* Vrstvený carousel článkov na titulnej stránke */
.home-articles-carousel {
    position: relative;
    max-width: 1040px;
    perspective: 1300px;
}

.home-articles-carousel .blog-grid {
    position: relative;
    display: block;
    height: 610px;
    padding: 1.7rem 0 2.2rem;
    overflow: hidden;
    perspective: 1300px;
    isolation: isolate;
}

.home-articles-carousel .blog-grid::before {
    content: '';
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: 18px;
    width: min(610px, 75%);
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(91, 70, 56, .18), rgba(91, 70, 56, 0) 70%);
    filter: blur(12px);
    transform: translateX(-50%);
    transition: width .55s ease, opacity .55s ease;
}

.home-articles-carousel .blog-post {
    position: absolute;
    top: 28px;
    left: 50%;
    width: min(500px, 66vw);
    height: 555px;
    border: 0;
    border-radius: 25px;
    background: #d8c9bb;
    opacity: 0;
    transform: translate3d(-50%, 44px, -170px) scale(.62);
    z-index: 1;
    pointer-events: none;
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
    transition: left .82s cubic-bezier(.22,.76,.18,1), transform .82s cubic-bezier(.22,.76,.18,1), opacity .58s ease, filter .72s ease, box-shadow .72s ease;
}

.home-articles-carousel .blog-post.is-active {
    left: 50%;
    opacity: 1;
    transform: translate3d(-50%, 0, 80px) scale(1) rotateY(0);
    z-index: 3;
    pointer-events: auto;
    box-shadow: 0 26px 60px rgba(73,55,45,.24);
}

.home-articles-carousel .blog-post.is-prev {
    left: 16%;
    opacity: .68;
    transform: translate3d(-50%, 44px, -140px) scale(.64) rotateY(7deg);
    pointer-events: auto;
}

.home-articles-carousel .blog-post.is-next {
    left: 84%;
    opacity: .68;
    transform: translate3d(-50%, 44px, -140px) scale(.64) rotateY(-7deg);
    pointer-events: auto;
}

.home-articles-carousel .blog-post.is-wrap-jump {
    opacity: 0 !important;
    transition: none !important;
}

.home-articles-carousel .blog-post:not(.is-active):not(.is-prev):not(.is-next) {
    opacity: 0;
}

.home-articles-carousel .blog-thumbnail {
    position: absolute;
    inset: 0;
    width: auto;
    height: 100%;
    transform: translateZ(0);
    transition: filter .82s ease;
}

.home-articles-carousel .blog-thumbnail img {
    transform: scale(1.065);
    transition: transform 1.05s cubic-bezier(.22,.76,.18,1), filter .82s ease;
    will-change: transform;
}

.home-articles-carousel .blog-post.is-active .blog-thumbnail img {
    transform: scale(1);
}

.home-articles-carousel .blog-post:not(.is-active) .blog-thumbnail {
    filter: saturate(.78) brightness(.9);
}

.home-articles-carousel .blog-thumbnail::after {
    content: '';
    position: absolute;
    inset: 34% 0 0;
    background: linear-gradient(180deg, transparent, rgba(42,30,23,.38));
}

.home-articles-carousel .blog-content {
    position: absolute;
    z-index: 2;
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 1.15rem 1.2rem;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 20px;
    background: rgba(250,247,241,.92);
    box-shadow: 0 14px 34px rgba(54,40,31,.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: .78;
    transform: translateY(14px) translateZ(24px);
    transition: transform .78s cubic-bezier(.22,.76,.18,1), opacity .55s ease, box-shadow .72s ease;
}

.home-articles-carousel .blog-post.is-active .blog-content {
    opacity: 1;
    transform: translateY(0) translateZ(24px);
}

.home-articles-carousel .blog-post h3 {
    color: #3d2c23;
    font-size: 1.55rem;
    line-height: 1.04;
    margin: .55rem 0 .9rem;
}

.home-articles-carousel .blog-post.is-active h3 {
    font-size: clamp(2rem, 4vw, 2.85rem);
}

.home-articles-carousel .read-more {
    padding: .65rem 1rem;
    border-radius: 999px;
    background: var(--brand-green);
    color: #fff;
}

.home-articles-carousel .blog-post:not(.is-active) .read-more {
    display: none;
}

.home-articles-carousel .blog-carousel-prev { left: .4rem; }
.home-articles-carousel .blog-carousel-next { right: .4rem; }
.home-article-benefits { margin-top: 1.5rem; margin-bottom: 1.5rem; }

@media (max-width: 768px) {
    .home-articles-carousel .blog-grid {
        height: 550px;
        padding: 1rem 0 1.5rem;
    }
    .home-articles-carousel .blog-post,
    .home-articles-carousel .blog-post.is-active {
        top: 20px;
        width: min(84vw, 440px);
        height: 520px;
    }
    .home-articles-carousel .blog-post.is-active { left: 50%; transform: translate3d(-50%, 0, 70px) scale(1); }
    .home-articles-carousel .blog-post.is-prev { left: -8%; transform: translate3d(-50%, 28px, -130px) scale(.72) rotateY(6deg); }
    .home-articles-carousel .blog-post.is-next { left: 108%; transform: translate3d(-50%, 28px, -130px) scale(.72) rotateY(-6deg); }
    .home-articles-carousel .blog-post h3,
    .home-articles-carousel .blog-post.is-active h3 { font-size: clamp(1.8rem, 8vw, 2.45rem); }
}

.all-articles-page {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.all-articles-page .page-header {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: clamp(2rem, 8vw, 7rem);
    text-align: left;
    padding: 2.5rem 0 2rem;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.all-articles-page .page-header .pricing-label {
    text-transform: uppercase;
    letter-spacing: .17em;
    font-family: Arial, sans-serif;
    font-size: .72rem;
}

.all-articles-page .page-title {
    font-size: clamp(3.2rem, 7vw, 6rem);
    line-height: .92;
    color: #372921;
    letter-spacing: -.035em;
}

.all-articles-page .archive-description {
    position: relative;
    max-width: 390px;
    margin: 0 0 .55rem;
    padding-bottom: 1rem;
    font-family: Arial, sans-serif;
    font-size: .88rem;
    line-height: 1.55;
    color: #6f625a;
}

.all-articles-page .archive-description::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--brand-green);
}

.all-articles-carousel {
    max-width: 1220px;
    margin-top: 1rem;
}

.all-articles-carousel .blog-grid {
    display: flex;
    align-items: center;
    padding-left: calc((100% - min(520px, 68vw)) / 2);
    padding-right: calc((100% - min(520px, 68vw)) / 2);
    padding-top: 2.5rem;
    padding-bottom: 2.8rem;
}

.all-articles-carousel .blog-post {
    position: relative;
    flex: 0 0 285px;
    height: 470px;
    border: 0;
    border-radius: 28px;
    background: #d8c9bb;
    transition: flex-basis .55s cubic-bezier(.2,.8,.2,1), height .55s cubic-bezier(.2,.8,.2,1), transform .4s ease, opacity .4s ease, box-shadow .4s ease;
}

.all-articles-carousel .blog-post.is-active {
    flex-basis: min(520px, 68vw);
    height: 590px;
    box-shadow: 0 24px 55px rgba(73, 55, 45, .22);
}

.all-articles-carousel .blog-thumbnail {
    position: absolute;
    inset: 0;
    height: 100%;
}

.all-articles-carousel .blog-thumbnail::after {
    content: '';
    position: absolute;
    inset: 32% 0 0;
    background: linear-gradient(180deg, transparent, rgba(39, 29, 23, .38));
}

.all-articles-carousel .blog-content {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 0;
    padding: 1.25rem 1.3rem;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 22px;
    background: rgba(250,247,241,.91);
    box-shadow: 0 14px 35px rgba(54, 40, 31, .15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.all-articles-carousel .blog-post h2 {
    color: #3d2c23;
    font-size: 1.65rem;
    line-height: 1.03;
    margin: .6rem 0 1rem;
}

.all-articles-carousel .blog-post.is-active h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.article-topic {
    display: inline-block;
    color: #687e21;
    font-family: Arial, sans-serif;
    font-size: .72rem;
    font-weight: 600;
}

.article-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: Arial, sans-serif;
    font-size: .72rem;
}

.article-reading-time { color: #766b65; white-space: nowrap; }

.all-articles-carousel .read-more {
    padding: .7rem 1.15rem;
    border-radius: 999px;
    background: var(--brand-green);
    color: #fff;
    white-space: nowrap;
}

.all-articles-carousel .blog-post:not(.is-active) .read-more {
    display: none;
}

.all-articles-carousel .blog-carousel-dots {
    flex-wrap: wrap;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.article-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 2.4rem auto 3rem;
}

.article-benefits article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: .8rem 1.5rem;
}

.article-benefits article + article { border-left: 1px solid var(--border-color); }
.article-benefits strong, .article-benefits small { display: block; }
.article-benefits strong { color: #4d3b31; }
.article-benefits small { color: #887a71; font-family: Arial, sans-serif; font-size: .72rem; }
.article-benefit-icon { width: 48px; color: var(--brand-green); }
.article-benefit-icon svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.articles-inspiration {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    min-height: 310px;
    margin: 3rem 0 0;
    padding: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    border-radius: 28px;
    background-image: linear-gradient(90deg, rgba(75,60,50,.18), rgba(249,245,238,.82)), url('/wp-content/uploads/edited/titulna-realna-konzultacia.png');
    background-size: cover;
    background-position: center;
}

.articles-inspiration-script {
    color: #fff;
    font-family: 'Caveat', cursive;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: .9;
    transform: rotate(-6deg);
    text-shadow: 0 3px 18px rgba(0,0,0,.28);
}

.articles-inspiration blockquote {
    justify-self: end;
    color: #4a382f;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    line-height: 1.15;
}

@media (max-width: 768px) {
    .all-articles-page { padding-top: 1.5rem; }
    .all-articles-page .page-header { grid-template-columns: 1fr; gap: 1rem; }
    .all-articles-page .page-title { font-size: clamp(3rem, 15vw, 4.5rem); }
    .all-articles-carousel .blog-grid {
        display: flex;
        padding-left: calc((100% - 84vw) / 2);
        padding-right: calc((100% - 84vw) / 2);
    }
    .all-articles-carousel .blog-post,
    .all-articles-carousel .blog-post.is-active { flex-basis: 84vw; height: 540px; }
    .all-articles-carousel .blog-post h2,
    .all-articles-carousel .blog-post.is-active h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .article-benefits { grid-template-columns: 1fr; }
    .article-benefits article { justify-content: flex-start; }
    .article-benefits article + article { border-left: 0; border-top: 1px solid var(--border-color); }
    .articles-inspiration { grid-template-columns: 1fr; min-height: 360px; }
    .articles-inspiration blockquote { justify-self: start; }
}

/* Pricing & e-mail reservation */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 2.25rem 2rem;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    box-shadow: 0 10px 30px var(--shadow-color);
    min-width: 0;
}

.pricing-card-featured {
    border: 2px solid var(--accent-color);
    transform: translateY(-0.5rem);
}

.pricing-label {
    margin-bottom: 0.65rem;
    color: var(--secondary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-card h3 {
    min-height: 2.3em;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.pricing-card > p:not(.pricing-label, .pricing-duration, .pricing-price) {
    flex-grow: 1;
}

.pricing-duration {
    margin-top: 1.4rem;
    color: var(--muted-text);
}

.pricing-price {
    margin: 0.2rem 0 1.4rem;
    color: var(--accent-color);
    font-size: 2.35rem;
    font-weight: 600;
    line-height: 1;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
}

.pricing-price-text {
    font-size: 1.55rem;
}

.pricing-card .cta-button {
    align-self: flex-start;
}

#reservation {
    padding: 4rem clamp(1rem, 5vw, 4rem);
    background: var(--soft-bg);
    border-radius: 3px;
}

.reservation-heading {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.reservation-heading h2 {
    margin-bottom: 0.8rem;
}

.reservation-card {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    box-shadow: 0 14px 36px var(--shadow-color);
}

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

.form-notice {
    max-width: 820px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.25rem;
    border: 1px solid;
    background: var(--surface-color);
}

.form-notice-success {
    border-color: #6f876f;
    color: #486348;
}

.form-notice-error {
    border-color: #a96d67;
    color: #814942;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
}

.consent-field {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.consent-field input {
    margin-top: 0.25rem;
}

.form-helper {
    margin-top: 0.75rem;
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--accent-color);
    background: var(--surface-color);
    transition: all 0.3s ease;
    min-width: 0;
}

select {
    -webkit-appearance: menulist;
    appearance: auto;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(111, 90, 80, 0.1);
}

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

.form-button {
    background: var(--accent-color);
    color: var(--surface-color);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    background: var(--primary-color);
}

/* Footer */
.footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 15%, rgba(169, 147, 135, 0.2), transparent 36%),
        linear-gradient(135deg, #f7f5f1 0%, #ece7e1 100%);
    color: var(--accent-color);
    padding: clamp(3rem, 6vw, 5rem) 2rem 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(111, 90, 80, 0.14);
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
    margin-bottom: 3.5rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.brand-logo-frame-footer {
    width: 310px;
    height: 116px;
    border-radius: 0;
}

.brand-logo-frame-footer .brand-logo-image {
    top: -91px;
    width: 310px !important;
}

.footer-logo a:hover {
    transform: translateY(-2px) scale(1.035);
    filter: drop-shadow(0 9px 14px rgba(111, 90, 80, 0.2));
}

.footer-tagline {
    max-width: 390px;
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.55;
}

.footer-eyebrow {
    margin-bottom: 0.35rem;
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-contact h2 {
    margin-bottom: 0.7rem;
    font-size: clamp(2rem, 4vw, 3.15rem);
    text-align: left;
}

.footer-contact > p:not(.footer-eyebrow) {
    max-width: 610px;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    padding: 1rem 1.1rem;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(111, 90, 80, 0.14);
    border-radius: 10px;
    box-shadow: 0 9px 24px rgba(111, 90, 80, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.footer-contact-card > span:last-child {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.footer-contact-card:hover {
    color: var(--accent-color);
    border-color: rgba(111, 90, 80, 0.46);
    box-shadow: 0 14px 30px rgba(111, 90, 80, 0.14);
    transform: translateY(-4px);
}

.contact-icon {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 1.15rem;
    box-shadow: 0 6px 14px rgba(111, 90, 80, 0.22);
}

.footer-contact-card small,
.footer-contact-card strong {
    display: block;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    color: var(--brand-charcoal);
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(80, 83, 82, 0.14);
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-socials a:hover {
    color: var(--brand-green-dark);
    border-color: rgba(159, 190, 53, 0.7);
    box-shadow: 0 9px 24px rgba(120, 149, 31, 0.13);
    transform: translateY(-2px);
}

.social-icon {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    color: #fff;
    background: var(--brand-charcoal);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.social-icon-instagram {
    background: var(--brand-green-dark);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-icon .icon-dot {
    fill: currentColor;
    stroke: none;
}

.social-section {
    padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
    text-align: center;
    background: var(--soft-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.social-section > h2 {
    margin-bottom: 1rem;
}

.social-section .pricing-label {
    text-align: center;
}

.social-section-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 760px;
    margin: 0 auto;
}

.social-profile-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    min-width: 0;
    padding: 1.15rem 1.25rem;
    color: var(--brand-charcoal);
    text-align: left;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.social-profile-card:hover {
    color: var(--brand-charcoal);
    border-color: rgba(159, 190, 53, 0.7);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.social-profile-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(120, 149, 31, 0.2);
}

.social-profile-icon-linkedin {
    background: var(--brand-charcoal);
    box-shadow: 0 8px 20px rgba(80, 83, 82, 0.18);
}

.social-profile-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-profile-icon .icon-dot {
    fill: currentColor;
    stroke: none;
}

.social-profile-copy,
.social-profile-copy strong,
.social-profile-copy small {
    display: block;
    min-width: 0;
}

.social-profile-copy strong {
    color: var(--brand-charcoal);
    font-size: 1.25rem;
    line-height: 1.1;
}

.social-profile-copy small {
    margin-top: 0.2rem;
    overflow-wrap: anywhere;
    color: var(--muted-text);
    font-size: 0.82rem;
}

.social-profile-arrow {
    color: var(--brand-green-dark);
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.social-profile-card:hover .social-profile-arrow {
    transform: translate(3px, -3px);
}

.footer-contact-card small {
    margin-bottom: 0.1rem;
    color: var(--muted-text);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-contact-card strong {
    overflow-wrap: anywhere;
    font-size: 1rem;
    line-height: 1.25;
}

@media (prefers-reduced-motion: reduce) {
    .logo a,
    .logo img,
    .footer-logo a,
    .brand-logo-image,
    .brand-logo-frame::after {
        transition: none;
    }

    .logo a:hover,
    .footer-logo a:hover {
        transform: none;
    }
}

@media (max-width: 980px) {
    .header-inner {
        flex-direction: column;
        gap: 0.65rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    border-top: 1px solid rgba(111, 90, 80, 0.14);
    padding-top: 1.25rem;
    text-align: center;
    color: var(--muted-text);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

/* Bookly Styling */
.bookly-container {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    margin-bottom: 2rem;
}

.bookly-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Responsívny dizajn */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer-logo {
        display: flex;
    }

    .footer-tagline,
    .footer-contact > p:not(.footer-eyebrow) {
        margin-right: auto;
        margin-left: auto;
    }

    .footer-contact h2 {
        text-align: center;
    }

    .brand-logo-frame {
        width: 205px;
        height: 77px;
    }

    .brand-logo-image {
        top: -60px;
        width: 205px !important;
    }

    .brand-logo-frame-footer {
        width: 240px;
        height: 90px;
    }

    .brand-logo-frame-footer .brand-logo-image {
        top: -70px;
        width: 240px !important;
    }

    .pricing-grid,
    .form-row,
    .detail-grid,
    .career-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: none;
    }

    .header-inner {
        flex-direction: column;
        gap: 0.75rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero p {
        font-size: 1.45rem;
    }

    section h2 {
        font-size: 2.4rem;
    }

    .about-content,
    .about-intro,
    .about-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        width: min(100%, 420px);
        height: 440px;
        margin: 0 auto;
    }

    .header-inner {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem 0.8rem;
        text-align: center;
    }

    nav a {
        white-space: nowrap;
        font-size: 0.92rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2.35rem;
    }
}

/* Homepage hero podľa nového vizuálneho návrhu */
.nav-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 0.55rem 1.15rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-green), #86a82c);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(120, 149, 31, 0.2);
}

.nav-contact a:hover,
.nav-contact a.is-active {
    color: #fff;
    background: linear-gradient(135deg, #8eae2f, var(--brand-green-dark));
    transform: translateY(-2px);
}

.nav-contact a::after {
    display: none;
}

.hero {
    min-height: 0;
    display: block;
    padding: 0;
    color: var(--brand-charcoal);
    text-align: left;
    background: #fbfaf7;
    overflow: hidden;
}

.hero-main {
    position: relative;
    display: grid;
    grid-template-columns: minmax(420px, 40%) minmax(0, 60%);
    min-height: clamp(550px, 68vh, 700px);
    background: #f8f2eb;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    margin: 0;
    padding: clamp(3.5rem, 7vw, 7rem) clamp(2.5rem, 7vw, 7.5rem);
    background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,.9), transparent 38%),
        linear-gradient(135deg, #fbf8f3 0%, #f3e9de 100%);
    border-radius: 0 48% 48% 0 / 0 52% 52% 0;
    animation: hero-arrival 0.9s cubic-bezier(.2,.8,.2,1) both;
}

.hero-content::after {
    content: '';
    position: absolute;
    z-index: -1;
    right: -10%;
    bottom: -9%;
    width: 72%;
    height: 34%;
    background: rgba(255,255,255,.45);
    border-radius: 50%;
    filter: blur(1px);
}

.hero-eyebrow {
    margin: 0 0 0.75rem;
    color: var(--brand-green-dark);
    font-size: 0.82rem !important;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 600px;
    margin: 0 0 1.55rem;
    color: #362b27;
    font-size: clamp(3.75rem, 5.7vw, 6.5rem);
    font-weight: 600;
    line-height: 0.82;
    letter-spacing: -0.025em;
    text-shadow: none;
}

.hero-script {
    position: relative;
    display: inline-block;
    margin-left: 0.08em;
    color: var(--brand-green-dark);
    font-family: 'Caveat', 'Segoe Print', cursive;
    font-size: 1.12em;
    font-weight: 500;
    letter-spacing: 0;
    transform: rotate(-3deg);
}

.hero-script::after {
    content: '';
    position: absolute;
    right: -0.12em;
    bottom: -0.02em;
    left: -0.1em;
    height: 0.08em;
    background: var(--brand-green);
    border-radius: 50%;
    transform: rotate(-2deg);
}

.hero .hero-subtitle {
    max-width: 470px;
    margin: 0 0 1.8rem;
    color: #493d38;
    font-size: clamp(1.25rem, 1.75vw, 1.6rem);
    font-weight: 600;
    line-height: 1.45;
}

.hero-button {
    align-self: flex-start;
    padding: 0.8rem 1.75rem;
    color: #fff;
    background: #3c2f2a;
    border-color: #3c2f2a;
}

.hero-button span {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.hero-button:hover span {
    transform: translateX(4px);
}

.hero-media {
    position: relative;
    z-index: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 0 0 0 18% / 0 0 0 14%;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248,242,235,.13), transparent 22%);
    pointer-events: none;
}

.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 7s ease;
}

.hero:hover .hero-media img {
    transform: scale(1.025);
}

.hero-values {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(2.25rem, 4vw, 3.5rem) 2rem clamp(3rem, 5vw, 4.5rem);
    background: #fbfaf7;
}

.hero-values::before,
.hero-values::after {
    content: '';
    position: absolute;
    z-index: -1;
    right: -20vw;
    bottom: -3rem;
    left: -20vw;
    height: 5.5rem;
    background: #f0e2d5;
    border-radius: 50% 50% 0 0 / 70% 70% 0 0;
    opacity: .68;
}

.hero-values::after {
    bottom: -4rem;
    height: 4rem;
    background: #ead8c8;
    opacity: .45;
    transform: translateX(15%);
}

.hero-values h2 {
    margin: 0 0 2rem;
    color: #493d38;
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 600;
    text-align: center;
}

.hero-values h2::after {
    display: none;
}

.hero-values h2 span {
    color: var(--brand-green-dark);
    font-family: 'Caveat', 'Segoe Print', cursive;
    font-size: 1.2em;
    font-weight: 500;
}

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

.hero-value {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
    min-width: 0;
    padding: 0.4rem clamp(1.25rem, 3vw, 2.5rem);
}

.hero-value + .hero-value {
    border-left: 1px solid #e6dcd3;
}

.hero-value-icon {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    color: var(--brand-green-dark);
    background: #fffdfa;
    border: 1px solid #eee5dc;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(90, 67, 55, .09);
}

.hero-value-icon-neutral {
    color: #8c786d;
}

.hero-value-icon svg {
    width: 46px;
    height: 46px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-value strong,
.hero-value small {
    display: block;
}

.hero-value strong {
    margin-bottom: 0.4rem;
    color: #493d38;
    font-size: 1.28rem;
    line-height: 1.15;
}

.hero-value small {
    color: #71625b;
    font-size: 0.94rem;
    line-height: 1.45;
}

@media (max-width: 1180px) {
    .hero-main {
        grid-template-columns: minmax(390px, 44%) minmax(0, 56%);
    }

    .hero-content {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .hero h1 {
        font-size: clamp(3.7rem, 6.2vw, 5.25rem);
    }

    .hero-value {
        grid-template-columns: 70px minmax(0, 1fr);
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .hero-value-icon {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 980px) {
    .nav-contact a {
        margin-top: 0.35rem;
        text-align: center;
    }

    .hero-main {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-content {
        min-height: 540px;
        align-items: center;
        padding: 4rem 1.5rem 4.5rem;
        text-align: center;
        border-radius: 0 0 48% 48% / 0 0 11% 11%;
    }

    .hero h1 {
        font-size: clamp(3.55rem, 11vw, 5.4rem);
    }

    .hero .hero-subtitle {
        max-width: 590px;
    }

    .hero-button {
        align-self: center;
    }

    .hero-media {
        height: min(68vw, 590px);
        min-height: 380px;
        margin-top: -1.8rem;
        border-radius: 8% 8% 0 0 / 6% 6% 0 0;
    }

    .hero-media img {
        object-position: center 44%;
    }

    .hero-values-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .hero-value {
        padding: 1.25rem 0;
    }

    .hero-value + .hero-value {
        border-top: 1px solid #e6dcd3;
        border-left: 0;
    }
}

@media (max-width: 600px) {
    .hero-content {
        min-height: 500px;
        padding: 3.25rem 1.1rem 4rem;
    }

    .hero-eyebrow {
        font-size: 0.72rem !important;
    }

    .hero h1 {
        font-size: clamp(3.15rem, 16vw, 4.45rem);
        line-height: .86;
    }

    .hero .hero-subtitle {
        max-width: 330px;
        font-size: 1.18rem;
    }

    .hero-media {
        height: 72vw;
        min-height: 295px;
    }

    .hero-values {
        padding-right: 1.1rem;
        padding-left: 1.1rem;
    }

    .hero-values h2 {
        font-size: 2.15rem;
    }

    .hero-value {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 1rem;
    }

    .hero-value-icon {
        width: 64px;
        height: 64px;
    }

    .hero-value-icon svg {
        width: 38px;
        height: 38px;
    }
}

/* Modern interaction layer */
:root {
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow-soft: 0 18px 55px rgba(76, 58, 50, 0.09);
    --shadow-hover: 0 24px 68px rgba(76, 58, 50, 0.16);
}

body {
    overflow-x: hidden;
}

.header {
    transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.header.is-scrolled {
    background: rgba(250, 248, 244, 0.92);
    box-shadow: 0 10px 35px rgba(76, 58, 50, 0.09);
}

.header.is-scrolled .brand-logo-frame {
    transform: scale(0.9);
    transform-origin: left center;
}

.brand-logo-frame {
    transition: transform 0.35s ease;
}

.primary-navigation a.is-active {
    color: var(--brand-green-dark);
}

.primary-navigation a.is-active::after {
    width: 100%;
    background: var(--brand-green);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 12px;
    color: var(--brand-charcoal);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(76, 58, 50, 0.08);
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
    color: var(--brand-green-dark);
    border-color: rgba(159, 190, 53, 0.72);
    box-shadow: 0 10px 28px rgba(120, 149, 31, 0.18);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
    position: relative;
    isolation: isolate;
    min-height: min(760px, calc(100svh - 98px));
    display: grid;
    place-items: center;
    margin-top: 0;
    overflow: hidden;
    background-attachment: fixed;
}

.hero::before {
    content: none;
}

.hero-content {
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius-lg);
    animation: hero-arrival 0.9s cubic-bezier(.2,.8,.2,1) both;
}

.hero h1 {
    text-wrap: balance;
    text-shadow: 0 2px 28px rgba(255, 255, 255, 0.85);
}

.hero p,
.section-subtitle,
.service-detail-header p {
    text-wrap: pretty;
}

@keyframes hero-arrival {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.cta-button,
.form-button {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(76, 58, 50, 0.18);
    transform: translateZ(0);
}

.cta-button,
.form-button {
    background: var(--brand-charcoal);
    border-color: var(--brand-charcoal);
}

.cta-button:hover,
.form-button:hover {
    color: var(--brand-green-dark);
    border-color: var(--brand-green);
    background: var(--brand-green-soft);
}

.cta-button::before,
.form-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.25) 50%, transparent 75%);
    transform: translateX(-130%);
    transition: transform 0.65s ease;
}

.cta-button:hover,
.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(76, 58, 50, 0.22);
}

.cta-button:hover::before,
.form-button:hover::before {
    transform: translateX(130%);
}

section h2 {
    text-wrap: balance;
}

section > h2::after,
.service-detail-header > h2::after {
    content: '';
    display: block;
    width: 54px;
    height: 2px;
    margin: 0.55rem auto 0;
    background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
}

.pricing-label,
.career-card > span {
    color: var(--brand-green-dark);
}

.service-card,
.about-card,
.detail-card,
.career-card,
.pricing-card,
.reservation-card,
.blog-post,
.service-detail,
#reservation {
    border-radius: var(--radius-md);
}

.service-card,
.about-card,
.detail-card,
.career-card,
.pricing-card,
.blog-post {
    position: relative;
    overflow: hidden;
    transition: transform 0.38s cubic-bezier(.2,.8,.2,1), box-shadow 0.38s ease, border-color 0.38s ease;
}

.service-card::before,
.about-card::before,
.detail-card::before,
.career-card::before,
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover,
.about-card:hover,
.detail-card:hover,
.career-card:hover,
.pricing-card:hover,
.blog-post:hover {
    transform: translateY(-7px);
    border-color: rgba(111, 90, 80, 0.3);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before,
.about-card:hover::before,
.detail-card:hover::before,
.career-card:hover::before,
.pricing-card:hover::before {
    opacity: 1;
}

.about-image {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.about-image img {
    transition: transform 0.8s cubic-bezier(.2,.8,.2,1), filter 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.035);
    filter: contrast(1.02) saturate(1.03);
}

.intro-quote,
.service-cta {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    border-left-color: var(--brand-green);
}

.footer {
    background:
        radial-gradient(circle at 12% 15%, rgba(159, 190, 53, 0.14), transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(80, 83, 82, 0.08), transparent 30%),
        linear-gradient(135deg, #faf9f5 0%, #eeeae4 100%);
}

.footer-eyebrow {
    color: var(--brand-green-dark);
}

.footer-contact-card:hover {
    border-color: rgba(159, 190, 53, 0.65);
    box-shadow: 0 14px 34px rgba(120, 149, 31, 0.14);
}

.reservation-card input,
.reservation-card select,
.reservation-card textarea {
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.72);
}

.js .reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease var(--reveal-delay, 0ms), transform 0.7s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms);
}

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

@media (max-width: 980px) {
    .header-inner {
        position: relative;
        min-height: 82px;
        flex-direction: row;
        gap: 1rem;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .primary-navigation {
        position: absolute;
        top: calc(100% + 8px);
        right: 1rem;
        left: 1rem;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        background: rgba(250, 248, 244, 0.98);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        box-shadow: 0 22px 60px rgba(76, 58, 50, 0.18);
        transform: translateY(-10px);
        transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }

    .primary-navigation.is-open {
        max-height: 520px;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .primary-navigation ul {
        display: grid;
        gap: 0;
        padding: 0.75rem;
    }

    .primary-navigation li + li {
        border-top: 1px solid rgba(111, 90, 80, 0.1);
    }

    .primary-navigation a {
        display: block;
        padding: 0.72rem 0.8rem;
        font-size: 1.05rem;
        white-space: normal;
    }

    .primary-navigation a::after {
        display: none;
    }

    .hero {
        min-height: 650px;
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    html, body { font-size: 17px; }
    .container { padding: 0 1.1rem; }
    .content-wrapper { padding-top: 2.25rem; }
    section { margin: 3rem 0; }
    section h2 { margin-bottom: 2rem; font-size: clamp(2.2rem, 10vw, 3rem); }

    .brand-logo-frame {
        width: 185px;
        height: 69px;
    }

    .brand-logo-image {
        top: -54px;
        width: 185px !important;
    }

    .brand-logo-frame-footer {
        width: min(280px, calc(100vw - 2.5rem));
        height: min(105px, calc((100vw - 2.5rem) * 0.375));
        transform: none !important;
    }

    .brand-logo-frame-footer .brand-logo-image {
        top: -78%;
        left: 0;
        width: 100% !important;
    }

    .footer-contact-card {
        min-height: 82px;
        padding: 1rem 1.15rem;
    }

    .footer-contact-card small,
    .footer-contact-card strong {
        text-align: left;
    }

    .footer-socials {
        justify-content: center;
    }

    .social-section-links {
        grid-template-columns: 1fr;
    }

    .social-profile-card {
        width: 100%;
    }

    .header.is-scrolled .brand-logo-frame { transform: scale(0.94); }
    .hero { min-height: 610px; padding: 4rem 1rem; background-position: 44% center; }
    .hero-content { padding: 2rem 1rem; }
    .hero h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
    .hero p { font-size: 1.3rem; }

    .service-detail,
    #reservation { padding: 2rem 1.1rem; }
    .service-card,
    .about-card,
    .detail-card,
    .career-card,
    .pricing-card { padding: 1.5rem; }
    .about-image { height: min(115vw, 470px); }
    .footer { margin-top: 2rem; }
}

@media (hover: none) {
    .service-card:hover,
    .about-card:hover,
    .detail-card:hover,
    .career-card:hover,
    .pricing-card:hover,
    .blog-post:hover,
    .cta-button:hover,
    .form-button:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .js .reveal-on-scroll { opacity: 1; transform: none; }
    .hero { background-attachment: scroll; }
}

/* =========== ARCHÍV, VYHĽADÁVANIA & 404 =========== */

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.post-card {
    background: var(--surface-color);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(111, 90, 80, 0.16);
}

.post-thumbnail {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light-bg);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.post-title a {
    color: var(--primary-color);
}

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

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 1rem;
}

.post-date::before {
    content: "";
}

.post-author::before {
    content: "";
}

.post-excerpt {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.read-more {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.read-more:hover {
    border-bottom-color: var(--accent-color);
    transform: translateX(4px);
}

/* Page Headers */
.page-header {
    background: var(--surface-color);
    color: var(--text-color);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.page-title {
    font-size: 2.5rem;
    margin: 0;
}

.archive-description {
    margin-top: 1rem;
    opacity: 0.9;
}

/* 404 Error Page */
.error-404 {
    text-align: center;
    padding: 3rem 2rem;
}

.error-404 .page-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.no-results {
    background: var(--surface-color);
    padding: 3rem 2rem;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.no-results p {
    font-size: 1.1rem;
    margin: 1rem 0;
    color: var(--text-color);
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--accent-color);
}

.search-form button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: var(--surface-color);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: var(--primary-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
    background: var(--secondary-color);
    color: var(--surface-color);
    border-color: var(--secondary-color);
}

/* Comments Section */
.comments-area {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 3px;
    border: 1px solid var(--border-color);
}

.comments-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.comment-list {
    list-style: none;
    margin-bottom: 2rem;
}

.comment {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 3px;
}

.comment-author {
    font-weight: bold;
    color: var(--primary-color);
}

.comment-text {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: var(--text-color);
}

.comment-meta {
    font-size: 0.85rem;
    color: var(--muted-text);
}

/* Comment Form */
.comment-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 3px;
    margin-top: 2rem;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.comment-form textarea:focus,
.comment-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(111, 90, 80, 0.1);
}

.comment-form-submit {
    margin-top: 1rem;
}

.comment-form input[type="submit"] {
    background: var(--accent-color);
    color: var(--surface-color);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    background: var(--primary-color);
}

/* Responsive - Posts Grid */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .page-header {
        padding: 2rem 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .post-thumbnail {
        height: 200px;
    }

    .post-content {
        padding: 1.5rem;
    }

    .post-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 1.5rem 1rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .comment {
        flex-direction: column;
        gap: 0;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .pagination {
        gap: 0.5rem;
    }

    .pagination a,
    .pagination span {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Zachovanie nového hero layoutu nad staršími kompatibilnými pravidlami. */
body.home .hero {
    min-height: 0;
    display: block;
    padding: 0;
    text-align: left;
    background: #fbfaf7;
    background-image: none;
    background-attachment: scroll;
}

body.home .hero-main {
    grid-template-columns: minmax(440px, 42%) minmax(0, 58%);
    min-height: clamp(540px, 58vh, 620px);
}

body.home .hero-content {
    max-width: none;
    margin: 0;
    padding: clamp(3rem, 5vw, 5rem) clamp(2.5rem, 5vw, 5rem);
    border-radius: 0 48% 48% 0 / 0 52% 52% 0;
}

body.home .hero h1 {
    font-size: clamp(3.75rem, 4.8vw, 5.2rem);
    line-height: .86;
    text-shadow: none;
}

@media (max-width: 1180px) {
    body.home .hero-main {
        grid-template-columns: minmax(390px, 44%) minmax(0, 56%);
    }

    body.home .hero-content {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    body.home .hero h1 {
        font-size: clamp(3.7rem, 6.2vw, 5.25rem);
    }
}

@media (max-width: 980px) {
    body.home .hero {
        min-height: 0;
    }

    body.home .hero-main {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    body.home .hero-content {
        min-height: 540px;
        padding: 4rem 1.5rem 4.5rem;
        border-radius: 0 0 48% 48% / 0 0 11% 11%;
    }

    body.home .hero h1 {
        font-size: clamp(3.55rem, 11vw, 5.4rem);
    }
}

@media (max-width: 600px) {
    body.home .hero-content {
        min-height: 500px;
        padding: 3.25rem 1.1rem 4rem;
    }

    body.home .hero h1 {
        font-size: clamp(3.15rem, 16vw, 4.45rem);
        line-height: .86;
    }
}

/* Sekcia Čo je koučing podľa nového vizuálneho návrhu */
body.home .coaching-intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(420px, 42%) minmax(0, 58%);
    align-items: center;
    width: min(1440px, calc(100vw - 3rem));
    max-width: none;
    min-height: 690px;
    margin: 4rem 50% 5rem;
    padding: 0;
    text-align: left;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,.88), transparent 34%),
        linear-gradient(135deg, #fbf8f3 0%, #f6eee6 100%);
    border: 1px solid rgba(216, 206, 198, .72);
    border-radius: 28px;
    box-shadow: 0 22px 65px rgba(76, 58, 50, .08);
    overflow: hidden;
    transform: translateX(-50%);
}

.coaching-intro-copy {
    position: relative;
    z-index: 2;
    padding: clamp(2.5rem, 5vw, 5.5rem) clamp(2.25rem, 5vw, 5.25rem);
}

.coaching-intro-copy::after {
    content: '';
    position: absolute;
    z-index: -1;
    right: -14%;
    bottom: -9%;
    width: 76%;
    height: 34%;
    background: rgba(255,255,255,.45);
    border-radius: 50%;
}

.coaching-intro .pricing-label {
    margin-bottom: 1.3rem;
    color: var(--brand-green-dark);
    font-size: .88rem;
    letter-spacing: .13em;
}

body.home .coaching-intro h2 {
    margin: 0;
    color: #493d38;
    font-size: clamp(3.5rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: .98;
    text-align: left;
}

body.home .coaching-intro h2::after {
    display: none;
}

.coaching-intro-line {
    display: block;
    width: 56px;
    height: 2px;
    margin: 1.7rem 0 2rem;
    background: var(--brand-green);
    border-radius: 2px;
}

body.home .coaching-intro .intro-quote {
    margin: 0;
    padding: clamp(1.5rem, 2.35vw, 2.15rem);
    color: #665650;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(216, 206, 198, .62);
    border-left: 4px solid var(--brand-green);
    border-radius: 0 22px 22px 0;
    box-shadow: 0 14px 35px rgba(76, 58, 50, .07);
    font-size: clamp(1.12rem, 1.45vw, 1.3rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.58;
    text-align: left;
}

.coaching-intro-media {
    align-self: stretch;
    min-width: 0;
    min-height: 690px;
    margin: 0;
    overflow: hidden;
    border-radius: 28px 0 0 28px;
}

.coaching-intro-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 6s ease, filter .5s ease;
}

.coaching-intro:hover .coaching-intro-media img {
    transform: scale(1.025);
    filter: contrast(1.02) saturate(1.02);
}

@media (max-width: 1100px) {
    body.home .coaching-intro {
        grid-template-columns: minmax(370px, 44%) minmax(0, 56%);
        min-height: 620px;
    }

    .coaching-intro-copy {
        padding: 3rem 2.5rem;
    }

    body.home .coaching-intro h2 {
        font-size: clamp(3.25rem, 5.6vw, 4.4rem);
    }

    .coaching-intro-media {
        min-height: 620px;
    }
}

@media (max-width: 820px) {
    body.home .coaching-intro {
        grid-template-columns: 1fr;
        width: calc(100vw - 2rem);
        min-height: 0;
        margin-top: 3rem;
        margin-bottom: 4rem;
    }

    .coaching-intro-copy {
        padding: 3.25rem 2rem;
    }

    body.home .coaching-intro h2 {
        font-size: clamp(3.15rem, 10vw, 4.25rem);
    }

    .coaching-intro-media {
        min-height: 0;
        height: min(70vw, 540px);
        border-radius: 0 0 28px 28px;
    }

    .coaching-intro-media img {
        object-position: center 42%;
    }
}

@media (max-width: 520px) {
    body.home .coaching-intro {
        width: calc(100vw - 1.5rem);
        border-radius: 20px;
    }

    .coaching-intro-copy {
        padding: 2.5rem 1.35rem;
    }

    body.home .coaching-intro h2 {
        font-size: clamp(2.9rem, 14vw, 3.7rem);
    }

    body.home .coaching-intro .intro-quote {
        padding: 1.35rem;
        border-radius: 0 16px 16px 0;
        font-size: 1.08rem;
        line-height: 1.55;
    }

    .coaching-intro-media {
        height: 68vw;
        min-height: 280px;
        border-radius: 0 0 20px 20px;
    }
}
