:root {
    --ink: #262223;
    --ink-soft: #3b3538;
    --ivory: #f8edef;
    --cream: #dfe4de;
    --gold: #9b711d;
    --gold-deep: #7d5714;
    --gold-light: #d4b76f;
    --rose: #6b6370;
    --white: #fffdfb;
    --muted: #6b6968;
    --line-dark: rgb(38 34 35 / 16%);
    --line-light: rgb(255 253 251 / 18%);
    --shadow: 0 28px 80px rgb(38 34 35 / 14%);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --shell: min(1240px, calc(100% - 80px));
}

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

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

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

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

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

button {
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

::selection {
    color: var(--white);
    background: var(--rose);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: clamp(90px, 10vw, 150px);
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--gold-deep);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3rem, 5.7vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.section-title em {
    color: var(--gold);
    font-weight: 500;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 14px 21px 14px 25px;
    border: 1px solid transparent;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: color 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease), transform 300ms var(--ease);
}

.button span {
    font-size: 1.1rem;
    transition: transform 300ms var(--ease);
}

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

.button:hover span {
    transform: translate(2px, -2px);
}

.button-gold {
    color: var(--white);
    background: var(--gold-deep);
}

.button-gold:hover {
    color: var(--white);
    background: #7f5912;
}

.text-link {
    position: relative;
    padding-block: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.07em;
}

.text-link::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 350ms var(--ease);
}

.text-link:hover::after {
    transform: scaleX(0.2);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: 92px;
    border-bottom: 1px solid transparent;
    transition: height 350ms var(--ease), background-color 350ms var(--ease), border-color 350ms var(--ease), box-shadow 350ms var(--ease);
}

.site-header.is-scrolled {
    height: 76px;
    border-color: var(--line-dark);
    background: rgb(248 237 239 / 92%);
    box-shadow: 0 10px 36px rgb(38 34 35 / 5%);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.brand {
    position: relative;
    z-index: 102;
    display: grid;
    width: 150px;
    height: 70px;
    place-items: center;
    overflow: hidden;
}

.brand img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    max-width: none;
    height: 150px;
    object-fit: contain;
    transform: translate(-50%, -50%);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 36px);
}

.site-nav > a:not(.nav-cta) {
    position: relative;
    padding-block: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.site-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms var(--ease);
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta).is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-grid;
    min-width: 116px;
    min-height: 42px;
    place-items: center;
    border: 1px solid var(--ink);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: color 250ms ease, background 250ms ease;
}

.nav-cta:hover {
    color: var(--white);
    background: var(--ink);
}

.nav-toggle {
    position: relative;
    z-index: 102;
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 8px;
    width: 28px;
    height: 1px;
    background: currentColor;
    transition: transform 300ms var(--ease), top 300ms var(--ease);
}

.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 26px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    display: grid;
    min-height: max(760px, 100svh);
    align-items: center;
    padding: 118px 0 82px;
    background:
        radial-gradient(circle at 5% 20%, rgb(212 183 111 / 13%), transparent 28%),
        linear-gradient(120deg, var(--ivory), #f4e6e9 65%, #eadadd);
    isolation: isolate;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    z-index: -1;
    top: -28%;
    left: 48%;
    width: min(58vw, 860px);
    aspect-ratio: 1;
    border: 1px solid rgb(155 113 29 / 22%);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    gap: clamp(50px, 7vw, 110px);
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 4;
    max-width: 580px;
    padding-bottom: 18px;
}

.hero h1 {
    max-width: 650px;
    margin: 0 0 30px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(4.4rem, 7.5vw, 8.1rem);
    font-weight: 500;
    line-height: 0.82;
    letter-spacing: -0.055em;
}

.hero h1 em {
    display: block;
    color: var(--gold);
    font-weight: 500;
    text-indent: 0.45em;
}

.hero-lead {
    max-width: 510px;
    margin: 0 0 34px;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.85;
}

.hero-actions,
.contact-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.open-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 500;
}

.status-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgb(155 113 29 / 12%);
}

.open-status.is-open .status-dot {
    background: #53705b;
    box-shadow: 0 0 0 4px rgb(83 112 91 / 13%);
}

.hero-visual {
    position: relative;
    min-height: min(75vh, 720px);
}

.hero-main-image {
    position: absolute;
    top: 0;
    right: 2%;
    width: min(74%, 490px);
    height: 92%;
    margin: 0;
    box-shadow: var(--shadow);
    opacity: 0;
    overflow: hidden;
    animation: heroImageIn 1250ms var(--ease) 120ms forwards;
}

.hero-main-image::after,
.about-frame::after,
.gallery-item::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgb(38 34 35 / 18%));
    content: "";
    pointer-events: none;
}

.hero-main-image img,
.hero-small-image img,
.about-frame img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-main-image img {
    object-position: center 30%;
}

.hero-small-image {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: clamp(150px, 32%, 218px);
    aspect-ratio: 0.96;
    margin: 0;
    border: 9px solid var(--ivory);
    box-shadow: 0 18px 45px rgb(38 34 35 / 17%);
    opacity: 0;
    overflow: hidden;
    animation: heroSmallIn 900ms var(--ease) 720ms forwards;
}

.hero-stamp {
    position: absolute;
    z-index: 3;
    right: -12px;
    bottom: 5%;
    display: grid;
    width: 126px;
    aspect-ratio: 1;
    place-content: center;
    border: 1px solid rgb(155 113 29 / 45%);
    border-radius: 50%;
    color: var(--gold-deep);
    background: rgb(248 237 239 / 86%);
    text-align: center;
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: rotate(9deg) scale(0.8);
    animation: stampIn 800ms var(--ease) 1100ms forwards;
}

.hero-stamp::before,
.hero-stamp::after {
    position: absolute;
    inset: 6px;
    border: 1px solid rgb(155 113 29 / 23%);
    border-radius: 50%;
    content: "";
}

.hero-stamp span {
    position: relative;
    z-index: 1;
    font-size: 0.5rem;
    letter-spacing: 0.27em;
}

.hero-stamp strong {
    position: relative;
    z-index: 1;
    margin: -2px 0 -5px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.9rem;
    font-weight: 500;
    line-height: 1;
}

.hero-item {
    opacity: 0;
    transform: translateY(24px);
    animation: heroTextIn 850ms var(--ease) forwards;
}

.hero-copy .hero-item:nth-child(1) { animation-delay: 850ms; }
.hero-copy .hero-item:nth-child(2) { animation-delay: 950ms; }
.hero-copy .hero-item:nth-child(3) { animation-delay: 1050ms; }
.hero-copy .hero-item:nth-child(4) { animation-delay: 1150ms; }
.hero-copy .hero-item:nth-child(5) { animation-delay: 1250ms; }

.discover-link {
    position: absolute;
    z-index: 4;
    bottom: 25px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.discover-link span:last-child {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    animation: discoverBounce 2s ease-in-out infinite;
}

.sakura-field {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
}

.sakura-field svg {
    position: absolute;
    fill: rgb(155 113 29 / 23%);
    filter: drop-shadow(0 4px 6px rgb(38 34 35 / 5%));
}

.sakura-field .petal { width: 24px; animation: petalFloat 12s ease-in-out infinite alternate; }
.sakura-field .leaf { width: 35px; fill: rgb(107 99 112 / 18%); animation: leafFloat 15s ease-in-out infinite alternate; }
.petal-one { top: 16%; left: 5%; transform: rotate(24deg); }
.petal-two { top: 28%; left: 47%; animation-delay: -4s !important; transform: rotate(-18deg) scale(0.7); }
.petal-three { right: 4%; bottom: 25%; animation-delay: -7s !important; transform: rotate(35deg) scale(1.25); }
.petal-four { bottom: 10%; left: 39%; animation-delay: -2s !important; transform: rotate(-35deg) scale(0.8); }
.leaf-one { top: 15%; right: 8%; animation-delay: -5s !important; transform: rotate(-25deg); }
.leaf-two { bottom: 20%; left: 8%; transform: rotate(35deg); }

@keyframes heroImageIn {
    from { opacity: 0; clip-path: inset(0 0 100% 0); transform: scale(1.04); }
    to { opacity: 1; clip-path: inset(0); transform: scale(1); }
}

@keyframes heroSmallIn {
    from { opacity: 0; transform: translate(-24px, 24px); }
    to { opacity: 1; transform: translate(0); }
}

@keyframes stampIn {
    to { opacity: 1; transform: rotate(9deg) scale(1); }
}

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

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

@keyframes petalFloat {
    to { translate: 55px 42px; rotate: 90deg; }
}

@keyframes leafFloat {
    to { translate: -48px 38px; rotate: -60deg; }
}

/* Service ribbon */
.service-ribbon {
    display: flex;
    height: 64px;
    align-items: center;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.ribbon-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: ribbonMove 30s linear infinite;
}

.ribbon-track span {
    padding-inline: 28px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.12rem;
    font-style: italic;
    white-space: nowrap;
}

.ribbon-track i {
    color: var(--gold-light);
    font-style: normal;
    font-size: 0.65rem;
}

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

/* About */
.about {
    background: var(--white);
}

.about::after {
    position: absolute;
    right: -9vw;
    bottom: -10vw;
    width: 35vw;
    min-width: 320px;
    aspect-ratio: 1;
    border: 1px solid rgb(155 113 29 / 10%);
    border-radius: 50%;
    content: "";
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(70px, 10vw, 150px);
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 620px;
}

.about-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 84%;
    height: 92%;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.about-logo-card {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    display: grid;
    width: 190px;
    aspect-ratio: 1;
    place-items: center;
    background: var(--ivory);
    box-shadow: 0 16px 50px rgb(38 34 35 / 10%);
    overflow: hidden;
}

.about-logo-card img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 210px;
    max-width: none;
    height: 210px;
    object-fit: contain;
    transform: translate(-50%, -50%);
}

.about-copy {
    position: relative;
    z-index: 2;
    max-width: 575px;
}

.about-copy .section-title {
    max-width: 620px;
}

.about-copy > p:not(.eyebrow, .signature) {
    max-width: 540px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

.hairline {
    width: 72px;
    height: 1px;
    margin: 38px 0;
    background: var(--gold);
}

.signature {
    margin: 34px 0 0;
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.65rem;
    font-style: italic;
}

/* Services */
.services {
    color: var(--white);
    background: var(--ink);
}

.services .eyebrow,
.testimonials .eyebrow,
.contact .eyebrow {
    color: var(--gold-light);
}

.section-heading {
    margin-bottom: clamp(54px, 7vw, 92px);
}

.split-heading {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: end;
}

.section-intro {
    max-width: 420px;
    margin: 0 0 8px auto;
    color: rgb(255 253 251 / 62%);
    font-size: 0.9rem;
}

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

.service-row {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 56px;
    gap: clamp(20px, 4vw, 64px);
    align-items: center;
    min-height: 154px;
    border-bottom: 1px solid var(--line-light);
    transition: background-color 350ms var(--ease), padding 350ms var(--ease);
}

.service-row:hover {
    padding-inline: 22px;
    background: rgb(255 253 251 / 3.5%);
}

.service-number {
    align-self: start;
    margin-top: 48px;
    color: var(--gold-light);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
}

.service-copy {
    display: grid;
    grid-template-columns: minmax(250px, 0.75fr) minmax(280px, 1fr);
    gap: clamp(30px, 6vw, 100px);
    align-items: center;
}

.service-copy h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.85rem, 3.2vw, 3.2rem);
    font-weight: 500;
    line-height: 1;
}

.service-copy p {
    max-width: 475px;
    margin: 0;
    color: rgb(255 253 251 / 60%);
    font-size: 0.86rem;
}

.circle-link {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgb(212 183 111 / 42%);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 1.15rem;
    transition: color 300ms var(--ease), background 300ms var(--ease), transform 300ms var(--ease);
}

.circle-link:hover {
    color: var(--ink);
    background: var(--gold-light);
    transform: rotate(45deg);
}

.service-note {
    margin: 34px 0 0 134px;
    color: rgb(255 253 251 / 68%);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

/* Experience */
.experience {
    background: var(--cream);
}

.centered-heading {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.experience-steps {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}

.experience-steps li {
    position: relative;
    min-height: 285px;
    padding: 40px clamp(28px, 4vw, 58px);
    border-top: 1px solid rgb(38 34 35 / 23%);
    border-right: 1px solid rgb(38 34 35 / 16%);
}

.experience-steps li:last-child {
    border-right: 0;
}

.experience-steps li > span {
    color: var(--gold);
    font-size: 0.63rem;
    letter-spacing: 0.16em;
}

.experience-steps h3 {
    max-width: 250px;
    margin: 62px 0 18px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.65rem, 2.5vw, 2.4rem);
    font-weight: 600;
    line-height: 1.05;
}

.experience-steps p {
    max-width: 300px;
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

/* Gallery */
.gallery {
    background: var(--white);
}

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

.instagram-link,
.contact-block > a {
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    color: var(--gold-deep);
    font-size: 0.78rem;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(250px, 24vw));
    gap: 18px;
}

.gallery-item {
    position: relative;
    min-width: 0;
    padding: 0;
    border: 0;
    background: var(--ink-soft);
    cursor: zoom-in;
    overflow: hidden;
}

.gallery-item:nth-child(1) { grid-column: 1 / span 5; grid-row: 1; }
.gallery-item:nth-child(2) { grid-column: 6 / span 4; grid-row: 1 / span 2; }
.gallery-item:nth-child(3) { grid-column: 10 / span 3; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 1 / span 5; grid-row: 2; }

.gallery-item img {
    transition: transform 900ms var(--ease), filter 500ms ease;
}

.gallery-item:nth-child(1) img { object-position: center 46%; }
.gallery-item:nth-child(2) img { object-position: center 35%; }
.gallery-item:nth-child(3) img { object-position: center 30%; }
.gallery-item:nth-child(4) img { object-position: center 38%; }

.gallery-item:hover img {
    filter: saturate(0.88);
    transform: scale(1.045);
}

.gallery-item > span {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 17px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 7px 10px;
    color: var(--white);
    background: rgb(38 34 35 / 36%);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    backdrop-filter: blur(7px);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}

.gallery-item:hover > span,
.gallery-item:focus-visible > span {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item > span i { font-style: normal; }

/* Testimonials */
.testimonials {
    color: var(--white);
    background: var(--rose);
    overflow: hidden;
}

.testimonials::before {
    position: absolute;
    top: -170px;
    right: -80px;
    width: 520px;
    aspect-ratio: 1;
    border: 1px solid rgb(255 253 251 / 10%);
    border-radius: 50%;
    content: "";
}

.testimonials-shell {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(55px, 9vw, 130px);
    align-items: center;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.testimonial-controls button {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgb(255 253 251 / 35%);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    transition: color 250ms ease, background 250ms ease;
}

.testimonial-controls button:hover {
    color: var(--rose);
    background: var(--white);
}

.testimonial-controls > span {
    min-width: 48px;
    color: rgb(255 253 251 / 52%);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
}

.testimonial-controls strong {
    color: var(--white);
    font-weight: 500;
}

.testimonial-viewport {
    min-width: 0;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 800ms var(--ease);
    will-change: transform;
}

.testimonial-card {
    min-width: 100%;
    margin: 0;
    padding: 12px 5px 12px 0;
}

.testimonial-card > p:not(.review-label) {
    position: relative;
    margin: 0 0 36px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.9rem, 3.1vw, 3rem);
    font-weight: 500;
    line-height: 1.24;
    letter-spacing: -0.018em;
}

.review-label {
    margin: 0 0 30px;
    color: var(--gold-light);
    font-size: 0.62rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.testimonial-card footer {
    display: inline-block;
    padding-top: 13px;
    border-top: 1px solid var(--gold-light);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Contact and footer */
.contact {
    color: var(--white);
    background: var(--ink-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(70px, 11vw, 160px);
}

.contact-main {
    position: sticky;
    top: 120px;
    align-self: start;
}

.contact-intro {
    max-width: 590px;
    margin: 38px 0 36px;
    color: rgb(255 253 251 / 62%);
    font-size: 0.9rem;
}

.text-link-light {
    color: var(--white);
}

.contact-details {
    border-top: 1px solid var(--line-light);
}

.contact-block {
    padding: 34px 0 38px;
    border-bottom: 1px solid var(--line-light);
}

.detail-label {
    margin: 0 0 15px;
    color: var(--gold-light);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-block address {
    margin: 0 0 20px;
    color: rgb(255 253 251 / 78%);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.35rem;
    font-style: normal;
    line-height: 1.5;
}

.contact-block > a {
    color: var(--gold-light);
}

.hours-list {
    max-width: 390px;
    margin: 0;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 6px 0;
    color: rgb(255 253 251 / 74%);
    font-size: 0.78rem;
}

.hours-list dt,
.hours-list dd { margin: 0; }
.hours-list dd { color: var(--white); }

.site-footer {
    color: var(--white);
    background: var(--ink);
}

.footer-top {
    display: grid;
    min-height: 220px;
    grid-template-columns: 190px 1fr auto;
    gap: 60px;
    align-items: center;
    border-bottom: 1px solid var(--line-light);
}

.footer-logo {
    position: relative;
    display: grid;
    width: 180px;
    height: 90px;
    place-items: center;
    overflow: hidden;
}

.footer-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    max-width: none;
    height: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transform: translate(-50%, -50%);
}

.footer-top > p {
    max-width: 450px;
    margin: 0;
    color: rgb(255 253 251 / 60%);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.25;
}

.back-to-top {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.09em;
}

.footer-bottom {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgb(255 253 251 / 64%);
    font-size: 0.65rem;
    letter-spacing: 0.04em;
}

.footer-bottom p { margin: 0; }
.footer-bottom a { transition: color 200ms ease; }
.footer-bottom a:hover { color: var(--gold-light); }

.floating-whatsapp {
    position: fixed;
    z-index: 80;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgb(255 253 251 / 30%);
    border-radius: 50%;
    color: var(--white);
    background: #476c52;
    box-shadow: 0 14px 30px rgb(38 34 35 / 22%);
    transition: transform 300ms var(--ease), background 300ms ease;
}

.floating-whatsapp:hover {
    background: #365c41;
    transform: translateY(-4px);
}

.floating-whatsapp svg {
    width: 26px;
    fill: currentColor;
}

/* Lightbox */
.lightbox {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    padding: 54px 90px;
    place-items: center;
    visibility: hidden;
    background: rgb(23 20 21 / 94%);
    opacity: 0;
    transition: opacity 300ms ease, visibility 300ms ease;
}

.lightbox.is-open {
    visibility: visible;
    opacity: 1;
}

.lightbox figure {
    display: grid;
    max-width: min(76vw, 850px);
    max-height: 84vh;
    margin: 0;
    place-items: center;
}

.lightbox figure img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 77vh;
    box-shadow: 0 25px 80px rgb(0 0 0 / 40%);
    object-fit: contain;
}

.lightbox figcaption {
    margin-top: 13px;
    color: rgb(255 253 251 / 72%);
    font-size: 0.72rem;
    text-align: center;
}

.lightbox button {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px solid rgb(255 253 251 / 30%);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

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

.lightbox-nav {
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.noscript-note {
    position: fixed;
    z-index: 1000;
    right: 15px;
    bottom: 15px;
    left: 15px;
    margin: 0;
    padding: 12px;
    color: var(--white);
    background: var(--ink);
    font-size: 0.8rem;
    text-align: center;
}

/* Scroll reveal */
.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

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

.reveal-ready .about-visual.reveal.is-visible {
    transform: translateY(var(--parallax-y, 0));
}

/* Error pages */
.error-page {
    min-height: 100svh;
    background:
        radial-gradient(circle at 85% 20%, rgb(212 183 111 / 14%), transparent 30%),
        var(--ivory);
}

.error-layout {
    position: relative;
    display: grid;
    width: var(--shell);
    min-height: 100svh;
    margin-inline: auto;
    place-items: center;
    text-align: center;
}

.error-logo {
    position: absolute;
    top: 22px;
    left: 0;
    display: grid;
    width: 150px;
    height: 72px;
    place-items: center;
    overflow: hidden;
}

.error-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    max-width: none;
    height: 150px;
    object-fit: contain;
    transform: translate(-50%, -50%);
}

.error-content {
    max-width: 680px;
    padding-block: 130px 80px;
}

.error-code {
    margin: 0 0 -28px;
    color: rgb(155 113 29 / 12%);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(8rem, 24vw, 16rem);
    line-height: 0.7;
}

.error-content h1 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.2rem, 7vw, 5.7rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.error-content > p:not(.error-code, .eyebrow) {
    max-width: 560px;
    margin: 30px auto;
    color: var(--muted);
    font-size: 0.92rem;
}

/* Tablet */
@media (max-width: 1050px) {
    :root { --shell: min(100% - 56px, 940px); }

    .hero-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 40px;
    }

    .hero h1 { font-size: clamp(4.1rem, 8.5vw, 6.7rem); }
    .hero-visual { min-height: 620px; }

    .service-copy {
        grid-template-columns: minmax(220px, 0.8fr) 1fr;
        gap: 35px;
    }

    .testimonials-shell {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 55px;
    }
}

@media (max-width: 860px) {
    :root { --shell: min(100% - 42px, 760px); }

    .site-header,
    .site-header.is-scrolled { height: 74px; }

    .nav-toggle { display: block; }

    .site-nav {
        position: fixed;
        z-index: 101;
        inset: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 13px;
        padding: 100px max(32px, 9vw) 60px;
        color: var(--white);
        background: var(--ink);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 350ms var(--ease), transform 350ms var(--ease), visibility 350ms;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav > a:not(.nav-cta) {
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: clamp(2.2rem, 8vw, 3.4rem);
        font-weight: 500;
        letter-spacing: 0;
    }

    .site-nav .nav-cta {
        min-width: 170px;
        margin-top: 16px;
        border-color: var(--gold-light);
        color: var(--gold-light);
    }

    .nav-toggle[aria-expanded="true"] { color: var(--white); }

    .hero {
        display: block;
        min-height: auto;
        padding: 120px 0 90px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 62px;
    }

    .hero-copy { max-width: 650px; }
    .hero h1 { max-width: 620px; font-size: clamp(4.8rem, 14vw, 7rem); }
    .hero-visual { min-height: 680px; }
    .hero-main-image { width: min(77%, 500px); right: 3%; }
    .hero-small-image { width: 190px; left: 5%; }
    .discover-link { display: none; }

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

    .about-visual { width: min(100%, 620px); min-height: 640px; }
    .about-copy { margin-left: 8%; }

    .split-heading,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .section-intro { margin-left: 0; }

    .service-copy {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-block: 32px;
    }

    .experience-steps { grid-template-columns: 1fr; }
    .experience-steps li { min-height: 240px; border-right: 0; }
    .experience-steps h3 { margin-top: 35px; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 420px 500px 420px;
    }

    .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1 / span 2; }
    .gallery-item:nth-child(3) { grid-column: 1; grid-row: 2; }
    .gallery-item:nth-child(4) { grid-column: 1 / span 2; grid-row: 3; }

    .testimonials-shell { grid-template-columns: 1fr; }
    .testimonials-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; }
    .testimonials-heading .eyebrow { grid-column: 1 / -1; }
    .testimonial-controls { margin: 0; }

    .contact-main { position: static; }

    .footer-top { grid-template-columns: 140px 1fr; }
    .back-to-top { grid-column: 2; margin-top: -45px; justify-self: end; }
}

/* Mobile */
@media (max-width: 600px) {
    :root { --shell: calc(100% - 34px); }

    body { font-size: 15px; }
    .section { padding-block: 82px; }
    .section-title { font-size: clamp(2.9rem, 14vw, 4rem); }

    .brand { width: 125px; height: 58px; }
    .brand img { width: 125px; height: 125px; }

    .hero { padding-top: 108px; }
    .hero::before { top: 26%; left: 18%; width: 120vw; }
    .hero h1 { font-size: clamp(4.2rem, 20vw, 5.7rem); }
    .hero h1 em { text-indent: 0.12em; }
    .hero-lead { font-size: 0.89rem; }
    .hero-actions, .contact-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
    .hero-visual { min-height: 540px; }
    .hero-main-image { right: 0; width: 82%; height: 88%; }
    .hero-small-image { left: 0; width: 145px; border-width: 7px; }
    .hero-stamp { right: -9px; bottom: 2%; width: 103px; }
    .hero-stamp strong { font-size: 2.35rem; }
    .open-status { align-items: flex-start; }

    .service-ribbon { height: 58px; }
    .ribbon-track span { padding-inline: 20px; font-size: 1rem; }

    .about-grid { gap: 65px; }
    .about-visual { min-height: 475px; }
    .about-frame { width: 88%; }
    .about-logo-card { width: 130px; }
    .about-logo-card img { width: 145px; height: 145px; }
    .about-copy { margin-left: 0; }
    .hairline { margin: 30px 0; }

    .service-row {
        grid-template-columns: 38px minmax(0, 1fr) 44px;
        gap: 10px;
        min-height: 0;
    }

    .service-row:hover { padding-inline: 0; }
    .service-number { margin-top: 37px; }
    .service-copy { padding-block: 28px; }
    .service-copy h3 { font-size: 1.8rem; }
    .service-copy p { font-size: 0.77rem; line-height: 1.65; }
    .circle-link { width: 40px; height: 40px; }
    .service-note { margin-left: 48px; line-height: 1.8; }

    .experience-steps li { min-height: 225px; padding-inline: 12px; }

    .gallery-heading { align-items: flex-start; flex-direction: column; }
    .gallery-grid { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .gallery-grid::-webkit-scrollbar { display: none; }
    .gallery-item,
    .gallery-item:nth-child(n) { width: 82vw; min-width: 82vw; height: 490px; scroll-snap-align: start; }
    .gallery-item > span { opacity: 1; transform: none; }

    .testimonials-heading { display: block; }
    .testimonial-controls { margin-top: 34px; }
    .testimonial-card > p:not(.review-label) { font-size: 1.8rem; }

    .contact-grid { gap: 60px; }
    .contact-block address { font-size: 1.18rem; }

    .footer-top {
        min-height: auto;
        padding-block: 50px;
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-logo { justify-self: center; }
    .footer-top > p { justify-self: center; }
    .back-to-top { grid-column: 1; margin-top: 5px; justify-self: center; }
    .footer-bottom { min-height: 110px; align-items: center; flex-direction: column; justify-content: center; text-align: center; }
    .floating-whatsapp { right: 16px; bottom: 16px; }

    .lightbox { padding: 70px 18px 90px; }
    .lightbox figure { max-width: 100%; }
    .lightbox-nav { top: auto; bottom: 19px; transform: none; }
    .lightbox-prev { left: calc(50% - 62px); }
    .lightbox-next { right: calc(50% - 62px); }
}

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

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

    .reveal-ready .reveal { opacity: 1; transform: none; }
}
