:root {
    --paper: #fbfaf7;
    --paper-warm: #f5eee8;
    --paper-soft: #eee6dc;
    --ink: #253027;
    --ink-soft: #59645b;
    --sage: #7c8d78;
    --sage-deep: #566653;
    --sage-pale: #dfe7dc;
    --rose: #ecd2c6;
    --rose-deep: #b47f70;
    --gold: #c4a555;
    --line: rgba(37, 48, 39, .15);
    --shadow: 0 28px 80px rgba(62, 55, 43, .12);
    --serif: Georgia, "Times New Roman", serif;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 1180px;
}

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

html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    color: #fff;
    background: var(--sage-deep);
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: #fff;
    background: var(--ink);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--sage-deep);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.4;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(3rem, 7.2vw, 7rem);
    line-height: .94;
}

h2 {
    font-size: clamp(2.2rem, 4.6vw, 4.5rem);
    line-height: 1.04;
}

h3 {
    font-size: 1.55rem;
    line-height: 1.2;
}

p {
    margin: 0 0 1em;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 12px 30px rgba(37, 48, 39, .12);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .35s ease, background-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.button:hover {
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    transform: translateY(-2px);
}

.button--light {
    border-color: rgba(255, 255, 255, .65);
    color: var(--ink);
    background: #fff;
}

.button--light:hover {
    color: #fff;
    background: transparent;
}

.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.05rem;
    font-style: italic;
    text-decoration: none;
}

.text-link::after {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: width .3s ease;
}

.text-link:hover::after {
    width: 56px;
}

.text-link--light {
    color: #fff;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: rgba(43, 56, 46, .94);
    box-shadow: 0 10px 34px rgba(37, 48, 39, .08);
    backdrop-filter: blur(18px);
    transition: background-color .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(38, 50, 41, .97);
    box-shadow: 0 14px 34px rgba(29, 39, 31, .16);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: grid;
    width: min(calc(100% - 48px), 1380px);
    min-height: 92px;
    align-items: center;
    margin-inline: auto;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.brand__mark {
    position: relative;
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 50% 50% 46% 54%;
    transform: rotate(-25deg);
}

.brand__mark::before,
.brand__mark::after {
    position: absolute;
    background: rgba(255, 255, 255, .68);
    content: "";
}

.brand__mark::before {
    width: 1px;
    height: 24px;
    top: 3px;
    left: 15px;
    transform: rotate(30deg);
}

.brand__mark::after {
    width: 8px;
    height: 1px;
    top: 12px;
    left: 13px;
    transform: rotate(-22deg);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: var(--serif);
    font-size: 1.34rem;
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1;
}

.brand small {
    margin-top: 5px;
    color: rgba(255, 255, 255, .58);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .17em;
    line-height: 1;
    text-transform: uppercase;
}

.site-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2vw, 30px);
}

.site-navigation a {
    position: relative;
    padding: 9px 0;
    color: rgba(255, 255, 255, .72);
    font-size: .75rem;
    font-weight: 650;
    letter-spacing: .055em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .25s ease;
}

.site-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--rose);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}

.site-navigation a:hover,
.site-navigation a[aria-current="page"] {
    color: #fff;
}

.site-navigation a:hover::after,
.site-navigation a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 19px;
    border: 1px solid rgba(255, 255, 255, .58);
    color: #fff;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .3s ease, background-color .3s ease;
}

.header-cta:hover {
    color: var(--ink);
    background: #fff;
}

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span:not(.sr-only) {
    width: 17px;
    height: 1px;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero--home {
    min-height: 820px;
    padding: 146px 0 82px;
    background:
        radial-gradient(circle at 72% 28%, rgba(236, 210, 198, .5), transparent 30%),
        linear-gradient(135deg, #fbfaf7 0%, #f6f1eb 58%, #e5eadf 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 590px;
    align-items: center;
    grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr);
}

.hero__copy {
    position: relative;
    z-index: 4;
    max-width: 670px;
}

.hero__copy h1 {
    max-width: 760px;
    margin-bottom: 28px;
}

.hero__lead {
    max-width: 590px;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2vw, 1.72rem);
    font-style: italic;
    line-height: 1.42;
}

.hero__actions {
    display: flex;
    align-items: center;
    margin-top: 38px;
    gap: 28px;
    flex-wrap: wrap;
}

.hero__art {
    position: relative;
    height: 620px;
    margin-left: -120px;
}

.hero__art > img {
    position: absolute;
    z-index: 1;
    width: 1080px;
    max-width: none;
    top: -105px;
    left: -70px;
    filter: saturate(.86) contrast(.98);
    pointer-events: none;
}

.hero__art::before {
    position: absolute;
    z-index: 0;
    width: 430px;
    height: 430px;
    top: 36px;
    left: 320px;
    border-radius: 50%;
    background: rgba(236, 210, 198, .87);
    box-shadow: 0 40px 90px rgba(99, 84, 68, .12);
    content: "";
}

.hero__orb {
    position: absolute;
    z-index: 3;
    display: flex;
    width: 190px;
    height: 190px;
    right: 12px;
    bottom: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    color: #fff;
    background: rgba(86, 102, 83, .92);
    box-shadow: 0 25px 60px rgba(41, 52, 42, .18);
    flex-direction: column;
    transform: rotate(7deg);
}

.hero__orb span {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero__orb strong {
    margin-top: 3px;
    font-family: var(--serif);
    font-size: 1.7rem;
    font-style: italic;
    font-weight: 400;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.hero__glow--one {
    width: 290px;
    height: 290px;
    right: -100px;
    bottom: -80px;
    border: 1px solid rgba(124, 141, 120, .3);
}

.hero__glow--two {
    width: 90px;
    height: 90px;
    bottom: 80px;
    left: 6%;
    background: rgba(196, 165, 85, .12);
}

.hero__scroll {
    position: absolute;
    z-index: 5;
    bottom: 34px;
    left: 50%;
    display: flex;
    align-items: center;
    color: var(--ink-soft);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
    gap: 12px;
}

.hero__scroll span {
    animation: float 1.8s ease-in-out infinite;
}

@keyframes float {
    50% { transform: translateY(5px); }
}

.intro-section {
    position: relative;
    padding: 145px 0;
    background: #fff;
}

.intro-section__grid {
    display: grid;
    align-items: center;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(70px, 10vw, 150px);
}

.statement-card {
    position: relative;
    padding: clamp(38px, 5vw, 74px);
    color: #fff;
    background: var(--sage);
    box-shadow: 20px 22px 0 var(--sage-pale);
}

.statement-card::before {
    position: absolute;
    inset: 13px;
    border: 1px solid rgba(255, 255, 255, .72);
    content: "";
    pointer-events: none;
}

.statement-card span {
    display: block;
    height: 45px;
    color: rgba(255, 255, 255, .55);
    font-family: var(--serif);
    font-size: 4rem;
    line-height: 1;
}

.statement-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 1.2;
    text-align: center;
}

.prose {
    max-width: 760px;
    color: var(--ink-soft);
}

.prose h2 {
    color: var(--ink);
}

.prose p {
    font-size: 1.04rem;
}

.prose--large p:not(.eyebrow) {
    font-family: var(--serif);
    font-size: clamp(1.16rem, 1.8vw, 1.4rem);
    line-height: 1.72;
}

.prose--center {
    margin-inline: auto;
    text-align: center;
}

.page-hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    padding: 160px 0 95px;
    background: var(--paper-warm);
}

.page-hero::before {
    position: absolute;
    width: 520px;
    height: 520px;
    top: -190px;
    right: -90px;
    border: 1px solid rgba(124, 141, 120, .26);
    border-radius: 50%;
    content: "";
}

.page-hero__grid {
    display: grid;
    min-height: 395px;
    align-items: center;
    grid-template-columns: minmax(0, 1.02fr) minmax(400px, .98fr);
    gap: clamp(50px, 8vw, 110px);
}

.page-hero__copy {
    position: relative;
    z-index: 2;
}

.page-hero__copy h1 {
    max-width: 820px;
    margin-bottom: 28px;
    font-size: clamp(3.2rem, 6.6vw, 6.7rem);
}

.page-hero__copy > p:last-child {
    max-width: 700px;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: clamp(1.22rem, 2vw, 1.55rem);
    font-style: italic;
}

.page-hero__visual {
    position: relative;
    height: 410px;
}

.page-hero__visual img {
    width: 100%;
    height: 100%;
    border-radius: 52% 48% 42% 58% / 47% 42% 58% 53%;
    box-shadow: var(--shadow);
    filter: saturate(.76);
    object-fit: cover;
}

.page-hero__caption {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 18px;
    padding: 8px 12px;
    color: #fff;
    background: rgba(37, 48, 39, .84);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.page-hero__line {
    position: absolute;
    width: 140px;
    height: 140px;
    right: -34px;
    bottom: -30px;
    border: 1px solid var(--sage);
    border-radius: 50%;
}

.page-hero__line::after {
    position: absolute;
    width: 1px;
    height: 78px;
    top: 30px;
    left: 69px;
    background: var(--sage);
    content: "";
    transform: rotate(34deg);
}

.page-hero--columns {
    color: #fff;
    background: linear-gradient(125deg, #465747, #71806f);
}

.page-hero--columns .eyebrow,
.page-hero--columns .page-hero__copy > p:last-child,
.page-hero--contact .eyebrow,
.page-hero--contact .page-hero__copy > p:last-child {
    color: rgba(255, 255, 255, .72);
}

.page-hero--columns .page-hero__visual img {
    border: 12px solid rgba(255, 255, 255, .82);
    border-radius: 50%;
    background: var(--paper-warm);
    filter: saturate(.82);
}

.page-hero--columns .page-hero__line {
    border-color: rgba(255, 255, 255, .45);
}

.page-hero__indication-note {
    position: absolute;
    z-index: 3;
    display: flex;
    width: 164px;
    height: 164px;
    right: -18px;
    bottom: 18px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    color: var(--sage-deep);
    background: rgba(250, 247, 240, .92);
    box-shadow: 0 18px 42px rgba(37, 48, 39, .2);
    flex-direction: column;
    text-align: center;
    animation: indication-float 5s ease-in-out infinite;
}

.page-hero__indication-note small {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.page-hero__indication-note strong {
    max-width: 120px;
    margin-top: 5px;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.08;
}

@keyframes indication-float {
    50% { transform: translateY(-8px) rotate(2deg); }
}

.page-hero--pricing {
    background: linear-gradient(118deg, #f6eee7 0%, #ecd2c6 100%);
}

.page-hero--cenik .page-hero__visual {
    display: grid;
    height: 390px;
    place-items: center;
}

.page-hero__pricing-mark {
    position: relative;
    display: flex;
    width: min(330px, 86%);
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(55, 72, 58, .2);
    border-radius: 50%;
    color: var(--sage-deep);
    background:
        radial-gradient(circle at 35% 27%, rgba(255, 255, 255, .94), rgba(247, 238, 230, .82) 48%, rgba(217, 225, 211, .8));
    box-shadow: 26px 28px 0 rgba(255, 255, 255, .38), 0 32px 70px rgba(85, 69, 55, .12);
    flex-direction: column;
    transform: rotate(-2deg);
}

.page-hero__pricing-mark::before,
.page-hero__pricing-mark::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.page-hero__pricing-mark::before {
    inset: 18px;
    border: 1px solid rgba(55, 72, 58, .17);
}

.page-hero__pricing-mark::after {
    width: 11px;
    height: 11px;
    top: 44px;
    right: 53px;
    background: var(--gold);
    box-shadow: -198px 176px 0 rgba(124, 141, 120, .72);
}

.page-hero__pricing-mark span,
.page-hero__pricing-mark small {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.page-hero__pricing-mark strong {
    max-width: 220px;
    margin: 9px 0 15px;
    font-family: var(--serif);
    font-size: clamp(2.15rem, 4vw, 3.45rem);
    font-style: italic;
    font-weight: 400;
    line-height: .95;
    text-align: center;
}

.page-hero--cenik .page-hero__caption {
    right: 8px;
    bottom: 8px;
}

.page-hero--cenik .page-hero__line {
    right: -12px;
    bottom: 14px;
}

.page-hero--contact {
    color: #fff;
    background: linear-gradient(120deg, #334337, #5d6d5d);
}

.page-hero--contact .page-hero__visual {
    height: 430px;
}

.page-hero--contact .page-hero__visual img {
    border-radius: 0;
    box-shadow: none;
    filter: brightness(1.18) saturate(.7);
    object-fit: contain;
}

.page-hero--services {
    background: linear-gradient(90deg, #f5eee8 0 55%, #dfe7dc 55% 100%);
}

.page-hero--services .page-hero__visual {
    transform: rotate(1.5deg);
}

.page-hero--services .page-hero__visual img {
    border: 10px solid #fff;
    border-radius: 2px;
    filter: saturate(.78);
}

.page-hero--doporuceni {
    background:
        linear-gradient(90deg, rgba(251, 250, 247, .98) 0 48%, rgba(251, 250, 247, .72) 63%, transparent 100%),
        linear-gradient(135deg, #f8f4ef, #dfe7dc);
}

.page-hero--doporuceni .page-hero__visual {
    height: 450px;
}

.page-hero--doporuceni .page-hero__visual img {
    border-radius: 210px 210px 8px 8px;
    filter: saturate(.72);
}

.page-hero--faq {
    background: linear-gradient(135deg, #edf1e9 0%, #f9f5ef 72%);
}

.page-hero--faq .page-hero__visual {
    height: 340px;
}

.page-hero--faq .page-hero__visual img {
    border-radius: 50%;
    box-shadow: 28px 28px 0 rgba(236, 210, 198, .72);
    object-fit: contain;
}

.content-block {
    padding: 105px 0;
}

.sections {
    padding: 125px 0;
}

.sections--home {
    padding-top: 20px;
}

.sections--services {
    background: #fff;
}

.sections--columns .container,
.sections--pricing .container,
.sections--editorial .container {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.service-row {
    display: grid;
    align-items: center;
    margin-bottom: 135px;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    gap: clamp(55px, 9vw, 125px);
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-row--reverse .service-row__image {
    order: 2;
}

.service-row__image {
    position: relative;
    min-height: 470px;
}

.service-row__image::before {
    position: absolute;
    width: 82%;
    height: 82%;
    right: -28px;
    bottom: -28px;
    background: var(--sage-pale);
    content: "";
}

.service-row:nth-child(even) .service-row__image::before {
    background: var(--rose);
}

.service-row__image img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    inset: 0;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.service-row__number {
    position: absolute;
    z-index: 2;
    right: -15px;
    bottom: -5px;
    color: rgba(255, 255, 255, .9);
    font-family: var(--serif);
    font-size: 5rem;
    font-style: italic;
    line-height: 1;
}

.service-row__content h2 {
    margin-bottom: 28px;
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
}

.service-row__content p:not(.eyebrow) {
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.check-list {
    display: grid;
    margin: 28px 0;
    padding: 0;
    list-style: none;
    gap: 9px;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    color: var(--ink-soft);
}

.check-list li::before {
    position: absolute;
    width: 8px;
    height: 8px;
    top: .62em;
    left: 0;
    border: 1px solid var(--sage-deep);
    border-radius: 50%;
    content: "";
}

.list-card,
.price-card,
.note-card,
.text-section {
    height: 100%;
    padding: clamp(32px, 5vw, 62px);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 60px rgba(62, 55, 43, .06);
}

.list-card h2,
.price-card h2,
.note-card h2,
.text-section h2 {
    margin-bottom: 28px;
    font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.list-card--sage {
    border-color: transparent;
    background: var(--sage-pale);
}

.list-card--rose {
    border-color: transparent;
    background: #f4e4dd;
}

.list-card ul {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 14px;
}

.list-card li {
    position: relative;
    padding: 0 0 14px 25px;
    border-bottom: 1px solid rgba(37, 48, 39, .11);
    color: var(--ink-soft);
}

.list-card li::before {
    position: absolute;
    top: .63em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage-deep);
    content: "";
}

.price-card {
    position: relative;
    overflow: hidden;
}

.price-card::after {
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    bottom: -80px;
    border: 1px solid var(--rose-deep);
    border-radius: 50%;
    content: "";
    opacity: .35;
}

.price-card__items {
    position: relative;
    z-index: 1;
}

.price-card__items > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    gap: 25px;
}

.price-card__items span {
    color: var(--ink-soft);
}

.price-card__items strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 400;
    white-space: nowrap;
}

.price-card__note {
    position: relative;
    z-index: 1;
    margin: 28px 0 0;
    color: var(--ink-soft);
    font-size: .92rem;
}

.quote-card {
    position: relative;
    margin: 32px 0;
    padding: clamp(42px, 6vw, 72px);
    color: #fff;
    background: var(--sage-deep);
    text-align: center;
}

.quote-card > span {
    display: block;
    height: 42px;
    color: rgba(255, 255, 255, .32);
    font-family: var(--serif);
    font-size: 3.8rem;
    line-height: 1;
}

.quote-card p {
    max-width: 760px;
    margin: 0 auto;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 3vw, 2.8rem);
    font-style: italic;
    line-height: 1.22;
}

.quote-card cite {
    display: block;
    margin-top: 22px;
    font-size: .7rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.note-card {
    background: var(--paper-warm);
}

.note-card p:not(.eyebrow) {
    color: var(--ink-soft);
}

.contact-card {
    display: grid;
    padding: clamp(42px, 7vw, 85px);
    color: #fff;
    background: var(--sage-deep);
    box-shadow: var(--shadow);
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-card .eyebrow {
    color: rgba(255, 255, 255, .7);
}

.contact-card h2 {
    margin-bottom: 30px;
}

.contact-card p {
    color: rgba(255, 255, 255, .78);
}

.contact-card__action {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 30px;
    border-left: 1px solid rgba(255, 255, 255, .22);
    flex-direction: column;
}

.contact-card__action > span {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-card__action > a:not(.button) {
    margin: 10px 0 28px;
    font-family: var(--serif);
    font-size: clamp(1.85rem, 3.2vw, 3.35rem);
    letter-spacing: -.035em;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

@media (min-width: 821px) {
    .page-hero--contact .page-hero__visual {
        transform: translateY(-138px);
    }

    .page-hero--contact .page-hero__visual img {
        transform: translateY(-52px);
    }
}

.faq-section {
    padding: 130px 0;
    background: var(--paper-warm);
}

.faq-section__grid {
    display: grid;
    align-items: start;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(60px, 10vw, 140px);
}

.faq-section h2 {
    margin-bottom: 25px;
}

.faq-section p {
    color: var(--ink-soft);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 0;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 1.28rem;
    list-style: none;
    gap: 24px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    display: inline-flex;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sage);
    border-radius: 50%;
    font-family: var(--sans);
    font-size: 1.05rem;
    transition: transform .3s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    padding: 0 55px 24px 0;
}

.booking-banner {
    padding: 0 0 70px;
    background: var(--paper);
}

.booking-banner__inner {
    position: relative;
    display: flex;
    min-height: 168px;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    padding: clamp(28px, 4vw, 44px) clamp(30px, 5vw, 58px);
    color: #fff;
    background: var(--sage-deep);
    gap: 34px;
}

.booking-banner__inner::after {
    position: absolute;
    width: 170px;
    height: 170px;
    right: -55px;
    bottom: -105px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    content: "";
}

.booking-banner .eyebrow {
    color: rgba(255, 255, 255, .7);
}

.booking-banner h2 {
    max-width: 650px;
    margin-bottom: 0;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 1.08;
}

.booking-banner .button {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}

.error-page {
    display: flex;
    min-height: 78vh;
    align-items: center;
    padding: 150px 0 100px;
    background: var(--paper-warm);
    text-align: center;
}

.error-page h1 {
    max-width: 880px;
    margin: 0 auto 25px;
    font-size: clamp(3rem, 7vw, 6.5rem);
}

.error-page p:not(.eyebrow) {
    max-width: 620px;
    margin: 0 auto 34px;
    color: var(--ink-soft);
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 72px 0 24px;
    color: rgba(255, 255, 255, .78);
    background:
        linear-gradient(90deg, rgba(35, 48, 39, .94), rgba(35, 48, 39, .82)),
        url("../images/footer-flow.webp") center / cover no-repeat;
}

.site-footer__botanical {
    position: absolute;
    width: 480px;
    height: 270px;
    right: -110px;
    bottom: -34px;
    background: url("../images/botanical-hero.webp") center / contain no-repeat;
    filter: grayscale(1) brightness(2.2);
    opacity: .045;
    transform: rotate(-8deg);
    pointer-events: none;
}

.site-footer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr .75fr .75fr 1.05fr;
    gap: clamp(35px, 5vw, 70px);
}

.site-footer h2,
.site-footer h3 {
    color: #fff;
}

.site-footer h2 {
    max-width: 390px;
    margin-bottom: 20px;
    font-size: clamp(1.75rem, 2.7vw, 2.55rem);
    line-height: 1.1;
}

.site-footer h3 {
    margin: 0 0 18px;
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-footer .eyebrow {
    color: var(--rose);
}

.site-footer p,
.site-footer a {
    display: block;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, .68);
    font-size: .92rem;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.newsletter-form {
    margin-top: 18px;
}

.newsletter-form__row {
    display: grid;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    grid-template-columns: 1fr 44px;
}

.newsletter-form input {
    min-width: 0;
    padding: 12px 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .42);
}

.newsletter-form button {
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
    font-size: 1.4rem;
    transition: transform .25s ease;
}

.newsletter-form button:hover {
    transform: translateX(4px);
}

.newsletter-form__status {
    min-height: 1.5em;
    margin-top: 9px !important;
    font-size: .78rem !important;
}

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

.site-footer__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .4);
    font-size: .75rem;
}

.site-footer .site-footer__signature {
    position: relative;
    display: inline-flex;
    width: max-content;
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-size: .75rem;
    letter-spacing: .035em;
    text-decoration: none;
    transition: letter-spacing .35s ease;
}

.site-footer__signature::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .75), transparent);
    content: "";
    opacity: .55;
    transform: translateX(-105%);
    animation: footer-signature-shimmer 6s ease-in-out infinite;
}

.site-footer__signature:hover,
.site-footer__signature:focus-visible {
    letter-spacing: .065em;
}

@keyframes footer-signature-shimmer {
    0%,
    72% {
        transform: translateX(-105%);
    }

    100% {
        transform: translateX(105%);
    }
}

.admin-login-page {
    background: var(--paper-warm);
}

.admin-login-page .site-header {
    background: rgba(43, 56, 46, .96);
}

.admin-login {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 140px 24px 70px;
    background:
        url("../images/botanical-hero.webp") calc(50% + 330px) 65% / 860px auto no-repeat,
        linear-gradient(135deg, var(--paper), var(--sage-pale));
}

.admin-login__card {
    width: min(100%, 490px);
    padding: clamp(34px, 6vw, 64px);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.admin-login__card h1 {
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 7vw, 4.8rem);
}

.admin-login__card > p:not(.eyebrow) {
    color: var(--ink-soft);
}

.admin-login form {
    display: grid;
    margin: 32px 0 25px;
    gap: 17px;
}

.admin-login label span {
    display: block;
    margin-bottom: 7px;
    color: var(--ink-soft);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-login input {
    width: 100%;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

.admin-login input:focus {
    border-color: var(--sage-deep);
}

.form-error {
    margin-top: 20px;
    padding: 12px 14px;
    border: 1px solid #c67b6b;
    color: #8f4639;
    background: #fff2ef;
}

@media (max-width: 1120px) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .site-navigation {
        position: fixed;
        z-index: 90;
        display: flex;
        width: 100%;
        height: 100dvh;
        min-height: 100vh;
        inset: 0 0 auto;
        align-items: center;
        justify-content: center;
        padding: 110px 35px 50px;
        background: rgba(245, 238, 232, .98);
        flex-direction: column;
        gap: 5px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity .3s ease, transform .3s ease;
    }

    .site-navigation.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .site-navigation a {
        color: var(--ink);
        font-family: var(--serif);
        font-size: clamp(1.65rem, 4vw, 2.4rem);
        font-weight: 400;
        letter-spacing: -.02em;
        text-transform: none;
    }

    .site-navigation a:hover,
    .site-navigation a[aria-current="page"] {
        color: var(--sage-deep);
    }

    .menu-toggle {
        position: relative;
        z-index: 100;
        display: flex;
        justify-self: end;
    }

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

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

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

    .header-cta {
        display: none;
    }

    .hero__inner {
        grid-template-columns: .9fr 1.1fr;
    }

    .hero__art {
        margin-left: -220px;
    }

    .site-footer__grid {
        grid-template-columns: 1.35fr 1fr 1fr;
    }

    .site-footer__grid > div:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .site-header__inner {
        width: calc(100% - 34px);
        min-height: 78px;
        grid-template-columns: 1fr auto;
    }

    .hero--home {
        min-height: 780px;
        padding: 125px 0 70px;
    }

    .hero__inner {
        min-height: 620px;
        align-items: start;
        grid-template-columns: 1fr;
    }

    .hero__copy h1 {
        max-width: 590px;
        font-size: clamp(3.35rem, 15vw, 5.6rem);
    }

    .hero__lead {
        max-width: 560px;
    }

    .hero__art {
        position: absolute;
        width: 650px;
        height: 460px;
        right: -210px;
        bottom: -150px;
        margin: 0;
        opacity: .72;
    }

    .hero__art > img {
        width: 760px;
        top: 0;
        left: -100px;
    }

    .hero__art::before {
        width: 310px;
        height: 310px;
        top: 80px;
        left: 250px;
    }

    .hero__orb {
        display: none;
    }

    .hero__scroll {
        display: none;
    }

    .intro-section {
        padding: 95px 0;
    }

    .intro-section__grid,
    .page-hero__grid,
    .service-row,
    .faq-section__grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .intro-section__grid {
        gap: 70px;
    }

    .statement-card {
        max-width: 520px;
    }

    .page-hero {
        min-height: auto;
        padding: 125px 0 75px;
    }

    .page-hero__grid {
        gap: 46px;
    }

    .page-hero__visual {
        height: 330px;
    }

    .page-hero--contact .page-hero__visual {
        height: 330px;
    }

    .page-hero__indication-note {
        width: 132px;
        height: 132px;
        right: -6px;
        bottom: 8px;
    }

    .page-hero__indication-note strong {
        max-width: 100px;
        font-size: 1.1rem;
    }

    .page-hero--cenik .page-hero__visual {
        height: 340px;
    }

    .sections {
        padding: 90px 0;
    }

    .sections--columns .container,
    .sections--pricing .container,
    .sections--editorial .container {
        grid-template-columns: 1fr;
    }

    .service-row {
        margin-bottom: 95px;
        gap: 60px;
    }

    .service-row--reverse .service-row__image {
        order: 0;
    }

    .service-row__image {
        min-height: 380px;
    }

    .contact-card__action {
        padding: 30px 0 0;
        border-top: 1px solid rgba(255, 255, 255, .22);
        border-left: 0;
    }

    .booking-banner {
        padding-bottom: 58px;
    }

    .booking-banner__inner {
        align-items: center;
        flex-direction: row;
    }

    .site-footer {
        padding-top: 62px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__grid > div:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 15px;
    }

    .brand strong {
        font-size: 1.16rem;
    }

    .brand small {
        font-size: .51rem;
    }

    .brand__mark {
        width: 27px;
        height: 27px;
    }

    .hero--home {
        min-height: 740px;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero__art {
        right: -280px;
    }

    .page-hero__copy h1 {
        font-size: clamp(3rem, 16vw, 4.7rem);
    }

    .page-hero__visual {
        height: 280px;
    }

    .service-row__image {
        min-height: 300px;
    }

    .list-card,
    .price-card,
    .note-card,
    .text-section {
        padding: 30px 24px;
    }

    .quote-card {
        padding: 38px 24px;
    }

    .quote-card > span {
        height: 34px;
        font-size: 3.1rem;
    }

    .quote-card p {
        font-size: 1.5rem;
    }

    .quote-card cite {
        margin-top: 18px;
    }

    .price-card__items > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .contact-card {
        padding: 40px 26px;
    }

    .contact-card__action > a:not(.button) {
        font-size: 1.8rem;
    }

    .faq-list summary {
        font-size: 1.12rem;
    }

    .booking-banner__inner {
        align-items: flex-start;
        padding: 24px;
        flex-direction: column;
        gap: 14px;
    }

    .booking-banner .eyebrow {
        margin-bottom: 8px;
    }

    .booking-banner h2 {
        font-size: 1.5rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__brand,
    .site-footer__grid > div:last-child {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .admin-login {
        padding-inline: 17px;
        background-position: 30% 70%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
