* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background-color: #faf7f4;
}

/* Header */

header {
    background: rgba(250, 247, 244, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 10;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    gap: 28px;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
}

nav a:hover {
    color: #1a1a1a;
}

/* Hero */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px 60px;
    background-color: #faf7f4;
}

.hero__photo {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    background: #efe7e0;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero__photo-placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

.hero__info {
    text-align: center;
    max-width: 560px;
}

.hero__name {
    font-size: 40px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.hero__role {
    font-size: 17px;
    color: #888;
    font-weight: 400;
    margin-bottom: 2px;
}

.hero__specialty {
    font-size: 14px;
    color: #b0a59c;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero__tagline {
    font-size: 20px;
    font-weight: 400;
    color: #3a3a3a;
    line-height: 1.55;
    margin-bottom: 36px;
    font-style: italic;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.hero__btn {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.hero__btn--primary {
    background: #e8cfc2;
    color: #1a1a1a;
}

.hero__btn--secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1.5px solid #d9cdc2;
}

/* About */

.about {
    padding: 72px 24px 80px;
    background-color: #faf7f4;
}

.about__container {
    max-width: 960px;
    margin: 0 auto;
}

.about__title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about__text p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
}

.about__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about__fact {
    background: #f3ece6;
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
}

.about__fact-number {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.about__fact-label {
    display: block;
    font-size: 14px;
    color: #888;
}

.about__link {
    display: inline-block;
    align-self: flex-start;
    padding: 14px 32px;
    border-radius: 100px;
    background: #e8cfc2;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

/* Services */

.services {
    padding: 72px 24px 80px;
    background-color: #faf7f4;
}

.services__container {
    max-width: 1100px;
    margin: 0 auto;
}

.services__title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.services__subtitle {
    font-size: 17px;
    color: #888;
    text-align: center;
    margin-bottom: 48px;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
}

.services__card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.services__card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #f3ece6;
    overflow: hidden;
}

.services__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services__card-info {
    padding: 22px 24px 24px;
}

.services__card-name {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.services__card-details {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 14px;
}

.services__card-price {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.services__card-time {
    font-size: 14px;
    color: #999;
}

.services__card-note {
    font-size: 14px;
    color: #999;
    margin-bottom: 14px;
}

.services__card-link {
    font-size: 14px;
    color: #b0a59c;
    text-decoration: none;
    font-weight: 500;
}

.services__extra {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin-bottom: 36px;
}

.services__btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 15px 36px;
    border-radius: 100px;
    background: #e8cfc2;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

/* Services page — hero */

.sp-hero {
    padding: 72px 24px 48px;
    background-color: #faf7f4;
    text-align: center;
}

.sp-hero__inner {
    max-width: 640px;
    margin: 0 auto;
}

.sp-hero__title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.sp-hero__subtitle {
    font-size: 17px;
    color: #999;
    font-weight: 400;
    line-height: 1.6;
}

/* Services page — grid */

.sp-services {
    padding: 8px 24px 56px;
    background-color: #faf7f4;
}

.sp-services__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Services page — card */

.sp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #efe7e0;
}

.sp-card__image {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #f3ece6;
    overflow: hidden;
}

.sp-card__placeholder,
.sp-card__photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sp-card__body {
    padding: 24px 24px 28px;
}

.sp-card__name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.sp-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.sp-card__price {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.sp-card__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d9cdc2;
    flex-shrink: 0;
}

.sp-card__time {
    font-size: 14px;
    color: #999;
}

.sp-card__note {
    font-size: 14px;
    color: #b0a59c;
    margin-bottom: 8px;
}

.sp-card__desc {
    font-size: 16px;
    line-height: 1.65;
    color: #555;
    margin-bottom: 18px;
}

.sp-card__link {
    font-size: 14px;
    color: #b0a59c;
    text-decoration: none;
    font-weight: 500;
}

.sp-card__link:hover {
    color: #1a1a1a;
}

/* Services page — expandable gallery */

.sp-card__gallery {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.sp-card.is-open .sp-card__gallery {
    max-height: 1200px;
}

.sp-card__gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 24px 24px;
}

.sp-card__gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    display: block;
}

.sp-card.is-open .sp-card__link {
    color: #1a1a1a;
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.lightbox__content {
    position: relative;
    z-index: 1;
    width: 90vw;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox__prev {
    left: -56px;
}

.lightbox__next {
    right: -56px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Services page — extra */

.sp-extra {
    padding: 0 24px 56px;
    background-color: #faf7f4;
}

.sp-extra__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: #f3ece6;
    border-radius: 20px;
    padding: 32px 28px;
}

.sp-extra__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.sp-extra__price {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.sp-extra__text {
    font-size: 15px;
    color: #888;
    line-height: 1.55;
}

/* Services page — CTA */

.sp-cta {
    padding: 8px 24px 80px;
    background-color: #faf7f4;
    text-align: center;
}

.sp-cta__inner {
    max-width: 520px;
    margin: 0 auto;
}

.sp-cta__title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.sp-cta__text {
    font-size: 16px;
    color: #888;
    line-height: 1.55;
    margin-bottom: 28px;
}

.sp-cta__btn {
    display: inline-block;
    padding: 15px 36px;
    border-radius: 100px;
    background: #e8cfc2;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.sp-cta__btn:hover {
    background: #ddc0b0;
}

/* About page — new design */

.ap-photo {
    background: #efe7e0;
    border-radius: 20px;
    border: 1.5px solid #e5dbd2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ap-photo__label {
    font-size: 14px;
    color: #b8ad9f;
    font-weight: 400;
    pointer-events: none;
}

.ap-heading {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.3px;
    margin-bottom: 24px;
}

.ap-heading--center {
    text-align: center;
}

/* Hero */

.ap-hero {
    padding: 56px 24px 64px;
    background-color: #faf7f4;
}

.ap-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.ap-hero__text {
    text-align: center;
    max-width: 480px;
}

.ap-hero__title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.ap-hero__subtitle {
    font-size: 17px;
    color: #999;
    font-weight: 400;
    line-height: 1.5;
}

.ap-hero__photo {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 3 / 4;
}

/* Story */

.ap-story {
    padding: 0 24px 80px;
    background-color: #faf7f4;
}

.ap-story__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.ap-story__photo {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 5;
}

.ap-story__content {
    max-width: 560px;
}

.ap-story__text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ap-story__text p {
    font-size: 17px;
    line-height: 1.75;
    color: #3a3a3a;
}

/* Style */

.ap-style {
    position: relative;
    margin: 0 16px;
    border-radius: 28px;
    overflow: hidden;
}

.ap-style__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: #f3ece6;
    border-radius: 28px;
    z-index: 0;
}

.ap-style__inner {
    position: relative;
    z-index: 1;
    padding: 56px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ap-style__content {
    max-width: 520px;
}

.ap-style__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.ap-style__tag {
    display: inline-block;
    padding: 10px 22px;
    background: #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.ap-style__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ap-style__text p {
    font-size: 17px;
    line-height: 1.75;
    color: #3a3a3a;
}

.ap-style__photo {
    width: 100%;
    aspect-ratio: 16 / 7;
}

/* Quote */

.ap-quote {
    padding: 80px 24px;
    background-color: #faf7f4;
}

.ap-quote__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.ap-quote__content {
    max-width: 600px;
    text-align: center;
}

.ap-quote__text {
    margin: 0 0 20px;
    padding: 0;
    border: none;
}

.ap-quote__text p {
    font-size: 24px;
    line-height: 1.5;
    color: #1a1a1a;
    font-weight: 500;
    font-style: italic;
}

.ap-quote__note {
    font-size: 17px;
    line-height: 1.7;
    color: #888;
}

.ap-quote__photo {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

/* Love */

.ap-love {
    padding: 0 24px 80px;
    background-color: #faf7f4;
}

.ap-love__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.ap-love__content {
    max-width: 560px;
}

.ap-love__text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ap-love__text p {
    font-size: 17px;
    line-height: 1.75;
    color: #3a3a3a;
}

.ap-love__photo {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3 / 4;
}

/* CTA */

.ap-cta {
    padding: 32px 24px 80px;
    text-align: center;
    background-color: #faf7f4;
}

.ap-cta__btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 100px;
    background: #e8cfc2;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s;
}

.ap-cta__btn:hover {
    background: #ddc0b0;
}

/* Contacts page — hero */

.cp-hero {
    padding: 72px 24px 48px;
    background-color: #faf7f4;
    text-align: center;
}

.cp-hero__inner {
    max-width: 600px;
    margin: 0 auto;
}

.cp-hero__title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.cp-hero__subtitle {
    font-size: 17px;
    color: #999;
    font-weight: 400;
    line-height: 1.55;
}

/* Contacts page — cards */

.cp-contacts {
    padding: 24px 24px 56px;
    background-color: #faf7f4;
}

.cp-contacts__inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.cp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 40px 28px 36px;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.25s;
    border: 1.5px solid #efe7e0;
}

.cp-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.cp-card__icon {
    width: 56px;
    height: 56px;
    background: #f3ece6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cp-card__icon svg {
    width: 28px;
    height: 28px;
}

.cp-card__name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.cp-card__text {
    font-size: 16px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* Contacts page — closing */

.cp-closing {
    padding: 16px 24px 80px;
    background-color: #faf7f4;
    text-align: center;
}

.cp-closing__text {
    max-width: 560px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
}

/* Reviews */

.reviews {
    padding: 72px 24px 80px;
    background-color: #faf7f4;
}

.reviews__container {
    max-width: 1100px;
    margin: 0 auto;
}

.reviews__title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

.reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.reviews__card {
    background: #fff;
    border: 1px solid #efe7e0;
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
}

.reviews__card-heading {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.reviews__card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
    flex: 1;
}

.reviews__card-stars {
    font-size: 16px;
    color: #d9cdc2;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.reviews__card-author {
    font-size: 14px;
    color: #b0a59c;
    font-weight: 500;
}

.reviews__link {
    display: block;
    text-align: center;
    font-size: 15px;
    color: #b0a59c;
    text-decoration: none;
    font-weight: 500;
}

.reviews__link:hover {
    color: #1a1a1a;
}

/* Footer */

footer {
    text-align: center;
    padding: 32px 24px;
    color: #bbb;
    font-size: 14px;
}

/* Tablet */

@media (min-width: 600px) {
    .about__facts {
        grid-template-columns: repeat(3, 1fr);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-hero {
        padding: 80px 40px 56px;
    }

    .sp-hero__title {
        font-size: 44px;
    }

    .sp-hero__subtitle {
        font-size: 18px;
    }

    .sp-services {
        padding: 12px 40px 64px;
    }

    .sp-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .sp-card__image {
        aspect-ratio: 3 / 4;
    }

    .sp-card__gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 28px 28px;
    }

    .lightbox__prev {
        left: -60px;
    }

    .lightbox__next {
        right: -60px;
    }

    .sp-extra {
        padding: 0 40px 64px;
    }

    .sp-cta {
        padding: 8px 40px 96px;
    }

    .cp-hero {
        padding: 80px 40px 56px;
    }

    .cp-hero__title {
        font-size: 44px;
    }

    .cp-hero__subtitle {
        font-size: 18px;
    }

    .cp-contacts {
        padding: 32px 40px 64px;
    }

    .cp-contacts__inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .cp-card {
        padding: 44px 24px 40px;
    }

    .cp-closing {
        padding: 24px 40px 96px;
    }

    .cp-closing__text {
        font-size: 18px;
    }

    .ap-hero {
        padding: 72px 40px 72px;
    }

    .ap-hero__inner {
        flex-direction: row;
        gap: 56px;
        align-items: center;
    }

    .ap-hero__text {
        text-align: left;
        flex: 1;
    }

    .ap-hero__title {
        font-size: 44px;
    }

    .ap-hero__subtitle {
        font-size: 18px;
    }

    .ap-hero__photo {
        max-width: 320px;
        flex-shrink: 0;
    }

    .ap-story {
        padding: 0 40px 96px;
    }

    .ap-story__inner {
        flex-direction: row;
        gap: 56px;
        align-items: center;
    }

    .ap-story__photo {
        max-width: 260px;
        flex-shrink: 0;
    }

    .ap-story__content {
        flex: 1;
    }

    .ap-heading {
        font-size: 28px;
    }

    .ap-story__text p,
    .ap-style__text p,
    .ap-love__text p {
        font-size: 18px;
    }

    .ap-style {
        margin: 0 32px;
    }

    .ap-style__inner {
        padding: 64px 48px 48px;
        flex-direction: row;
        gap: 48px;
        align-items: flex-start;
    }

    .ap-style__content {
        flex: 1;
    }

    .ap-style__photo {
        flex: 1;
        max-width: none;
        aspect-ratio: 4 / 3;
    }

    .ap-style__tags {
        gap: 12px;
        margin-bottom: 28px;
    }

    .ap-style__tag {
        font-size: 15px;
        padding: 12px 24px;
    }

    .ap-quote {
        padding: 96px 40px;
    }

    .ap-quote__inner {
        flex-direction: row;
        gap: 56px;
        align-items: center;
    }

    .ap-quote__content {
        flex: 1;
    }

    .ap-quote__text p {
        font-size: 28px;
    }

    .ap-quote__note {
        font-size: 18px;
    }

    .ap-quote__photo {
        max-width: 220px;
        flex-shrink: 0;
    }

    .ap-love {
        padding: 0 40px 96px;
    }

    .ap-love__inner {
        flex-direction: row;
        gap: 56px;
        align-items: center;
    }

    .ap-love__content {
        flex: 1;
    }

    .ap-love__photo {
        max-width: 320px;
        flex-shrink: 0;
    }

    .reviews {
        padding: 80px 40px;
    }

    .reviews__title {
        font-size: 38px;
        margin-bottom: 56px;
    }

    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */

@media (min-width: 900px) {
    .hero {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 80px;
        padding: 60px 60px;
    }

    .hero__photo {
        width: 480px;
        max-width: none;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .hero__info {
        text-align: left;
        max-width: 440px;
    }

    .hero__name {
        font-size: 52px;
    }

    .hero__role {
        font-size: 19px;
    }

    .hero__tagline {
        font-size: 22px;
    }

    .hero__buttons {
        max-width: none;
        margin: 0;
        flex-direction: row;
    }

    .about {
        padding: 96px 60px 100px;
    }

    .about__title {
        font-size: 38px;
        margin-bottom: 48px;
    }

    .about__text p {
        font-size: 18px;
    }

    .ap-hero {
        padding: 80px 60px 80px;
    }

    .ap-hero__inner {
        gap: 80px;
    }

    .ap-hero__title {
        font-size: 52px;
    }

    .ap-hero__subtitle {
        font-size: 19px;
    }

    .ap-hero__photo {
        max-width: 380px;
    }

    .ap-story {
        padding: 0 60px 112px;
    }

    .ap-story__inner {
        gap: 80px;
    }

    .ap-story__photo {
        max-width: 320px;
    }

    .ap-heading {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .ap-style {
        margin: 0 60px;
    }

    .ap-style__inner {
        padding: 72px 64px 56px;
        gap: 64px;
    }

    .ap-style__heading {
        font-size: 30px;
    }

    .ap-style__tags {
        gap: 14px;
        margin-bottom: 32px;
    }

    .ap-style__tag {
        font-size: 15px;
        padding: 12px 28px;
    }

    .ap-quote {
        padding: 112px 60px;
    }

    .ap-quote__inner {
        gap: 80px;
    }

    .ap-quote__heading {
        font-size: 30px;
        margin-bottom: 36px;
    }

    .ap-quote__text p {
        font-size: 34px;
    }

    .ap-quote__note {
        font-size: 18px;
    }

    .ap-quote__photo {
        max-width: 260px;
    }

    .ap-love {
        padding: 0 60px 112px;
    }

    .ap-love__inner {
        gap: 80px;
    }

    .ap-love__heading {
        font-size: 30px;
    }

    .ap-love__photo {
        max-width: 400px;
    }

    .services {
        padding: 96px 60px 100px;
    }

    .services__title {
        font-size: 38px;
        margin-bottom: 14px;
    }

    .services__subtitle {
        font-size: 18px;
        margin-bottom: 56px;
    }

    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sp-hero {
        padding: 96px 60px 64px;
    }

    .sp-hero__title {
        font-size: 52px;
    }

    .sp-hero__subtitle {
        font-size: 19px;
    }

    .sp-services {
        padding: 16px 60px 72px;
    }

    .sp-services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .sp-card__body {
        padding: 28px 28px 32px;
    }

    .sp-card__name {
        font-size: 22px;
    }

    .sp-card__desc {
        font-size: 17px;
    }

    .sp-card__gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 0 28px 28px;
    }

    .lightbox__prev {
        left: -72px;
    }

    .lightbox__next {
        right: -72px;
    }

    .lightbox__close {
        top: -48px;
        right: -8px;
        font-size: 36px;
    }

    .sp-extra {
        padding: 0 60px 72px;
    }

    .sp-extra__inner {
        padding: 36px 32px;
    }

    .sp-extra__title {
        font-size: 20px;
    }

    .sp-extra__text {
        font-size: 16px;
    }

    .sp-cta {
        padding: 8px 60px 112px;
    }

    .sp-cta__title {
        font-size: 24px;
    }

    .sp-cta__text {
        font-size: 17px;
    }

    .cp-hero {
        padding: 96px 60px 64px;
    }

    .cp-hero__title {
        font-size: 52px;
    }

    .cp-hero__subtitle {
        font-size: 19px;
    }

    .cp-contacts {
        padding: 40px 60px 72px;
    }

    .cp-contacts__inner {
        max-width: 860px;
        gap: 28px;
    }

    .cp-card {
        padding: 48px 28px 44px;
        border-radius: 24px;
    }

    .cp-card__icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .cp-card__icon svg {
        width: 32px;
        height: 32px;
    }

    .cp-card__name {
        font-size: 22px;
    }

    .cp-card__text {
        font-size: 17px;
    }

    .cp-closing {
        padding: 32px 60px 112px;
    }

    .cp-closing__text {
        font-size: 19px;
    }

    .reviews {
        padding: 96px 60px 100px;
    }

    .reviews__title {
        font-size: 38px;
        margin-bottom: 56px;
    }

    .reviews__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Subtle animations */

.js-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Hero photo: soft fade-in on page load */

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

.hero__photo img {
    animation: hero-fade 0.8s ease-out both;
}

/* Service and gallery photos: subtle zoom on hover */

.services__card-image img,
.sp-card__photo,
.sp-card__gallery-grid img {
    transition: transform 0.5s ease;
}

.services__card:hover .services__card-image img,
.sp-card:hover .sp-card__photo,
.sp-card__gallery-grid img:hover {
    transform: scale(1.03);
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0s !important;
        scroll-behavior: auto !important;
    }

    .js-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Mobile: show style photo at natural proportions */

@media (max-width: 599px) {
    .ap-style__photo {
        aspect-ratio: auto;
        height: auto;
    }

    .ap-style__photo img {
        height: auto;
    }
}
