:root {
    --pink: #e97694;
    --pink-deep: #c95472;
    --pink-soft: #fff0f4;
    --cream: #fffaf8;
    --paper: #fffefe;
    --ink: #24191d;
    --muted: #75666b;
    --line: #eadde1;
    --wine: #6d1730;
    --shadow: 0 22px 60px rgba(75, 35, 49, .12);
    --radius: 32px;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Arial, Helvetica, sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden
}

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

a {
    color: inherit;
    text-decoration: none
}

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

button {
    color: inherit
}

.announcement {
    height: 32px;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 248, .9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(234, 221, 225, .8)
}

.nav-shell {
    max-width: 1440px;
    margin: auto;
    height: 86px;
    padding: 0 42px;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 24px
}

.brand {
    width: 190px;
    height: 64px;
    display: flex;
    align-items: center
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 38px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.main-nav a {
    position: relative;
    padding: 10px 0
}

.main-nav a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 5px;
    height: 1px;
    background: var(--pink);
    transition: .3s
}

.main-nav a:hover:after,
.main-nav a.active:after {
    right: 0
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 22px
}

.language-switch {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 12px
}

.language-switch button {
    border: 0;
    background: none;
    padding: 4px;
    cursor: pointer;
    opacity: .45
}

.language-switch button.active {
    opacity: 1;
    font-weight: 700
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    width: 38px;
    height: 38px;
    position: relative
}

.menu-toggle span {
    position: absolute;
    left: 8px;
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: .25s
}

.menu-toggle span:first-child {
    top: 14px
}

.menu-toggle span:last-child {
    top: 23px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 27px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 12px;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: transform .25s, background .25s, color .25s, border-color .25s
}

.button:hover {
    transform: translateY(-2px)
}

.button-small {
    min-height: 43px;
    padding: 0 21px
}

.button-primary {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 10px 25px rgba(233, 118, 148, .24)
}

.button-primary:hover {
    background: var(--pink-deep)
}

.button-outline {
    border-color: var(--ink);
    background: transparent
}

.button-outline:hover {
    background: var(--ink);
    color: #fff
}

.button-light {
    background: #fff;
    color: var(--wine)
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 5px
}

.eyebrow {
    display: block;
    color: var(--pink-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 18px
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.03
}

h1 {
    font-size: clamp(54px, 7vw, 108px)
}

h2 {
    font-size: clamp(38px, 5vw, 72px)
}

h3 {
    line-height: 1.2
}

.section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 70px
}

.section-heading {
    max-width: 760px
}

.section-heading-row {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 56px
}

.section-heading h2 {
    margin-bottom: 0
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease
}

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

/* Home */
.home-hero {
    max-width: 1540px;
    min-height: calc(100vh - 118px);
    margin: auto;
    padding: 72px 56px 88px;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: 48px;
    position: relative
}

.hero-copy {
    padding-left: 2vw
}

.hero-copy h1 {
    max-width: 680px;
    margin-bottom: 26px
}

.hero-copy h1 em {
    color: var(--pink);
    font-weight: 400
}

.hero-copy>p {
    max-width: 560px;
    color: var(--muted);
    font-size: 18px
}

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

.hero-note {
    margin-top: 58px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
    max-width: 380px
}

.hero-note span {
    font-family: var(--serif);
    font-size: 38px;
    color: var(--wine)
}

.hero-note p {
    margin: 0;
    font-size: 13px;
    color: var(--muted)
}

.hero-visual {
    height: min(710px, 72vh);
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    padding: 20px
}

.hero-visual:before {
    content: '';
    position: absolute;
    inset: 0 7% 4% 0;
    background: linear-gradient(145deg, #f4d9df, #fff3f5);
    border-radius: 46% 54% 45% 55%/55% 42% 58% 45%;
    z-index: -1
}

.hero-frame {
    overflow: hidden;
    box-shadow: var(--shadow)
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s
}

.hero-frame:hover img {
    transform: scale(1.035)
}

.hero-main {
    grid-row: 1/3;
    border-radius: 180px 180px 34px 34px
}

.hero-small {
    border-radius: 28px
}

.hero-top {
    transform: translateY(-16px)
}

.hero-bottom {
    transform: translateY(16px)
}

.bow-stamp {
    position: absolute;
    left: -12px;
    bottom: 8%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(109, 23, 48, .25);
    border-radius: 50%;
    background: rgba(255, 250, 248, .88);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-8deg);
    text-align: center
}

.bow-stamp:before {
    content: '୨୧';
    font-size: 32px;
    color: var(--pink)
}

.bow-stamp span {
    font-family: var(--serif);
    font-size: 20px
}

.bow-stamp small {
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted)
}

.marquee {
    overflow: hidden;
    background: var(--pink);
    color: #fff;
    transform: rotate(-1deg);
    margin: -30px -20px 30px;
    padding: 14px 0;
    white-space: nowrap
}

.marquee div {
    display: inline-flex;
    gap: 24px;
    align-items: center;
    animation: marquee 25s linear infinite;
    font-size: 12px;
    letter-spacing: .15em;
    font-weight: 700
}

.marquee i {
    font-style: normal
}

.marquee span {
    display: inline-block
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

.intro-section {
    padding-top: 150px
}

.intro-layout {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 80px;
    margin-top: 70px
}

.intro-lead {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.35
}

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

.promise-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 32px 28px;
    border-radius: 24px;
    min-height: 260px
}

.promise-card>span {
    font-family: var(--serif);
    font-size: 36px;
    color: var(--pink)
}

.promise-card h3 {
    font-family: var(--serif);
    font-size: 24px;
    margin: 45px 0 10px
}

.promise-card p {
    font-size: 14px;
    color: var(--muted)
}

.service-showcase {
    display: flex;
    flex-direction: column;
    gap: 110px
}

.service-panel {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 75px
}

.service-image {
    height: 650px;
    border-radius: 36px;
    overflow: hidden
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.service-copy {
    padding: 40px
}

.service-copy h2 {
    margin-bottom: 24px
}

.service-copy p {
    color: var(--muted);
    max-width: 490px;
    margin-bottom: 32px
}

.pedicure-panel {
    grid-template-columns: .92fr 1.08fr
}

.featured-work {
    padding-top: 90px
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 90px;
    gap: 16px
}

.editorial-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px
}

.editorial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.editorial-item:hover img {
    transform: scale(1.04)
}

.editorial-item span {
    position: absolute;
    left: 16px;
    bottom: 14px;
    background: rgba(255, 255, 255, .88);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase
}

.item-1 {
    grid-column: 1/5;
    grid-row: 1/6
}

.item-2 {
    grid-column: 5/9;
    grid-row: 1/4
}

.item-3 {
    grid-column: 9/13;
    grid-row: 1/5
}

.item-4 {
    grid-column: 5/8;
    grid-row: 4/8
}

.item-5 {
    grid-column: 8/13;
    grid-row: 5/9
}

.item-6 {
    grid-column: 1/5;
    grid-row: 6/9
}

.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    background: var(--pink-soft);
    max-width: none;
    padding-left: max(70px, calc((100vw - 1300px)/2));
    padding-right: max(70px, calc((100vw - 1300px)/2))
}

.about-photo {
    height: 720px;
    border-radius: 260px 260px 30px 30px;
    overflow: hidden
}

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

.about-copy {
    max-width: 560px
}

.large-copy {
    font-family: var(--serif);
    font-size: 26px;
    line-height: 1.45;
    color: #503e44
}

.signature {
    font-family: var(--serif);
    font-style: italic;
    font-size: 28px;
    margin: 35px 0
}

.signature span {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted)
}

.booking-banner {
    max-width: 1280px;
    background: var(--wine);
    color: #fff;
    border-radius: 42px;
    text-align: center;
    margin-top: 120px;
    margin-bottom: 120px;
    padding: 100px 40px
}

.booking-banner .eyebrow {
    color: #ffc2d1
}

.booking-banner h2 {
    max-width: 800px;
    margin: 0 auto 22px
}

.booking-banner p {
    color: #ead5dc;
    margin-bottom: 30px
}

/* Page heroes */
.page-hero {
    max-width: 1440px;
    margin: auto;
    padding: 75px 70px 110px;
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 80px;
    align-items: center
}

.page-hero-copy h1 {
    font-size: clamp(55px, 6.5vw, 94px)
}

.page-hero-copy p {
    font-size: 18px;
    color: var(--muted);
    max-width: 590px
}

.page-hero-image {
    height: 620px;
    border-radius: 300px 300px 32px 32px;
    overflow: hidden
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.service-detail {
    border-top: 1px solid var(--line)
}

.detail-heading {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 36px;
    max-width: 900px;
    margin-bottom: 70px
}

.service-number {
    font-family: var(--serif);
    font-size: 70px;
    color: var(--pink)
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.service-list-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px;
    min-height: 210px
}

.service-list-card h3 {
    font-family: var(--serif);
    font-size: 26px
}

.service-list-card p {
    font-size: 14px;
    color: var(--muted)
}

.image-break {
    max-width: none;
    position: relative;
    height: 760px;
    padding: 0;
    overflow: hidden
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.72)
}

.image-break div {
    position: absolute;
    left: max(70px, calc((100vw - 1300px)/2));
    bottom: 80px;
    color: #fff;
    max-width: 760px
}

.image-break .eyebrow {
    color: #ffc2d1
}

.pedicure-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.pedicure-photo {
    height: 680px;
    border-radius: 32px;
    overflow: hidden
}

.pedicure-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.option-row {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line)
}

.option-row>span {
    font-family: var(--serif);
    font-size: 25px;
    color: var(--pink)
}

.option-row h3 {
    font-family: var(--serif);
    font-size: 24px;
    margin-bottom: 8px
}

.option-row p {
    color: var(--muted);
    font-size: 14px
}

.process-section {
    background: var(--pink-soft);
    max-width: none;
    padding-left: max(70px, calc((100vw - 1300px)/2));
    padding-right: max(70px, calc((100vw - 1300px)/2))
}

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

.process-grid article {
    background: #fff;
    padding: 38px;
    border-radius: 24px
}

.process-grid span {
    font-family: var(--serif);
    font-size: 45px;
    color: var(--pink)
}

.process-grid h3 {
    font-family: var(--serif);
    font-size: 25px;
    margin-top: 35px
}

.process-grid p {
    color: var(--muted);
    font-size: 14px
}

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    border: 1px solid var(--line);
    border-radius: 34px;
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 70px
}

.coming-soon h2 {
    font-size: clamp(36px, 4vw, 60px);
    margin-bottom: 14px
}

.coming-soon p {
    color: var(--muted);
    max-width: 680px
}

/* Gallery */
.gallery-hero {
    max-width: 1440px;
    margin: auto;
    padding: 100px 70px 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px
}

.gallery-hero-copy {
    max-width: 850px
}

.gallery-hero-copy h1 {
    font-size: clamp(56px, 7vw, 105px)
}

.gallery-hero-copy p {
    font-size: 18px;
    color: var(--muted)
}

.gallery-counter {
    border-left: 1px solid var(--line);
    padding-left: 38px;
    min-width: 180px
}

.gallery-counter strong {
    display: block;
    font-family: var(--serif);
    font-size: 64px;
    color: var(--pink)
}

.gallery-counter span {
    font-size: 12px;
    color: var(--muted)
}

.gallery-section {
    padding: 20px 36px 110px
}

.filter-bar {
    position: sticky;
    top: 86px;
    z-index: 20;
    background: rgba(255, 250, 248, .94);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px
}

.filter-bar button {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 10px 17px;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer
}

.filter-bar button.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.masonry-gallery {
    columns: 4 280px;
    column-gap: 16px;
    max-width: 1500px;
    margin: auto
}

.gallery-card {
    break-inside: avoid;
    margin: 0 0 16px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #eee;
    cursor: zoom-in
}

.gallery-card img {
    width: 100%;
    height: auto;
    transition: transform .5s;
    min-height: 180px
}

.gallery-card:hover img {
    transform: scale(1.025)
}

.gallery-card:after {
    content: '↗';
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(5px);
    transition: .25s
}

.gallery-card:hover:after {
    opacity: 1;
    transform: none
}

.load-more-wrap {
    text-align: center;
    margin-top: 45px
}

.gallery-cta {
    text-align: center
}

.gallery-cta h2 {
    max-width: 760px;
    margin: 0 auto 30px
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(25, 17, 20, .94);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px
}

.lightbox.open {
    display: flex
}

.lightbox figure {
    margin: 0;
    max-width: min(1000px, 82vw);
    max-height: 88vh;
    text-align: center
}

.lightbox img {
    max-height: 80vh;
    max-width: 100%;
    margin: auto;
    object-fit: contain;
    border-radius: 12px
}

.lightbox figcaption {
    color: #fff;
    margin-top: 14px;
    font-size: 13px
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.lightbox-close {
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    font-size: 30px
}

.lightbox-nav {
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 38px
}

.lightbox-prev {
    left: 24px
}

.lightbox-next {
    right: 24px
}

/* About */
.about-hero {
    max-width: 1440px;
    margin: auto;
    padding: 80px 70px 120px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center
}

.about-hero-image {
    height: 760px;
    border-radius: 260px 260px 32px 32px;
    overflow: hidden
}

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

.about-hero-copy h1 {
    font-size: clamp(75px, 9vw, 130px);
    color: var(--wine)
}

.about-hero-copy>p {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.5;
    max-width: 620px
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 50px
}

.about-stats div {
    border-top: 1px solid var(--line);
    padding-top: 18px
}

.about-stats strong {
    display: block;
    font-family: var(--serif);
    font-size: 26px;
    color: var(--pink)
}

.about-stats span {
    font-size: 11px;
    color: var(--muted)
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    border-top: 1px solid var(--line)
}

.story-copy {
    font-size: 18px;
    color: #55464b
}

.story-copy p {
    margin-bottom: 26px
}

.values-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    background: var(--pink-soft);
    max-width: none;
    padding-left: max(70px, calc((100vw - 1300px)/2));
    padding-right: max(70px, calc((100vw - 1300px)/2))
}

.values-image {
    height: 690px;
    border-radius: 32px;
    overflow: hidden
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.values-list article {
    padding: 27px 0;
    border-bottom: 1px solid #dfcbd1
}

.values-list article>span {
    color: var(--pink);
    font-family: var(--serif);
    font-size: 24px
}

.values-list h3 {
    font-family: var(--serif);
    font-size: 30px;
    margin: 9px 0
}

.values-list p {
    color: var(--muted)
}

.booking-section {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: start
}

.booking-copy {
    position: sticky;
    top: 140px
}

.booking-copy h2 {
    margin-bottom: 20px
}

.booking-copy>p {
    color: var(--muted);
    max-width: 480px
}

.contact-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 38px;
    font-size: 14px
}

.booking-form {
    background: #fff;
    border: 1px solid var(--line);
    padding: 42px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 22px
}

.booking-form label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--cream);
    border-radius: 13px;
    padding: 14px 16px;
    outline: none;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(233, 118, 148, .12)
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: #fff;
    padding: 80px 60px 28px
}

.footer-grid {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr .65fr 1fr 1.2fr;
    gap: 60px
}

.footer-brand img {
  width: 220px;
  height: auto;
  filter: none;
  opacity: 1;
  background: #fff6f8;
  padding: 12px 16px;
  border-radius: 16px;
  object-fit: contain;
}

.footer-brand p {
    color: #c7b8bd;
    max-width: 330px;
    font-size: 14px;
    margin-top: 20px
}

.site-footer h3 {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #f5b7c7;
    margin-bottom: 20px
}

.site-footer a,
.site-footer span {
    display: block;
    color: #d7cbd0;
    font-size: 13px;
    margin-bottom: 9px
}

.footer-cta {
  width: 100%;
  max-width: 330px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-cta h3 {
  width: 100%;
  margin-bottom: 16px;
}

.footer-cta .button {
  width: 100%;
  max-width: 260px;
  height: 52px;
  margin: 0;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 1;
  text-align: center;

  color: #fff;
  border-color: #fff;
  background: transparent;
}

.footer-bottom {
  max-width: 1320px;
  margin: 60px auto 0;
  padding-top: 20px;
  border-top: 1px solid #45383d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  margin: 0;
}

.footer-bottom #year {
  display: inline;
  margin: 0;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 45;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    transition: .25s
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.03)
}

.floating-whatsapp svg {
    width: 31px;
    fill: #fff
}

@media(max-width:1100px) {
    .nav-shell {
        grid-template-columns: 180px 1fr auto;
        padding: 0 24px
    }

    .main-nav {
        gap: 20px
    }

    .home-hero {
        grid-template-columns: 1fr 1fr;
        padding: 55px 30px 75px
    }

    .hero-visual {
        height: 600px
    }

    .section {
        padding: 95px 40px
    }

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

    .service-list-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-preview,
    .values-section,
    .process-section {
        padding-left: 40px;
        padding-right: 40px
    }

    .service-panel {
        gap: 40px
    }

    .service-image {
        height: 560px
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr
    }

    .footer-cta {
        grid-column: 2/4
    }

    .about-hero {
        padding: 60px 40px 100px;
        gap: 50px
    }

    .about-hero-image {
        height: 650px
    }

    .page-hero {
        padding: 60px 40px 90px
    }

    .gallery-hero {
        padding: 80px 40px 60px
    }
}

@media(max-width:820px) {
    .announcement {
        font-size: 9px
    }

    .nav-shell {
        height: 74px;
        grid-template-columns: 1fr auto auto;
        padding: 0 16px
    }

    .brand {
        width: 145px;
        height: 54px
    }

    .menu-toggle {
        display: block;
        grid-column: 3
    }

    .nav-actions {
        grid-column: 2;
        grid-row: 1
    }

    .nav-book {
        display: none
    }

    .main-nav {
        position: fixed;
        top: 106px;
        left: 0;
        right: 0;
        background: var(--cream);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 28px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, .08);
        transform: translateY(-130%);
        opacity: 0;
        transition: .3s;
        z-index: -1
    }

    .main-nav.open {
        transform: none;
        opacity: 1
    }

    .menu-toggle.open span:first-child {
        transform: rotate(45deg);
        top: 19px
    }

    .menu-toggle.open span:last-child {
        transform: rotate(-45deg);
        top: 19px
    }

    .home-hero {
        grid-template-columns: 1fr;
        padding: 60px 20px 80px;
        min-height: auto
    }

    .hero-copy {
        padding: 0
    }

    .hero-visual {
        height: 560px;
        margin-top: 20px
    }

    .hero-main {
        border-radius: 120px 120px 24px 24px
    }

    .bow-stamp {
        width: 120px;
        height: 120px
    }

    .section {
        padding: 80px 22px
    }

    .promise-grid {
        grid-template-columns: 1fr
    }

    .promise-card {
        min-height: auto
    }

    .service-panel,
    .pedicure-panel {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .pedicure-panel .service-copy {
        order: 2
    }

    .service-image {
        height: 520px
    }

    .service-copy {
        padding: 15px 5px
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column
    }

    .editorial-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px
    }

    .editorial-item {
        grid-column: auto !important;
        grid-row: auto !important
    }

    .about-preview {
        grid-template-columns: 1fr;
        padding: 80px 22px;
        gap: 45px
    }

    .about-photo {
        height: 600px
    }

    .booking-banner {
        margin: 60px 16px 90px;
        padding: 75px 24px
    }

    .page-hero {
        grid-template-columns: 1fr;
        padding: 55px 22px 80px;
        gap: 35px
    }

    .page-hero-image {
        height: 520px
    }

    .detail-heading {
        grid-template-columns: 70px 1fr
    }

    .service-number {
        font-size: 50px
    }

    .service-list-grid {
        grid-template-columns: 1fr
    }

    .image-break {
        height: 620px
    }

    .image-break div {
        left: 22px;
        right: 22px;
        bottom: 45px
    }

    .pedicure-layout {
        grid-template-columns: 1fr
    }

    .pedicure-photo {
        height: 560px
    }

    .process-section {
        padding-left: 22px;
        padding-right: 22px
    }

    .process-grid {
        grid-template-columns: 1fr
    }

    .coming-soon {
        margin: 65px 16px;
        padding: 45px 24px;
        flex-direction: column;
        align-items: flex-start
    }

    .gallery-hero {
        padding: 70px 22px 45px;
        flex-direction: column;
        align-items: flex-start
    }

    .gallery-counter {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 20px 0 0
    }

    .gallery-section {
        padding: 10px 10px 80px
    }

    .filter-bar {
        top: 74px
    }

    .masonry-gallery {
        columns: 2 150px;
        column-gap: 10px
    }

    .gallery-card {
        margin-bottom: 10px;
        border-radius: 12px
    }

    .lightbox {
        padding: 50px 12px
    }

    .lightbox-nav {
        top: auto;
        bottom: 14px
    }

    .lightbox-prev {
        left: calc(50% - 65px)
    }

    .lightbox-next {
        right: calc(50% - 65px)
    }

    .about-hero {
        grid-template-columns: 1fr;
        padding: 55px 22px 80px;
        gap: 35px
    }

    .about-hero-image {
        height: 600px
    }

    .about-hero-copy h1 br {
        display: none
    }

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

    .story-section {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .values-section {
        grid-template-columns: 1fr;
        padding: 80px 22px;
        gap: 45px
    }

    .values-image {
        height: 560px
    }

    .booking-section {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .booking-copy {
        position: static
    }

    .booking-form {
        padding: 26px
    }

    .site-footer {
        padding: 65px 24px 24px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px
    }

    .footer-brand {
        grid-column: 1/3
    }

    .footer-cta {
        grid-column: 1/3
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px
    }
}

@media(max-width:480px) {
    h1 {
        font-size: 53px
    }

    .hero-visual {
        height: 430px;
        grid-template-columns: 1.25fr .75fr;
        gap: 10px;
        padding: 5px
    }

    .hero-small {
        border-radius: 15px
    }

    .bow-stamp {
        display: none
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column
    }

    .marquee {
        margin-top: -15px
    }

    .intro-lead {
        font-size: 25px
    }

    .editorial-grid {
        grid-auto-rows: 170px;
        gap: 9px
    }

    .about-photo,
    .about-hero-image {
        height: 500px
    }

    .service-image,
    .page-hero-image,
    .pedicure-photo,
    .values-image {
        height: 430px
    }

    .masonry-gallery {
        columns: 2
    }

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

    .footer-brand,
    .footer-cta {
        grid-column: auto
    }

    .language-switch span {
        display: none
    }

    .language-switch {
        gap: 1px
    }

    .gallery-card:after {
        display: none
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .marquee div {
        animation: none
    }

    .hero-frame img,
    .editorial-item img {
        transition: none
    }
}