/* ============================================================
   MARTA STRELTOVA — HOME
   ============================================================ */

.home-page {
    --home-gold: #9a7938;
    --home-gold-soft: #b69a61;
    --home-blush: #efe0db;
    --home-blush-light: #f6ece8;
    --home-ivory: #faf7f2;
    overflow: hidden;
}

.home-page h2,
.home-page h3,
.home-page p {
    margin-top: 0;
}


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

.home-hero {
    min-height: calc(100vh - 84px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 82px 0 30px;
    background:
        radial-gradient(circle at 8% 12%, rgba(190,158,106,.10), transparent 28%),
        linear-gradient(115deg, #fbf8f4 0%, #f7f1ec 100%);
}

.home-hero-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 75px;
    align-items: center;
}

.home-hero-copy {
    padding-bottom: 30px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: #766d64;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .28em;
}

.hero-location::before {
    content: "";
    width: 44px;
    height: 1px;
    background: var(--home-gold);
}

.home-hero h1 {
    margin: 0;
}

.hero-script {
    display: block;
    margin-left: -5px;
    color: var(--home-gold);
    font-family: "Italianno", cursive;
    font-size: clamp(82px, 9.3vw, 145px);
    font-weight: 400;
    line-height: .68;
    letter-spacing: .005em;
}

.hero-speciality {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 34px;
    color: #211e1b;
    font-size: clamp(11px, 1.05vw, 14px);
    font-weight: 500;
    letter-spacing: .19em;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero-speciality i {
    width: 6px;
    height: 6px;
    flex: none;
    border-radius: 50%;
    background: var(--home-gold);
}

.hero-intro {
    max-width: 545px;
    margin-top: 33px !important;
    color: #716a64;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
}

.hero-primary {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 27px;
    border: 1px solid #171513;
    background: #171513;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: .25s ease;
}

.hero-primary svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}

.hero-primary:hover {
    background: var(--home-gold);
    border-color: var(--home-gold);
    transform: translateY(-2px);
}

.hero-primary.light {
    background: #fff;
    border-color: #fff;
    color: #171513;
}

.hero-primary.light:hover {
    background: #f5eee4;
}

.hero-secondary {
    position: relative;
    padding: 9px 0;
    color: #5d5650;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-secondary::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background: #a99578;
    transition: width .2s ease;
}

.hero-secondary:hover::after {
    width: 35%;
}

.hero-signature {
    max-width: 470px;
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 42px;
}

.hero-signature span {
    width: 29px;
    height: 1px;
    flex: none;
    background: #c7b699;
}

.hero-signature p {
    margin: 0;
    color: #9a9188;
    font-size: 9px;
    letter-spacing: .13em;
    text-transform: uppercase;
}


/* HERO VISUAL */

.home-hero-visual {
    position: relative;
    min-height: 650px;
}

.hero-photo-main {
    position: absolute;
    top: 0;
    right: 8%;
    width: 67%;
    height: 555px;
    overflow: hidden;
    background: #e7d8d2;
}

.hero-photo-main::before {
    content: "";
    position: absolute;
    inset: 17px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,.5);
    pointer-events: none;
}

.hero-photo-main img,
.hero-photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo-main img {
    filter: saturate(.72) contrast(.95) brightness(1.02);
}

.hero-photo-small {
    position: absolute;
    left: 1%;
    bottom: 15px;
    z-index: 4;
    width: 42%;
    height: 245px;
    overflow: hidden;
    border: 10px solid #faf7f2;
    background: var(--home-blush);
    box-shadow: 0 24px 60px rgba(79,59,46,.12);
}

.hero-photo-small img {
    filter: saturate(.72) contrast(.96);
}

.hero-floating-card {
    position: absolute;
    right: 0;
    bottom: 48px;
    z-index: 5;
    width: 260px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 19px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 50px rgba(80,62,51,.12);
    backdrop-filter: blur(9px);
}

.floating-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: none;
    border: 1px solid #d9c8a7;
    border-radius: 50%;
    color: var(--home-gold);
    font-size: 18px;
}

.hero-floating-card span,
.hero-floating-card strong {
    display: block;
}

.hero-floating-card span {
    color: #a19890;
    font-size: 8px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-floating-card strong {
    margin-top: 3px;
    font-family: "Playfair Display", serif;
    font-size: 13px;
    font-weight: 400;
}

.hero-number {
    position: absolute;
    top: 18px;
    left: -18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: #a28c69;
}

.hero-number span {
    font-family: "Playfair Display", serif;
    font-size: 13px;
}

.hero-number i {
    width: 1px;
    height: 57px;
    background: #c7b699;
}

.hero-number small {
    writing-mode: vertical-rl;
    font-size: 7px;
    letter-spacing: .24em;
}

.hero-bottom-line {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-top: 28px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(161,132,84,.22);
    color: #897e74;
}

.hero-bottom-line span {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .25em;
}

.hero-bottom-line i {
    color: var(--home-gold);
    font-size: 6px;
    font-style: normal;
}


/* decorative dry branch */

.hero-branch {
    position: absolute;
    right: -5px;
    bottom: 10px;
    z-index: 2;
    width: 110px;
    height: 330px;
    opacity: .32;
    transform: rotate(-8deg);
}

.hero-branch::before {
    content: "";
    position: absolute;
    left: 55px;
    bottom: -40px;
    width: 1px;
    height: 350px;
    background: #aa8b53;
    transform: rotate(9deg);
    transform-origin: bottom;
}

.hero-branch span,
.hero-branch i,
.hero-branch b,
.hero-branch em {
    position: absolute;
    width: 45px;
    height: 1px;
    background: #aa8b53;
    transform-origin: right;
}

.hero-branch span {
    left: 15px;
    top: 90px;
    transform: rotate(35deg);
}

.hero-branch i {
    left: 33px;
    top: 150px;
    transform: rotate(-25deg);
}

.hero-branch b {
    left: 10px;
    top: 210px;
    transform: rotate(31deg);
}

.hero-branch em {
    left: 35px;
    top: 260px;
    transform: rotate(-24deg);
}


/* ============================================================
   COMMON SECTION TYPOGRAPHY
   ============================================================ */

.section-kicker {
    color: var(--home-gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.section-title {
    max-width: 720px;
    margin: 13px 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 4.2vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.section-title em {
    display: block;
    color: var(--home-gold);
    font-weight: 400;
}

.text-link,
.outline-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #5c544e;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.text-link span,
.outline-link span {
    color: var(--home-gold);
    font-size: 15px;
}

.text-link:hover,
.outline-link:hover {
    color: var(--home-gold);
}


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

.home-intro-section {
    padding: 125px 0;
    background: #fff;
}

.intro-layout {
    display: grid;
    grid-template-columns: 80px minmax(0,1.25fr) minmax(300px,.75fr);
    gap: 55px;
    align-items: start;
}

.section-number {
    padding-top: 5px;
    color: #b29e7f;
    font-family: "Playfair Display", serif;
    font-size: 13px;
}

.intro-heading h2 {
    max-width: 650px;
    margin: 16px 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.intro-heading h2 em {
    display: block;
    color: var(--home-gold);
    font-weight: 400;
}

.intro-copy {
    padding-top: 33px;
}

.intro-copy p {
    margin: 0 0 19px;
    color: #756e68;
    font-size: 13px;
    line-height: 1.9;
}

.intro-copy .text-link {
    margin-top: 10px;
}


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

.home-services-section {
    padding: 115px 0 130px;
    background: #f8f3ee;
}

.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 58px;
}

.outline-link {
    flex: none;
    padding-bottom: 8px;
    border-bottom: 1px solid #b9a889;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #ddcfc6;
    border: 1px solid #ddcfc6;
}

.home-service-card {
    min-height: 325px;
    display: flex;
    flex-direction: column;
    padding: 35px 38px;
    background: #fff;
    transition: .3s ease;
}

.home-service-card.featured {
    background: #f2e3de;
}

.home-service-card:hover {
    position: relative;
    z-index: 2;
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(85,64,50,.10);
}

.service-card-top {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #9f938a;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .15em;
}

.service-mini-line {
    height: 1px;
    flex: 1;
    background: #e0d6d0;
}

.service-from {
    color: #8d754b;
}

.home-service-card h3 {
    margin: 45px 0 14px;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 400;
}

.home-service-card p {
    max-width: 440px;
    margin: 0;
    color: #766e68;
    font-size: 12px;
    line-height: 1.85;
}

.service-card-bottom {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 30px;
    color: #a0968f;
    font-size: 8px;
    letter-spacing: .13em;
}

.service-card-bottom a {
    color: var(--home-gold);
    font-weight: 500;
}


/* ============================================================
   STERILISATION
   ============================================================ */

.sterilisation-section {
    padding: 135px 0;
    background: #fff;
}

.sterilisation-grid {
    display: grid;
    grid-template-columns: 1fr .92fr;
    gap: 100px;
    align-items: center;
}

.sterilisation-visual {
    position: relative;
    padding: 0 0 50px 45px;
}

.sterilisation-photo {
    height: 650px;
    overflow: hidden;
    background: #eee1dc;
}

.sterilisation-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.68) brightness(1.03);
}

.sterilisation-visual::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 65%;
    height: 72%;
    z-index: -1;
    background: #f1e2dc;
}

.sterilisation-label {
    position: absolute;
    right: -25px;
    bottom: 6px;
    width: 190px;
    padding: 19px;
    background: #171513;
    color: #fff;
}

.sterilisation-label span,
.sterilisation-label strong {
    display: block;
}

.sterilisation-label span {
    color: #cfc7bf;
    font-size: 8px;
    letter-spacing: .2em;
}

.sterilisation-label strong {
    margin-top: 7px;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 400;
}

.sterilisation-copy h2 {
    max-width: 590px;
    margin: 17px 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(43px, 4.8vw, 67px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.sterilisation-copy h2 em {
    color: var(--home-gold);
    font-weight: 400;
}

.sterilisation-lead {
    max-width: 490px;
    margin: 25px 0 0 !important;
    color: #706963;
    font-size: 13px;
    line-height: 1.85;
}

.care-points {
    margin-top: 45px;
}

.care-point {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 17px;
    padding: 22px 0;
    border-top: 1px solid #ece5df;
}

.care-point:last-child {
    border-bottom: 1px solid #ece5df;
}

.care-point > span {
    padding-top: 2px;
    color: var(--home-gold);
    font-family: "Playfair Display", serif;
    font-size: 11px;
}

.care-point h3 {
    margin: 0 0 6px;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 400;
}

.care-point p {
    max-width: 420px;
    margin: 0;
    color: #877f78;
    font-size: 11px;
    line-height: 1.75;
}


/* ============================================================
   GALLERY
   ============================================================ */

.home-gallery-section {
    padding: 125px 0 135px;
    background: #f8f3ee;
}

.gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.gallery-preview {
    display: grid;
    grid-template-columns: 1.07fr .83fr 1.1fr;
    gap: 20px;
    align-items: end;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #e8dcd6;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.18);
    pointer-events: none;
}

.gallery-item-a {
    height: 480px;
}

.gallery-item-b {
    height: 390px;
}

.gallery-item-c {
    height: 540px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.72);
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.gallery-item:hover img {
    transform: scale(1.035);
}


/* ============================================================
   VALUES
   ============================================================ */

.values-section {
    padding: 110px 0 120px;
    background: #fff;
}

.values-title {
    text-align: center;
}

.values-title > span {
    color: var(--home-gold);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .24em;
}

.values-title h2 {
    margin: 20px 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    letter-spacing: -.025em;
}

.values-title h2 i {
    padding: 0 13px;
    color: var(--home-gold);
    font-size: 11px;
    font-style: normal;
    vertical-align: middle;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 70px;
    border-top: 1px solid #e8e0d8;
    border-bottom: 1px solid #e8e0d8;
}

.values-grid > div {
    padding: 36px 42px 40px;
}

.values-grid > div + div {
    border-left: 1px solid #e8e0d8;
}

.values-grid span {
    color: var(--home-gold);
    font-family: "Playfair Display", serif;
    font-size: 11px;
}

.values-grid h3 {
    margin: 22px 0 11px;
    font-family: "Playfair Display", serif;
    font-size: 23px;
    font-weight: 400;
}

.values-grid p {
    margin: 0;
    color: #847c75;
    font-size: 11px;
    line-height: 1.8;
}


/* ============================================================
   CTA
   ============================================================ */

.home-booking-cta {
    position: relative;
    overflow: hidden;
    padding: 115px 0;
    background:
        linear-gradient(rgba(23,21,19,.96), rgba(23,21,19,.96)),
        #171513;
    color: #fff;
    text-align: center;
}

.booking-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.home-booking-cta .section-kicker {
    color: #bca472;
}

.home-booking-cta h2 {
    margin: 18px 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(49px, 6vw, 78px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.04em;
}

.home-booking-cta h2 span {
    display: block;
    color: #c3a56b;
}

.home-booking-cta p {
    margin: 24px auto 30px;
    color: #aaa29a;
    font-size: 12px;
}

.booking-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgba(255,255,255,.025);
    font-family: "Italianno", cursive;
    font-size: 430px;
    line-height: 1;
    transform: translate(-50%,-50%);
    user-select: none;
}


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

@media (max-width: 1100px) {

    .home-hero-grid {
        gap: 35px;
    }

    .home-hero-visual {
        min-height: 570px;
    }

    .hero-photo-main {
        width: 73%;
        height: 495px;
    }

    .hero-photo-small {
        height: 215px;
    }

    .intro-layout {
        grid-template-columns: 40px 1fr 1fr;
        gap: 35px;
    }

    .sterilisation-grid {
        gap: 65px;
    }
}


@media (max-width: 860px) {

    .home-hero {
        min-height: auto;
        padding-top: 70px;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-copy {
        max-width: 700px;
    }

    .home-hero-visual {
        width: min(620px, 100%);
        min-height: 620px;
        margin: 10px auto 0;
    }

    .hero-bottom-line {
        overflow: hidden;
        justify-content: flex-start;
        white-space: nowrap;
    }

    .intro-layout {
        grid-template-columns: 1fr;
    }

    .section-number {
        display: none;
    }

    .intro-copy {
        max-width: 600px;
        padding-top: 0;
    }

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

    .sterilisation-visual {
        max-width: 650px;
    }

    .sterilisation-copy {
        max-width: 680px;
    }

    .gallery-preview {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-c {
        grid-column: 1 / -1;
        height: 460px;
    }

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

    .values-grid > div + div {
        border-left: 0;
        border-top: 1px solid #e8e0d8;
    }
}


@media (max-width: 620px) {

    .home-hero {
        padding: 54px 0 20px;
    }

    .hero-location {
        margin-bottom: 24px;
    }

    .hero-script {
        font-size: clamp(72px, 23vw, 105px);
        line-height: .75;
    }

    .hero-speciality {
        flex-wrap: wrap;
        gap: 8px 10px;
        margin-top: 24px;
        font-size: 9px;
        letter-spacing: .14em;
    }

    .hero-speciality i {
        width: 4px;
        height: 4px;
    }

    .hero-intro {
        margin-top: 24px !important;
        font-size: 15px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .hero-primary {
        width: 100%;
    }

    .hero-secondary {
        align-self: flex-start;
    }

    .hero-signature {
        margin-top: 30px;
    }

    .home-hero-visual {
        min-height: 470px;
        margin-top: 15px;
    }

    .hero-photo-main {
        right: 0;
        width: 78%;
        height: 395px;
    }

    .hero-photo-small {
        left: 0;
        width: 47%;
        height: 175px;
        border-width: 7px;
    }

    .hero-floating-card {
        right: 0;
        bottom: 10px;
        width: 220px;
        padding: 13px;
    }

    .hero-number {
        display: none;
    }

    .hero-bottom-line {
        gap: 19px;
        margin-top: 10px;
    }

    .hero-bottom-line span {
        font-size: 7px;
    }

    .hero-branch {
        display: none;
    }

    .home-intro-section,
    .home-services-section,
    .sterilisation-section,
    .home-gallery-section,
    .values-section {
        padding: 80px 0;
    }

    .section-head-row,
    .gallery-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 38px;
    }

    .section-title,
    .intro-heading h2,
    .sterilisation-copy h2 {
        font-size: 40px;
    }

    .home-service-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        min-height: 285px;
        padding: 29px 25px;
    }

    .sterilisation-visual {
        padding: 0 0 36px 18px;
    }

    .sterilisation-photo {
        height: 470px;
    }

    .sterilisation-label {
        right: 0;
        width: 165px;
    }

    .gallery-preview {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-item-a,
    .gallery-item-b {
        height: 270px;
    }

    .gallery-item-c {
        height: 330px;
    }

    .values-title h2 i {
        padding: 0 5px;
    }

    .values-grid {
        margin-top: 44px;
    }

    .values-grid > div {
        padding: 29px 5px;
    }

    .home-booking-cta {
        padding: 85px 0;
    }

    .home-booking-cta h2 {
        font-size: 49px;
    }

    .booking-ornament {
        font-size: 280px;
    }
}
