@font-face {
    font-family: "Tele Neo";
    src: url("assets/font/Tele%20Neo%20Medium.otf") format("opentype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Tele Neo";
    src: url("assets/font/Tele%20Neo%20Extrabold.otf") format("opentype");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "Tele Neo Office";
    src: url("assets/font/Tele%20Neo%20Office%20Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

:root {
    --ink: #171714;
    --paper: #f4f0e8;
    --soft: #e9e2d5;
    --gold: #b8975a;
    --line: rgba(23, 23, 20, .17);
    --white: #fff;
    --max: 1280px;
    --pad: clamp(22px, 4.5vw, 72px)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65
}

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

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.skip-link {
    position: fixed;
    left: 20px;
    top: -100px;
    background: #fff;
    padding: 12px 18px;
    z-index: 1000
}

.skip-link:focus {
    top: 20px
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    transition: .35s
}

.site-header.scrolled {
    height: 74px;
    background: rgba(20, 20, 18, .92);
    backdrop-filter: blur(18px)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1
}

.brand-mark {
    width: 45px;
    height: 45px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Playfair Display", serif;
    font-size: 25px
}

.brand b {
    display: block;
    font: 600 18px/1 "Manrope", sans-serif;
    letter-spacing: .22em
}

.brand small {
    display: block;
    margin-top: 6px;
    font-size: 9px;
    letter-spacing: .13em;
    text-transform: uppercase;
    opacity: .7
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.2vw, 38px);
    font-size: 13px
}

.site-header nav>a:not(.nav-cta) {
    position: relative
}

.site-header nav>a:not(.nav-cta):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: .3s
}

.site-header nav>a:hover:after {
    width: 100%
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 13px 18px;
    border: 1px solid currentColor;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 600;
    transition: .25s
}

.nav-cta:hover,
.button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    margin: 5px
}

.hero {
    position: relative;
    min-height: 760px;
    height: 100svh;
    color: #fff;
    overflow: hidden
}

.hero-media,
.hero-media img,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.hero-media img {
    object-fit: cover;
    object-position: center
}

.hero-shade {
    background: linear-gradient(90deg, rgba(10, 10, 8, .87) 0%, rgba(10, 10, 8, .58) 48%, rgba(10, 10, 8, .28)), linear-gradient(0deg, rgba(10, 10, 8, .72), transparent 45%)
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: auto;
    height: 100%;
    padding: clamp(150px, 20vh, 220px) var(--pad) 160px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.eyebrow {
    font: 600 10px/1 "Manrope", sans-serif;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #775f34
}

.eyebrow.light {
    color: #e2c78d
}

.hero h1,
.section h2 {
    font: 500 clamp(56px, 7.1vw, 108px)/.94 "Manrope", sans-serif;
    letter-spacing: -.055em;
    margin: 22px 0
}

.hero h1 em,
.section h2 em,
blockquote em {
    font-family: "Playfair Display", serif;
    font-weight: 500
}

.hero-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    max-width: 970px;
    margin-top: 32px
}

.hero-bottom p {
    max-width: 540px;
    color: rgba(255, 255, 255, .73);
    font-size: 17px
}

.button-light {
    background: #fff;
    color: #171714;
    border-color: #fff
}

.hero-proof {
    position: absolute;
    right: var(--pad);
    bottom: 44px;
    z-index: 2;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, .25);
    padding-top: 15px
}

.hero-proof div {
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, .25)
}

.hero-proof div:last-child {
    border: 0;
    padding-right: 0
}

.hero-proof strong {
    font: 500 24px "Manrope";
    display: block
}

.hero-proof span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .65
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    left: var(--pad);
    bottom: 45px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .18em
}

.scroll-cue span {
    margin-left: 18px
}

.section {
    padding: clamp(90px, 11vw, 160px) var(--pad)
}

.section-label {
    max-width: var(--max);
    margin: 0 auto 90px;
    padding-top: 13px;
    border-top: 1px solid var(--line);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .17em
}

.section-label span {
    color: var(--gold);
    margin-right: 30px
}

.intro-grid,
.contact-grid,
.process-grid {
    max-width: var(--max);
    margin: auto;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(55px, 9vw, 140px)
}

.portrait-wrap {
    position: relative;
    align-self: start
}

.portrait-wrap img {
    width: 100%;
    height: min(650px, 64vw);
    object-fit: cover;
    filter: grayscale(1)
}

.portrait-note {
    position: absolute;
    right: -25px;
    bottom: -25px;
    background: var(--gold);
    color: #fff;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    font: 500 11px/1.6 "Manrope";
    text-transform: uppercase;
    letter-spacing: .12em
}

.intro-copy {
    padding-top: 30px
}

.section h2 {
    font-size: clamp(48px, 5.2vw, 78px);
    line-height: 1.02
}

.intro-copy .lead {
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.55;
    margin: 45px 0 26px
}

.intro-copy>p:not(.eyebrow):not(.lead) {
    max-width: 690px;
    color: #5f5d57
}

.signature {
    margin-top: 40px;
    font: italic 28px "Playfair Display"
}

.signature span {
    font: 500 10px "Manrope";
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-left: 10px
}

.dark {
    background: var(--ink);
    color: #f7f3eb
}

.dark .section-label {
    border-color: rgba(255, 255, 255, .18)
}

.services-head,
.packages-head,
.gallery-head {
    max-width: var(--max);
    margin: 0 auto 80px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px
}

.services-head>p:last-child,
.packages-head>p {
    max-width: 430px;
    color: #a6a49d
}

.service-list {
    max-width: var(--max);
    margin: auto;
    border-top: 1px solid rgba(255, 255, 255, .18)
}

.service-row {
    display: grid;
    grid-template-columns: 60px 1fr 1fr 50px;
    gap: 25px;
    align-items: center;
    padding: 37px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.service-row>span {
    font-size: 10px;
    color: var(--gold)
}

.service-row h3 {
    font: 500 clamp(20px, 2.2vw, 30px) "Manrope";
    margin: 0
}

.service-row p {
    margin: 0;
    color: #9d9b95;
    font-size: 14px
}

.service-row i {
    font: normal 30px "Playfair Display";
    color: #d7bd85;
    text-align: right
}

.package-grid {
    max-width: var(--max);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch
}

.package-card {
    position: relative;
    border: 1px solid var(--line);
    padding: 38px 34px;
    min-height: 570px;
    display: flex;
    flex-direction: column;
    transition: .3s
}

.package-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(48, 39, 24, .12)
}

.package-card.featured {
    background: var(--ink);
    color: #fff
}

.popular {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: #fff;
    padding: 8px 14px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .15em
}

.package-top {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #8c7a5a
}

.package-top b {
    font-weight: 500
}

.package-card h3 {
    font: 500 48px "Playfair Display";
    margin: 50px 0 5px
}

.package-card>p {
    color: #77736a;
    min-height: 52px
}

.featured>p {
    color: #aaa8a2
}

.package-card ul {
    list-style: none;
    padding: 25px 0;
    margin: 20px 0;
    border-top: 1px solid var(--line)
}

.featured ul {
    border-color: rgba(255, 255, 255, .15)
}

.package-card li {
    padding: 9px 0 9px 23px;
    position: relative;
    font-size: 14px
}

.package-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold)
}

.package-card>a {
    margin-top: auto;
    min-height: 52px;
    padding: 15px 20px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 10px;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease
}

.package-card>a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px)
}

.package-card.featured>a {
    background: var(--gold);
    border-color: var(--gold)
}

.package-card.featured>a:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ink)
}

.soft {
    background: var(--soft)
}

.process-title {
    position: sticky;
    top: 130px;
    align-self: start
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0
}

.timeline li {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 35px 0;
    border-top: 1px solid var(--line)
}

.timeline b {
    color: var(--gold);
    font: 500 11px "Manrope"
}

.timeline h3 {
    margin: 0 0 10px;
    font: 600 23px "Manrope"
}

.timeline p {
    margin: 0;
    color: #66635c
}

.gallery-head .sound-button {
    background: none;
    border: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer
}

.sound-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px
}

.sound-bars i {
    display: block;
    width: 2px;
    height: 8px;
    background: var(--gold)
}

.sound-bars i:nth-child(2) {
    height: 17px
}

.sound-bars i:nth-child(3) {
    height: 12px
}

.gallery-grid {
    max-width: var(--max);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 12px
}

.gallery-item {
    position: relative;
    border: 0;
    padding: 0;
    overflow: hidden;
    background: #333;
    cursor: zoom-in;
    color: #fff
}

.gallery-item.wide {
    grid-column: span 2
}

.gallery-item.tall {
    grid-row: span 2
}

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

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(.75)
}

.gallery-item span {
    position: absolute;
    left: 18px;
    bottom: 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .15em
}

.video-panel {
    position: fixed;
    z-index: 300;
    inset: 0;
    background: rgba(0, 0, 0, .94);
    padding: 6vh 7vw
}

.video-panel video {
    width: 100%;
    height: 88vh;
    object-fit: contain
}

.video-close {
    position: absolute;
    right: 25px;
    top: 15px;
    background: none;
    color: #fff;
    border: 0;
    font-size: 40px;
    z-index: 2
}

.quote-section {
    padding: clamp(100px, 15vw, 220px) var(--pad);
    background: linear-gradient(rgba(244, 240, 232, .88), rgba(244, 240, 232, .88)), url("assets/images/gallery/zsn_skv.jpg") center/cover fixed;
    text-align: center
}

.quote-section blockquote {
    font: 500 clamp(37px, 5vw, 72px)/1.15 "Manrope";
    letter-spacing: -.045em;
    margin: 0
}

.contact-grid {
    grid-template-columns: .75fr 1.25fr
}

.contact-copy {
    padding-right: 30px
}

.contact-copy>p:not(.eyebrow) {
    color: #68655e;
    max-width: 430px
}

.contact-copy>a {
    display: inline-block;
    margin: 30px 0;
    border-bottom: 1px solid;
    font: 500 20px "Manrope"
}

.socials {
    display: flex;
    gap: 25px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.contact-form {
    background: #fff;
    padding: clamp(28px, 4vw, 56px)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.contact-form label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 600;
    margin-bottom: 25px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #bdb9b0;
    background: transparent;
    border-radius: 0;
    padding: 12px 0;
    outline: none;
    color: var(--ink);
    text-transform: none;
    letter-spacing: 0;
    margin-top: 5px
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold)
}

.date-field {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 43px;
    margin-top: 5px;
    border-bottom: 1px solid #bdb9b0;
}

.date-field:focus-within {
    border-color: var(--gold)
}

.contact-form .date-field input {
    position: absolute;
    z-index: 2;
    inset: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    cursor: pointer
}

.date-display {
    flex: 1;
    padding: 12px 2.5rem 12px 0;
    color: var(--ink);
    text-transform: none;
    letter-spacing: 0;
    font-size: 1rem;
    font-weight: 400
}

.date-field>svg {
    position: absolute;
    right: 2px;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    pointer-events: none
}

.contact-form textarea {
    resize: vertical
}

.contact-form .honey {
    position: absolute;
    left: -9999px
}

.consent {
    display: flex!important;
    gap: 12px;
    align-items: flex-start;
    text-transform: none!important;
    letter-spacing: 0!important;
    font-weight: 400!important
}

.consent input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0
}

.consent a {
    text-decoration: underline
}

.form-submit {
    display: flex;
    align-items: center;
    gap: 22px
}

.button-dark {
    background: var(--ink);
    color: #fff;
    cursor: pointer
}

.form-status {
    font-size: 13px;
    margin: 0
}

.form-status.success {
    color: #43744d
}

.form-status.error {
    color: #a73535
}

.faq {
    padding-top: clamp(50px, 6vw, 85px);
    background: var(--paper);
}

.contact {
    padding-bottom: clamp(45px, 5vw, 70px)
}

.faq .section-label {
    margin-bottom: clamp(40px, 5vw, 65px)
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(240px, .72fr) minmax(420px, 1.28fr);
    gap: clamp(3rem, 8vw, 9rem);
    align-items: start;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
}

.faq-heading h2 {
    margin: 1.2rem 0 0;
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.055em;
}

.faq-heading h2 em {
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

.faq-list {
    border-top: 1px solid rgba(16, 16, 14, .2);
}

.faq-list details {
    border-bottom: 1px solid rgba(16, 16, 14, .2);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.55rem 0;
    cursor: pointer;
    list-style: none;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.15rem, 1.5vw, 1.55rem);
    font-weight: 600;
}

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

.faq-list summary>span {
    flex: 1;
}

.faq-icon {
    display: grid;
    flex: 0 0 2.65rem;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border: 1px solid rgba(184, 143, 70, .42);
    border-radius: 50%;
    color: var(--gold);
}

.faq-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-list summary::after {
    content: "+";
    display: grid;
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid rgba(16, 16, 14, .35);
    border-radius: 50%;
    color: var(--gold);
    font-family: "Montserrat", sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    transition: transform .25s ease, background .25s ease;
}

.faq-list details[open] summary::after {
    content: "−";
    transform: rotate(180deg);
    background: var(--ink);
}

.faq-list details p {
    max-width: 43rem;
    margin: -.4rem 4rem 1.6rem 0;
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 760px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-list summary {
        gap: 1rem;
    }
}

footer {
    background: #0f0f0d;
    color: #fff;
    padding: 55px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid #333
}

footer p,
footer a {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #aaa
}

footer>div {
    display: flex;
    gap: 28px
}

.footer-brand {
    color: #fff!important
}

.form-review,
.success-dialog {
    width: min(760px, calc(100% - 32px));
    max-height: calc(100dvh - 32px);
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid rgba(184, 143, 70, .45);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 35px 100px rgba(0, 0, 0, .35);
    overflow-y: auto
}

.form-review::backdrop,
.success-dialog::backdrop {
    background: rgba(12, 12, 10, .78);
    backdrop-filter: blur(8px)
}

.form-review h2,
.success-dialog h2 {
    margin: 12px 0 20px;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.045em
}

.form-review h2 em,
.success-dialog h2 em {
    font-family: "Playfair Display", serif;
    font-weight: 400
}

.review-intro {
    max-width: 600px;
    margin-bottom: 30px;
    color: var(--muted);
    line-height: 1.65
}

.review-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    font-size: 24px;
    cursor: pointer
}

.review-details {
    margin: 0 0 30px;
    border-top: 1px solid var(--line)
}

.review-details>div {
    display: grid;
    grid-template-columns: minmax(130px, .65fr) 1.35fr;
    gap: 22px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line)
}

.review-details dt {
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase
}

.review-details dd {
    margin: 0;
    line-height: 1.55;
    overflow-wrap: anywhere;
    white-space: pre-wrap
}

.review-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px
}

.review-actions .button {
    border: 1px solid var(--ink);
    cursor: pointer
}

.review-edit {
    background: transparent;
    color: var(--ink)
}

.review-status {
    margin: 18px 0 0;
    text-align: right
}

.review-status.error {
    color: #a43f32
}

.success-dialog {
    text-align: center
}

.success-dialog>p:not(.eyebrow) {
    max-width: 540px;
    margin: 0 auto 30px;
    color: var(--muted);
    line-height: 1.65
}

.success-mark {
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    color: var(--gold)
}

.success-mark svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round
}

.success-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    font-size: 24px;
    cursor: pointer
}

.success-return {
    margin: 0 auto;
    border: 1px solid var(--ink);
    cursor: pointer
}

@media (max-width: 560px) {
    .review-details>div {
        grid-template-columns: 1fr;
        gap: 6px
    }

    .review-actions {
        flex-direction: column-reverse
    }

    .review-actions .button {
        width: 100%
    }
}

.lightbox {
    width: min(1000px, 92vw);
    border: 0;
    padding: 0;
    background: transparent
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, .9)
}

.lightbox img {
    max-height: 86vh;
    margin: auto
}

.lightbox button {
    position: fixed;
    right: 25px;
    top: 15px;
    background: none;
    color: #fff;
    border: 0;
    font-size: 40px
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s, transform .7s
}

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

@media(max-width:900px) {
    .site-header {
        height: 76px
    }
    .menu-toggle {
        display: block
    }
    .site-header nav {
        position: fixed;
        inset: 76px 0 auto;
        background: #171714;
        padding: 30px var(--pad);
        display: none;
        flex-direction: column;
        align-items: stretch
    }
    .site-header nav.open {
        display: flex
    }
    .hero {
        min-height: 730px
    }
    .hero-copy {
        padding-bottom: 180px
    }
    .hero-bottom {
        display: block
    }
    .hero-proof {
        left: var(--pad);
        right: auto;
        bottom: 42px
    }
    .scroll-cue {
        display: none
    }
    .intro-grid,
    .contact-grid,
    .process-grid {
        grid-template-columns: 1fr
    }
    .portrait-wrap {
        max-width: 520px
    }
    .process-title {
        position: static
    }
    .package-grid {
        grid-template-columns: 1fr
    }
    .package-card {
        min-height: auto
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .services-head,
    .packages-head,
    .gallery-head {
        align-items: start;
        flex-direction: column
    }
    .service-row {
        grid-template-columns: 35px 1fr 35px
    }
    .service-row p {
        grid-column: 2/4
    }
    .service-row i {
        grid-column: 3;
        grid-row: 1
    }
    footer {
        flex-wrap: wrap
    }
}

@media(max-width:560px) {
    .hero h1 {
        font-size: 47px
    }
    .hero-bottom p {
        font-size: 15px
    }
    .hero-proof div {
        padding: 0 13px
    }
    .hero-proof strong {
        font-size: 19px
    }
    .hero-proof span {
        font-size: 8px
    }
    .section-label {
        margin-bottom: 60px
    }
    .section h2 {
        font-size: 43px
    }
    .portrait-note {
        width: 115px;
        height: 115px;
        right: -8px
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }
    .contact-form {
        margin-left: -12px;
        margin-right: -12px
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px
    }
    .gallery-item.wide {
        grid-column: auto
    }
    .gallery-item.tall {
        grid-row: auto
    }
    .service-row {
        padding: 27px 0
    }
    .service-row h3 {
        font-size: 20px
    }
    .services-head>p:last-child,
    .packages-head>p {
        font-size: 14px
    }
    footer {
        align-items: flex-start;
        flex-direction: column
    }
    .quote-section {
        background-attachment: scroll
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }
    .gallery-item img {
        transition: none
    }
}


/* Finomabb, magazinszerű tipográfiai arányok */

.hero h1 {
    max-width: 1050px;
    font-size: clamp(50px, 6vw, 88px);
    line-height: .98;
    letter-spacing: -.048em
}

.hero-bottom {
    margin-top: 24px;
    max-width: 900px
}

.hero-bottom p {
    max-width: 500px;
    font-size: 16px
}

.section h2 {
    font-size: clamp(42px, 4.25vw, 64px);
    line-height: 1.06;
    letter-spacing: -.045em
}

.services-head,
.packages-head,
.gallery-head {
    margin-bottom: 68px
}

.intro-copy .lead {
    font-size: clamp(18px, 1.65vw, 22px);
    line-height: 1.6;
    margin-top: 36px
}

.package-card h3 {
    font-size: 42px
}

.service-row h3 {
    font-size: clamp(19px, 1.75vw, 26px)
}

.quote-section blockquote {
    font-size: clamp(34px, 4.1vw, 58px);
    line-height: 1.22
}

.contact-copy>a {
    font-size: 18px
}

@media(max-width:560px) {
    .hero h1 {
        font-size: clamp(39px, 11.3vw, 44px);
        line-height: 1.01
    }
    .hero-bottom {
        margin-top: 20px
    }
    .hero-bottom p {
        font-size: 14px;
        line-height: 1.65
    }
    .section-label {
        margin-bottom: 52px
    }
    .section h2 {
        font-size: clamp(35px, 10vw, 40px);
        line-height: 1.08
    }
    .intro-copy .lead {
        font-size: 18px;
        margin-top: 28px
    }
    .services-head,
    .packages-head,
    .gallery-head {
        margin-bottom: 50px
    }
    .package-card h3 {
        font-size: 38px
    }
    .service-row h3 {
        font-size: 19px
    }
    .quote-section blockquote {
        font-size: 33px
    }
}


/* Hanghullámot idéző szekcióelválasztók */

.section-label {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 0;
    border-top: 0;
    white-space: nowrap
}

.section-label::after {
    content: "";
    flex: 1;
    height: 22px;
    margin-left: 28px;
    opacity: .72;
    background-repeat: repeat-x;
    background-position: center;
    background-size: 176px 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='176' height='22' viewBox='0 0 176 22'%3E%3Cpath d='M0 11 C11 11 11 3 22 3 S33 19 44 19 55 7 66 7 77 15 88 15 99 9 110 9 121 13 132 13 143 11 154 11 165 11 176 11' fill='none' stroke='%23b8975a' stroke-width='1.25'/%3E%3Cpath d='M0 11 C11 11 11 7 22 7 S33 15 44 15 55 9 66 9 77 13 88 13 99 10 110 10 121 12 132 12 143 11 154 11 165 11 176 11' fill='none' stroke='%23b8975a' stroke-opacity='.38' stroke-width='.75'/%3E%3C/svg%3E")
}

.dark .section-label {
    border-top: 0
}

@media(max-width:560px) {
    .section-label {
        white-space: normal;
        align-items: flex-start
    }
    .section-label span {
        margin-right: 18px
    }
    .section-label::after {
        min-width: 70px;
        height: 18px;
        margin-top: 1px;
        margin-left: 16px;
        background-size: 144px 18px
    }
}


/* Képes márkajel */

.brand-mark {
    width: 144px;
    height: 88px;
    border: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: width .3s, height .3s
}

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

.site-header.scrolled .brand-mark {
    width: 104px;
    height: 66px
}

.footer-brand .brand-mark {
    width: 260px;
    height: 160px
}

@media(max-width:560px) {
    .brand-mark {
        width: 112px;
        height: 70px
    }
    .site-header.scrolled .brand-mark {
        width: 88px;
        height: 56px
    }
    .footer-brand .brand-mark {
        width: 180px;
        height: 120px
    }
}


/* Filmszerű, szélek felé erősödő nyitóképi homály */

.hero-media::after {
    content: "";
    position: absolute;
    inset: -10px;
    z-index: 1;
    pointer-events: none;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    background: linear-gradient(90deg, rgba(8, 8, 7, .2), transparent 28%, transparent 72%, rgba(8, 8, 7, .2));
    -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .75) 13%, transparent 31%, transparent 69%, rgba(0, 0, 0, .75) 87%, #000 100%);
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .75) 13%, transparent 31%, transparent 69%, rgba(0, 0, 0, .75) 87%, #000 100%)
}

.hero-shade {
    z-index: 2
}

.hero-copy,
.hero-proof,
.scroll-cue {
    z-index: 3
}

@media(max-width:560px) {
    .hero-media::after {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .65) 10%, transparent 27%, transparent 73%, rgba(0, 0, 0, .65) 90%, #000 100%);
        mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .65) 10%, transparent 27%, transparent 73%, rgba(0, 0, 0, .65) 90%, #000 100%)
    }
}


/* A számozott szekciófeliratok lazább, jobbra kitolt pozíciója */

.section-label {
    position: relative;
    left: auto;
    width: auto;
    max-width: none;
    margin-left: calc(max(0px, calc((100% - var(--max))/2)) - clamp(70px, 9vw, 180px));
    margin-right: calc(var(--pad) * -1)
}

@media(max-width:900px) {
    .section-label {
        margin-left: calc(clamp(28px, 6vw, 60px) * -1)
    }
}

@media(max-width:560px) {
    .section-label {
        margin-left: -18px;
        margin-right: calc(var(--pad) * -1)
    }
}


/* Színes, áttetsző hátterű bemutatkozó portré */

.intro {
    padding-bottom: 33px
}

.portrait-wrap {
    transform: translateY(-72px);
    margin-bottom: -34px
}

.portrait-wrap img {
    filter: none;
    object-fit: cover;
    object-position: center top
}

@media(max-width:900px) {
    .portrait-wrap {
        transform: translateY(-40px);
        margin-bottom: -20px
    }
}

@media(max-width:560px) {
    .portrait-wrap {
        transform: none;
        margin-bottom: 0
    }
}

@media(max-width:900px) {
    .intro {
        padding-bottom: 42px
    }
}

@media(max-width:560px) {
    .intro {
        padding-bottom: 28px
    }
}

/* A fő szekciócímek feletti ismétlődő kiscímkék elrejtése */
#rolam .eyebrow,
#szolgaltatasok .eyebrow,
#csomagok .eyebrow,
#pillanatok .eyebrow,
#ajanlat .eyebrow {
    display: none;
}

/* A teljes nyitó tartalmi blokk balra és feljebb rendezve */
.hero-copy {
    transform: translate(-52px, -58px);
}

@media(max-width:900px) {
    .hero-copy {
        transform: translate(-24px, -40px);
    }
}

@media(max-width:560px) {
    .hero-copy {
        transform: translate(-8px, -26px);
    }
}

/* Ajánlatkérő CTA a tapasztalati adatsor fölött */
.hero-proof-cta {
    position: absolute;
    z-index: 4;
    right: var(--pad);
    bottom: 128px;
    min-width: 230px;
}

@media(max-width:900px) {
    .hero-proof-cta {
        right: var(--pad);
        bottom: 132px;
    }
}

@media(max-width:560px) {
    .hero-proof-cta {
        left: var(--pad);
        right: auto;
        bottom: 178px;
        min-width: 220px;
    }
}

/* Montserrat + Playfair Display tipográfiai rendszer */
body,
button,
input,
textarea,
select {
    font-family: "Montserrat", "Segoe UI", sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
.brand,
.site-header nav,
.eyebrow,
.button,
.section-label,
.hero-proof,
.package-top,
.popular,
.package-card>a,
.timeline b,
.gallery-item span,
.contact-form label,
footer p,
footer a {
    font-family: "Montserrat", "Segoe UI", sans-serif;
}

h1,
h2,
h3,
.package-card h3,
.timeline h3,
.service-row h3 {
    font-weight: 600;
}

.hero h1 em,
.section h2 em,
blockquote em,
.signature {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
}

strong,
.brand b {
    font-family: "Montserrat", "Segoe UI", sans-serif;
    font-weight: 700;
}

.hero h1,
.section h2,
.service-row h3,
.timeline h3,
.hero-proof strong,
.contact-copy>a {
    font-family: "Montserrat", "Segoe UI", sans-serif;
}

.package-card h3 {
    font-family: "Playfair Display", Georgia, serif;
}

/* Szolgáltatásokhoz illesztett vonalrajzos ikonok */
.service-row .service-icon {
    width: 34px;
    height: 34px;
    display: block;
    color: #d7bd85;
}

.service-row .service-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* A közös munkafolyamat lépéseinek ikonjai */
.timeline li {
    grid-template-columns: 46px 42px 1fr;
    gap: 18px;
}

.timeline-icon {
    width: 32px;
    height: 32px;
    display: block;
    color: var(--gold);
    margin-top: -4px;
}

.timeline-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media(max-width:560px) {
    .timeline li {
        grid-template-columns: 30px 34px 1fr;
        gap: 12px;
    }

    .timeline-icon {
        width: 27px;
        height: 27px;
    }
}

.gallery-item img,
.lightbox img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.gallery-item:not(.video-gallery-item)>span {
    display: none;
}

/* Elegáns keret a nagyított galériaképekhez */
.lightbox {
    max-width: min(1100px, 94vw);
    padding: clamp(8px, 1.2vw, 16px);
    border: 1px solid rgba(184, 151, 90, .5);
    border-radius: 24px;
    background: rgba(20, 20, 18, .9);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
    overflow: visible;
}

.lightbox img {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

@media(max-width:560px) {
    .lightbox {
        width: 94vw;
        padding: 7px;
        border-radius: 16px;
    }

.lightbox img {
        border-radius: 11px;
    }
}

/* A legnépszerűbb középső csomag hangsúlyosabb kiemelése */
.package-grid {
    grid-template-columns: 1fr 1.12fr 1fr;
    gap: 20px;
}

.package-card.featured {
    z-index: 2;
    min-height: 610px;
    padding: 44px 40px;
    transform: scale(1.045);
    box-shadow: 0 30px 75px rgba(23, 23, 20, .2);
}

.package-card.featured:hover {
    transform: scale(1.045) translateY(-7px);
}

@media(max-width:900px) {
    .package-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .package-card.featured,
    .package-card.featured:hover {
        min-height: auto;
        padding: 38px 34px;
        transform: none;
    }
}
