.outer {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(0, 0, 0, .08);
}

@media (min-width: 1400px) {
    .outer {
        width: 80%;
    }
}

@media (max-width: 1200px) {
    .outer {
        width: 100%;
        box-shadow: none;
    }
}

.sidebar {
    width: 340px;
    min-width: 340px;
    top: 58px;
    height: calc(100vh - 58px);
    padding: 40px 28px;
}

@media (max-width: 1200px) {
    .sidebar {
        width: 100%;
        min-width: 0;
    }
}

.hero {
    background: linear-gradient(135deg, #e8e0d0 0%, #f0e8d8 50%, #ede4d2 100%);
    padding: 60px 60px 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(156, 124, 92, .08) 0%, transparent 65%);
    pointer-events: none;
}

.hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.hero-name-block {
    flex: 1;
}

.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 400;
}

.hero-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 4px;
}

.hero-photo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-photo img {
    width: 235px;
    height: 235px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-body {
    max-width: 720px;
}

.hero-lead {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 22px;
    font-style: italic;
}

.hero-body p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 15px;
}

.hero-list {
    list-style: none;
    margin: 0 0 18px 0;
    padding: 0;
}

.hero-list li {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.hero-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.hero-cta {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--brown);
    margin-top: 24px;
    letter-spacing: .02em;
}

section {
    padding: 70px 60px;
}

section:nth-child(even) {
    background: var(--white);
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.rule {
    width: 44px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 36px;
}

.about {
    display: block;
}

.about::after {
    content: '';
    display: table;
    clear: both;
}

.photo {
    float: left;
    width: 200px;
    height: 260px;
    background: var(--cream-mid);
    border-radius: 8px;
    overflow: hidden;
    margin: 0 40px 16px 0;
    flex-shrink: 0;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 15px;
}

.tags {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .05em;
    color: var(--accent);
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 30px;
    padding: 5px 13px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 10px;
    padding: 28px 22px;
    transition: border-color .2s, transform .2s;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.card-ico {
    font-size: 28px;
    margin-bottom: 14px;
    line-height: 1;
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.card p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-light);
}

.wermado-wrap {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.wermado-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 16px;
}

.wermado-text p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 14px;
}

.wermado-btn {
    display: inline-block;
    margin-top: 8px;
    background: var(--accent);
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    transition: background .2s, transform .15s;
}

.wermado-btn:hover {
    background: var(--brown);
    transform: translateY(-1px);
}

.wermado-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.wermado-badge {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 10px;
    padding: 20px 14px;
    text-align: center;
    transition: border-color .2s, transform .2s;
}

.wermado-badge:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.wermado-badge h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.wermado-badge p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-light);
}

.reviews-outer {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    transition: transform .5s ease;
    will-change: transform;
}

.reviews-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.review {
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 10px;
    padding: 24px 22px;
}

.rev-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 10px;
}

.rev-text {
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    color: var(--text);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 28px;
}

.rev-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--taupe);
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: background .2s;
}

.rev-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
}

.rev-dot.active {
    background: var(--brown);
}

.comments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.comment-card {
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 10px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}

.comment-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(156, 124, 92, .12);
}

.comment-card-date {
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
}

.comment-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
    margin: 0;
}

.comment-card-lead {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--text-light);
    flex: 1;
}

.comment-card-more {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 220px;
    font-size: 13px;
    color: var(--taupe);
    line-height: 1.55;
    margin: 0;
}

.cookie-text strong {
    color: var(--sand);
}

.cookie-link {
    color: var(--gold);
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    cursor: pointer;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    transition: opacity .2s;
    white-space: nowrap;
}

.cookie-btn:hover {
    opacity: .85;
}

.cookie-btn--primary {
    background: var(--gold);
    color: #fff;
}

.cookie-btn--secondary {
    background: transparent;
    color: var(--taupe);
    border: 1px solid var(--taupe);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 1201px) {
    .contact-wrap {
        grid-template-columns: 1fr 1.6fr;
        gap: 40px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-val {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.contact-val a {
    color: var(--accent);
    text-decoration: none;
}

.contact-val a:hover {
    text-decoration: underline;
}

.contact-map {
    min-height: 320px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--sand);
    display: flex;
    flex-direction: column;
}

.contact-map iframe {
    flex: 1;
    min-height: 320px;
}

.cal-wrap {
    border-top: 1px solid var(--cream-mid);
    padding-top: 20px;
}

.cal-label {
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 12px;
}

.cal-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cal-nav-row span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

.cal-arr {
    background: none;
    border: none;
    color: var(--taupe);
    font-size: 20px;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 4px;
    line-height: 1;
    transition: color .2s;
}

.cal-arr:hover {
    color: var(--accent);
}

.cal-week {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.cal-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cal-col-head {
    text-align: center;
    padding: 5px 2px;
    border-radius: 5px;
    background: var(--cream-mid);
    margin-bottom: 2px;
}

.cal-col-head .dn {
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
}

.cal-col-head .dd {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    display: block;
    line-height: 1.2;
}

.cal-col-head.is-today {
    background: var(--accent);
}

.cal-col-head.is-today .dn,
.cal-col-head.is-today .dd {
    color: white;
}

.cal-slot {
    display: block;
    width: 100%;
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 5px;
    padding: 5px 2px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--text);
    text-align: center;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
    line-height: 1.2;
}

.cal-slot:hover {
    background: var(--cream-mid);
    border-color: var(--accent);
}

.cal-slot.picked {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    font-weight: 600;
}

.cal-slot.past {
    background: var(--cream-mid) !important;
    color: var(--sand) !important;
    border-color: var(--cream-mid) !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.cal-slot.booked {
    background: #f0e8e0 !important;
    color: var(--taupe) !important;
    border-color: var(--sand) !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    text-decoration: line-through;
}

.cal-info {
    font-size: 11.5px;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
    min-height: 16px;
    line-height: 1.5;
}

.btn-wybieram {
    width: 100%;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-family: 'Jost', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 12px;
    transition: background .2s, transform .15s;
    display: none;
}

.btn-wybieram.show {
    display: block;
}

.btn-wybieram:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.btn-wermado-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 13px 28px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
    transition: background .2s, transform .15s;
    width: 270px;
}

.btn-wermado-cta:hover {
    background: var(--brown);
    transform: translateY(-1px);
}

.wermado-modal-title {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 6px;
}

.wermado-modal-sub {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--cream-mid);
    line-height: 1.55;
}

.modal-date {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: .03em;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--cream-mid);
}

.topnav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--sand);
    height: 58px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.topnav-inner {
    max-width: 1400px;
    width: 80%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.topnav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
}

.topnav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.topnav-links a {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 14px;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}

.topnav-links a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.topnav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.topnav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .2s;
}

@media (max-width: 1200px) {
  .topnav { display: none !important; }
}

@media (max-width: 1350px) and (min-width: 1201px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .sidebar {
        width: 300px;
        min-width: 300px;
        padding: 32px 20px;
    }

    section {
        padding: 60px 44px;
    }

    .hero {
        padding: 50px 44px 40px;
    }
}

@media (max-width: 1200px) {
    .contact-map {
        min-height: 260px;
    }

    .contact-map iframe {
        min-height: 260px;
    }

    .hero {
        padding: 40px 24px 36px;
    }

    .hero-top {
        flex-direction: column-reverse;
        align-items: center;
    }

    .hero-photo {
        flex: none;
        width: 160px;
    }

    .hero-photo img {
        width: 160px;
        height: 160px;
    }

    section {
        padding: 52px 24px;
    }

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

    .photo {
        float: none;
        width: 160px;
        height: 210px;
        margin: 0 auto 24px;
    }

    .seo-col--desc {
        min-width: 0;
    }

    .topnav-inner {
        padding: 0 20px;
        width: 100%;
    }

    .topnav-toggle {
        display: flex;
    }

    .topnav-links {
        display: none;
        position: absolute;
        top: 58px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: var(--white);
        border-bottom: 1px solid var(--sand);
        padding: 10px 0;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    }

    .topnav-links.open {
        display: flex;
    }

    .topnav-links a {
        padding: 11px 24px;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .hero-name {
        font-size: 30px;
    }

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

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

    .reviews-page {
        grid-template-columns: 1fr;
    }

    .wermado-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .wermado-badge {
        padding: 16px 10px;
    }
}

@media (max-width: 600px) {
    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-btns {
        flex-direction: column;
    }

    .cookie-btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .wermado-visual {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media screen and (max-width: 1200px) {
    #mob-blog {
        position: fixed !important;
        top: 12px !important;
        left: 12px !important;
        z-index: 999998 !important;
        background: var(--accent) !important;
        color: #ffffff !important;
        border-radius: 10px !important;
        padding: 9px 14px !important;
        text-align: center !important;
        text-decoration: none !important;
        box-shadow: 0 3px 18px rgba(0, 0, 0, 0.35) !important;
        font-family: 'Jost', sans-serif !important;
        font-size: 10px !important;
        font-weight: 500 !important;
        letter-spacing: .08em !important;
        text-transform: uppercase !important;
        line-height: 1.4 !important;
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
    }

    #mob-blog svg {
        flex-shrink: 0;
    }

    #mob-calc {
        position: fixed !important;
        top: 58px !important;
        left: 12px !important;
        z-index: 999998 !important;
        background: var(--accent) !important;
        color: #ffffff !important;
        border-radius: 10px !important;
        padding: 9px 14px !important;
        text-align: center !important;
        text-decoration: none !important;
        box-shadow: 0 3px 18px rgba(0, 0, 0, 0.35) !important;
        font-family: 'Jost', sans-serif !important;
        font-size: 10px !important;
        font-weight: 500 !important;
        letter-spacing: .08em !important;
        text-transform: uppercase !important;
        line-height: 1.4 !important;
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
    }

    #mob-calc svg {
        flex-shrink: 0;
    }
}

@media screen and (min-width: 1201px) {
    #mob-blog {
        display: none !important;
    }

    #mob-calc {
        display: none !important;
    }
}
