:root {
    --bg-main: #f8f4ee;
    --bg-soft: #fffdf9;
    --bg-card: rgba(255, 252, 247, 0.78);
    --text-main: #2d2824;
    --text-muted: #6f665d;
    --border-soft: rgba(113, 92, 72, 0.12);
    --accent: #d7c6b2;
    --accent-deep: #b89e82;
    --shadow-soft: 0 18px 50px rgba(93, 73, 54, 0.08);
    --radius-large: 32px;
    --radius-medium: 20px;
    --container-width: 1600px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(232, 221, 208, 0.55), transparent 34%),
        linear-gradient(180deg, #fcfaf6 0%, var(--bg-main) 100%);
}

body.is-loading {
    overflow: hidden;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    background: rgba(252, 250, 246, 0.98);
    transition:
        opacity 500ms ease,
        visibility 500ms ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader-inner {
    display: grid;
    place-items: center;
    padding: 24px;
}

.site-loader-logo {
    width: min(100%, 260px);
    height: auto;
}

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

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

.container {
    width: min(100%, var(--container-width));
    margin: 0 auto;
    padding-inline: 60px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 20px 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    color: #fffaf4;
    transition:
        background-color 220ms ease,
        border-color 220ms ease,
        backdrop-filter 220ms ease,
        color 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(248, 244, 238, 0.88);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(113, 92, 72, 0.08);
    color: var(--text-main);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-flyout {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-logo {
    display: block;
    width: auto;
    height: 42px;
    filter: none;
    transition:
        filter 220ms ease,
        opacity 220ms ease;
}

.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 249, 241, 0.76);
    transition: color 220ms ease;
}

.main-nav a {
    position: relative;
    padding-bottom: 4px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: rgba(255, 249, 241, 0.76);
    transition: transform 180ms ease;
}

.site-header .button {
    border-color: rgba(255, 248, 239, 0.62);
    color: #fffaf4;
}

.site-header .button:hover,
.site-header .button:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .brand-logo {
    filter: brightness(0) saturate(100%);
}

body.has-mobile-menu .brand-logo {
    filter: brightness(0) saturate(100%);
}

.site-header.is-scrolled .main-nav {
    color: var(--text-muted);
}

.site-header.is-scrolled .main-nav a::after {
    background: var(--accent-deep);
}

.site-header.is-scrolled .button {
    border-color: var(--text-main);
    color: var(--text-main);
}

.site-header.is-scrolled .button:hover,
.site-header.is-scrolled .button:focus-visible {
    background: rgba(45, 40, 36, 0.05);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.menu-trigger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 31;
    cursor: pointer;
    transition:
        border-color 180ms ease,
        background-color 180ms ease;
}

.menu-trigger span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition:
        transform 250ms ease,
        opacity 200ms ease,
        background-color 180ms ease;
}

.menu-trigger span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-trigger span:nth-child(2) {
    transform: translateY(0);
}

.menu-trigger span:nth-child(3) {
    transform: translateY(6px);
}

.menu-trigger.is-open span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.menu-trigger.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.is-open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

.menu-overlay,
.mobile-menu {
    display: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 0;
    border: 1px solid var(--text-main);
    background: transparent;
    color: var(--text-main);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    font-weight: 600;
    letter-spacing: 1px;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.header-cta-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-cta {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

.header-cta {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    border-color: var(--text-main);
    background: transparent;
    color: var(--text-main);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: rgba(45, 40, 36, 0.05);
}

.button-secondary {
    border-color: rgba(45, 40, 36, 0.32);
    background: transparent;
    color: var(--text-main);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--text-main);
    background: rgba(45, 40, 36, 0.05);
}

.hero-section {
    position: relative;
    padding: 0 0 104px;
}

.hero-panel {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #1b1714;
}

.hero-panel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 11, 10, 0.3) 0%, rgba(12, 11, 10, 0.3) 100%);
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 72px;
}

.hero-content {
    max-width: 760px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--text-muted);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.hero-content .eyebrow {
    color: rgba(255, 249, 241, 0.76);
}

.hero-content h1 {
    margin: 0;
    font-family: "Tangerine", cursive;
    font-size: clamp(4.8rem, 8.8vw, 7.6rem);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: 0;
    color: #fffaf4;
}

.hero-text {
    margin: 24px 0 0;
    max-width: 560px;
    font-size: 0.98rem;
    line-height: 1.8;
}

.hero-content .hero-text {
    margin-inline: auto;
    color: rgba(255, 249, 241, 0.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
    justify-content: center;
}

.hero-actions .button {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.hero-highlights li {
    padding: 12px 16px;
    border: 1px solid rgba(255, 248, 239, 0.32);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 249, 241, 0.86);
    font-size: 0.92rem;
}

.hero-panel .button {
    border-color: rgba(255, 248, 239, 0.7);
    color: #fffaf4;
}

.hero-panel .button:hover,
.hero-panel .button:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

.hero-panel .button-secondary {
    border-color: rgba(255, 248, 239, 0.42);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 40px;
    align-items: end;
    margin-bottom: 40px;
}

.section-copy h2 {
    margin: 0;
    max-width: 700px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.15rem, 4.2vw, 3.35rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.section-side {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.section-side p {
    margin: 0 0 18px;
}

.text-link {
    display: inline-block;
    color: var(--text-main);
    font-weight: 600;
    border-bottom: 1px solid rgba(113, 92, 72, 0.3);
    padding-bottom: 4px;
}

.portfolio-section {
    padding: 0 0 128px;
}

.portfolio-intro {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.portfolio-intro h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.15rem, 4.2vw, 3.35rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.portfolio-text {
    margin: 24px auto 0;
    max-width: 780px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.85;
}

.portfolio-film {
    position: relative;
    border-radius: 30px;
    border: 1px solid rgba(122, 98, 75, 0.1);
    background: transparent;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 16 / 9;
}

.portfolio-film-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.portfolio-film-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 2;
}

.portfolio-film-video {
    width: 100%;
    height: 100%;
    display: block;
    transition: opacity 220ms ease;
}

.portfolio-film-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.portfolio-film[data-video-player]::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0), rgba(10, 10, 10, 0.52));
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

.portfolio-play-overlay {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 3;
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    background: rgba(19, 17, 15, 0.28);
    color: #fff;
    font: inherit;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        opacity 220ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.portfolio-play-overlay:hover,
.portfolio-play-overlay:focus-visible {
    background: rgba(19, 17, 15, 0.42);
}

.portfolio-play-overlay span {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.portfolio-play-overlay svg,
.portfolio-video-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.portfolio-film.is-playing .portfolio-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.portfolio-video-controls {
    position: absolute;
    inset: auto 18px 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.portfolio-video-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font: inherit;
    cursor: pointer;
    transition:
        background-color 180ms ease,
        border-color 180ms ease;
}

.portfolio-video-button:hover,
.portfolio-video-button:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.32);
}

.portfolio-video-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.portfolio-video-icon-play,
.portfolio-video-icon-fullscreen {
    width: 18px;
    height: 18px;
}

.portfolio-video-progress {
    flex: 1 1 auto;
    min-width: 160px;
}

.portfolio-video-volume {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 132px;
}

.portfolio-video-volume-range {
    width: 72px;
}

.portfolio-video-range {
    width: 100%;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.portfolio-video-range::-webkit-slider-runnable-track {
    height: 3px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) var(--progress, 0%), rgba(255, 255, 255, 0.26) var(--progress, 0%));
}

.portfolio-video-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    margin-top: -4.5px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.portfolio-video-range::-moz-range-track {
    height: 3px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
}

.portfolio-video-range::-moz-range-progress {
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
}

.portfolio-video-range::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.portfolio-video-time {
    min-width: 92px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.portfolio-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-gallery.is-switching .portfolio-film-video {
    opacity: 0.72;
}

.portfolio-gallery.is-switching .portfolio-film-frame::after {
    opacity: 0.28;
}

.portfolio-gallery-coverflow {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid rgba(122, 98, 75, 0.1);
}

.portfolio-thumb-slider {
    position: relative;
    width: 100%;
    overflow: visible;
}

.portfolio-film-thumbs {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    cursor: grab;
    touch-action: pan-y pinch-zoom;
}

.portfolio-film-thumbs::-webkit-scrollbar {
    display: none;
}

.portfolio-film-thumbs.is-dragging {
    cursor: grabbing;
}

.portfolio-thumb {
    flex: 0 0 calc((100% - 42px) / 4);
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    scroll-snap-align: start;
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.portfolio-thumb:hover,
.portfolio-thumb:focus-visible {
    transform: translateY(-1px);
}

.portfolio-thumb.is-active {
    box-shadow: none;
}

.portfolio-thumb-media {
    display: block;
    overflow: hidden;
    background: #1c1815;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
}

.portfolio-thumb-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    border-radius: inherit;
}

.portfolio-thumb-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    border-radius: inherit;
}

.portfolio-thumb-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.portfolio-thumb-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    background: rgba(255, 253, 249, 0.94);
    color: var(--text-main);
    font: inherit;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.portfolio-thumb-nav-prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.portfolio-thumb-nav-next {
    right: 0;
    transform: translate(50%, -50%);
}

.portfolio-thumb-nav:hover,
.portfolio-thumb-nav:focus-visible {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.98);
}

.portfolio-thumb-nav span,
.portfolio-coverflow-nav span,
.testimonial-nav span {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.portfolio-thumb-nav svg,
.portfolio-coverflow-nav svg,
.testimonial-nav svg {
    width: 100%;
    height: 100%;
    display: block;
}

.portfolio-thumb-nav-prev:hover,
.portfolio-thumb-nav-prev:focus-visible {
    transform: translate(-50%, calc(-50% - 1px));
}

.portfolio-thumb-nav-next:hover,
.portfolio-thumb-nav-next:focus-visible {
    transform: translate(50%, calc(-50% - 1px));
}

.portfolio-coverflow {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.portfolio-coverflow-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-coverflow-stage {
    position: relative;
    padding-block: 20px;
}

.portfolio-film-coverflow {
    position: relative;
    z-index: 2;
    width: 86%;
    margin: 0 auto;
    overflow: visible;
}

.portfolio-coverflow-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(24, 20, 17, 0.32);
    color: #fff;
    font: inherit;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        opacity 180ms ease;
}

.portfolio-coverflow-nav-prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.portfolio-coverflow-nav-next {
    right: 0;
    transform: translate(50%, -50%);
}

.portfolio-coverflow-nav:hover,
.portfolio-coverflow-nav:focus-visible {
    background: rgba(24, 20, 17, 0.46);
    border-color: rgba(255, 255, 255, 0.56);
}

.portfolio-film-coverflow:fullscreen .portfolio-coverflow-nav-prev,
.portfolio-film-coverflow:-webkit-full-screen .portfolio-coverflow-nav-prev {
    left: 18px;
    transform: translateY(-50%);
}

.portfolio-film-coverflow:fullscreen .portfolio-coverflow-nav-next,
.portfolio-film-coverflow:-webkit-full-screen .portfolio-coverflow-nav-next {
    right: 18px;
    transform: translateY(-50%);
}

.portfolio-film-coverflow:fullscreen,
.portfolio-film-coverflow:-webkit-full-screen {
    width: 100%;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.portfolio-film-coverflow:fullscreen .portfolio-film-frame,
.portfolio-film-coverflow:-webkit-full-screen .portfolio-film-frame {
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.portfolio-film-coverflow:fullscreen .portfolio-film-video,
.portfolio-film-coverflow:-webkit-full-screen .portfolio-film-video {
    border-radius: 0;
}

.portfolio-coverflow-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88%;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 30px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform:
        translate(-50%, -50%)
        translateX(var(--coverflow-x, 0%))
        scale(var(--coverflow-scale, 0.94));
    z-index: var(--coverflow-z, 1);
    transition:
        transform 320ms ease,
        opacity 320ms ease;
}

.portfolio-coverflow-thumb .portfolio-thumb-media {
    position: relative;
    background: transparent;
}

.portfolio-coverflow-thumb .portfolio-thumb-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.portfolio-coverflow-thumb.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.portfolio-coverflow-thumb.is-prev,
.portfolio-coverflow-thumb.is-next {
    opacity: 1;
    pointer-events: auto;
}

.portfolio-coverflow-thumb.is-prev .portfolio-thumb-media::after,
.portfolio-coverflow-thumb.is-next .portfolio-thumb-media::after {
    opacity: 1;
}

.portfolio-coverflow-thumb:hover,
.portfolio-coverflow-thumb:focus-visible {
    transform:
        translate(-50%, -50%)
        translateX(var(--coverflow-x, 0%))
        scale(var(--coverflow-scale, 0.94));
}

.portfolio-coverflow-thumb.is-active {
    opacity: 0;
    pointer-events: none;
}

.portfolio-film-coverflow .portfolio-film-frame {
    padding: 2px;
    box-sizing: border-box;
    border-radius: inherit;
    background: rgba(255, 253, 249, 0.82);
}

.portfolio-film-coverflow .portfolio-film-video {
    border-radius: inherit;
}


.why-choose-alt-section {
    padding: 0 0 116px;
}

.why-choose-alt-shell {
    padding: 0;
}

.why-choose-alt-intro {
    max-width: 820px;
    margin-bottom: 30px;
    margin-inline: auto;
    text-align: center;
}

.why-choose-alt-intro h2 {
    margin: 0 auto;
    max-width: 720px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4.4vw, 3.25rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.why-choose-alt-intro .why-choose-text {
    max-width: 720px;
    margin: 22px auto 0;
    text-align: center;
}

.why-choose-alt-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.why-choose-alt-portrait {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(122, 98, 75, 0.1);
    background: rgba(255, 253, 249, 0.84);
    box-shadow: var(--shadow-soft);
}

.why-choose-alt-portrait img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.why-choose-alt-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.why-choose-alt-stack-left {
    text-align: right;
}

.why-choose-alt-stack-left .why-choose-alt-card-head {
    flex-direction: row-reverse;
}

.why-choose-alt-stack-left .why-choose-alt-card-copy {
    text-align: right;
}

.why-choose-alt-card {
    padding: 22px 0;
    border-bottom: 1px solid rgba(122, 98, 75, 0.12);
}

.why-choose-alt-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.why-choose-alt-card-copy {
    flex: 1 1 auto;
}

.why-choose-icon {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    color: var(--text-muted);
}

.why-choose-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.why-choose-alt-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    line-height: 1.08;
    font-weight: 600;
}

.why-choose-alt-card p {
    margin: 10px 0 0;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.94rem;
}

.about-story-section {
    padding: 0 0 128px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
    gap: 64px;
    align-items: center;
}

.about-story-visual {
    position: relative;
}

.about-story-card {
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(122, 98, 75, 0.1);
    background: rgba(255, 253, 249, 0.84);
    box-shadow: var(--shadow-soft);
}

.about-story-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-story-copy {
    max-width: 640px;
    padding: 10px 0;
}

.about-story-copy h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.3rem, 4.6vw, 3.7rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.about-story-copy p:not(.eyebrow) {
    margin: 20px 0 0;
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 0.98rem;
}

.about-story-visual {
    min-height: 780px;
    padding: 18px 34px 18px 0;
}

.about-story-visual::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 42px;
    right: 96px;
    bottom: 82px;
    border-radius: 34px;
    border: 1px solid rgba(122, 98, 75, 0.08);
    background:
        radial-gradient(circle at top left, rgba(230, 216, 200, 0.46), transparent 38%),
        linear-gradient(180deg, rgba(255, 254, 250, 0.85), rgba(243, 236, 228, 0.5));
}

.about-story-card-main {
    position: absolute;
    top: 0;
    left: 0;
    width: min(72%, 500px);
    height: 600px;
    z-index: 2;
}

.about-story-card-main img {
    object-position: center 42%;
}

.about-story-card-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(52%, 340px);
    height: 470px;
    z-index: 3;
}

.about-story-card-accent img {
    object-position: center 44%;
}

.testimonials-section {
    padding: 0 0 120px;
}

.testimonials-heading {
    margin-bottom: 34px;
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.testimonials-heading .section-copy {
    text-align: center;
}

.testimonials-heading .section-copy .eyebrow,
.testimonials-heading .section-copy h2 {
    margin-inline: auto;
}

.testimonials-carousel {
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(122, 98, 75, 0.14);
    border-radius: 50%;
    background: rgba(255, 253, 249, 0.92);
    color: var(--text-main);
    font: inherit;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.testimonial-nav-prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.testimonial-nav-next {
    right: 0;
    transform: translate(50%, -50%);
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.98);
}

.testimonial-card {
    flex: 0 0 calc((100% - 44px) / 3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    padding: 32px 28px;
    border-radius: 28px;
    border: 1px solid rgba(122, 98, 75, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 254, 250, 0.96), rgba(246, 240, 232, 0.8));
    box-shadow: 5px 5px 5px rgba(93, 73, 54, 0.03);
    scroll-snap-align: start;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(113, 92, 72, 0.12);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-main);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.testimonial-person strong,
.testimonial-person span {
    display: block;
}

.testimonial-person strong {
    margin-bottom: 4px;
    font-size: 1rem;
}

.testimonial-person span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.testimonial-quote {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
    line-height: 1.15;
    font-weight: 500;
}

.testimonial-more {
    display: inline;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text-main);
    font: inherit;
    font-size: 0.88em;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
}

.testimonial-more:hover,
.testimonial-more:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.testimonial-meta {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(113, 92, 72, 0.12);
}

.testimonial-meta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.testimonial-stars {
    color: #7a624b;
    font-size: 0;
    letter-spacing: 0.16em;
}

.testimonial-stars::before {
    content: "\2605\2605\2605\2605\2605";
    font-size: 0.9rem;
    letter-spacing: 0.16em;
}

.testimonial-source-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
}

body.has-review-modal {
    overflow: hidden;
}

body.has-mobile-menu {
    overflow: hidden;
}

body.has-review-modal .site-header,
body.has-review-modal main > *:not(.review-modal),
body.has-review-modal .site-footer {
    filter: blur(12px);
}

.site-header,
main > *:not(.review-modal),
.site-footer {
    transition:
        filter 260ms ease,
        opacity 260ms ease;
}

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 1;
    transition: opacity 220ms ease;
}

.review-modal[hidden] {
    display: none;
}

.review-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 15, 0.28);
    opacity: 1;
    transition: opacity 220ms ease;
}

.review-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    transform: translateY(0) scale(1);
    opacity: 1;
    transition:
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 220ms ease;
}

.testimonial-card-modal {
    min-height: auto;
}

.review-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(122, 98, 75, 0.12);
    border-radius: 50%;
    background: rgba(255, 253, 249, 0.92);
    color: var(--text-main);
    font: inherit;
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.testimonial-meta a {
    color: var(--text-muted);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-section {
    padding: 0 0 116px;
}

.contact-shell {
    display: grid;
    padding-top: 24px;
    border-top: 1px solid rgba(113, 92, 72, 0.1);
}

.contact-body {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.contact-copy {
    display: grid;
    gap: 60px;
    align-content: start;
    padding-top: 6px;
}

.contact-heading {
    max-width: 520px;
    text-align: left;
}

.contact-heading h2 {
    margin: 0;
    max-width: 480px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4.4vw, 3.35rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.contact-text {
    margin: 22px 0 0;
    max-width: 500px;
    color: var(--text-muted);
    line-height: 1.85;
    text-align: left;
}

.contact-connect {
    display: grid;
    gap: 24px;
    justify-items: start;
}

.contact-link-list {
    width: min(100%, 500px);
    display: grid;
    gap: 16px;
}

.contact-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(113, 92, 72, 0.1);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.contact-link-arrow {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: rotate(-45deg);
    transition: transform 180ms ease;
}

.contact-link-row:hover,
.contact-link-row:focus-visible {
    color: var(--text-main);
}

.contact-link-row:hover .contact-link-arrow,
.contact-link-row:focus-visible .contact-link-arrow {
    transform: rotate(-45deg) translateX(3px);
}

.contact-form-shell {
    display: grid;
    gap: 16px;
    padding-inline: 7px;
}

.contact-form-status {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-form-status-success {
    color: #5f6c4d;
}

.contact-form-status-error {
    color: #8a5448;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.contact-field {
    display: grid;
    gap: 10px;
}

.contact-control {
    position: relative;
}

.contact-field span {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(113, 92, 72, 0.16);
    border-radius: 0;
    background: rgba(255, 252, 248, 0.4);
    color: var(--text-main);
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    padding: 14px 16px;
    -webkit-appearance: none;
    appearance: none;
    transition:
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.contact-field textarea {
    resize: vertical;
    min-height: 150px;
}


.contact-field input[type="date"] {
    min-height: 52px;
    padding-right: 48px;
    color-scheme: light;
}

.contact-field select {
    min-height: 52px;
    padding-right: 48px;
}

.contact-field select option {
    color: var(--text-main);
}

.contact-control-select::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 16px;
    height: 16px;
    pointer-events: none;
    transform: translateY(-50%);
    background: no-repeat center / contain
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23715c48' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

.contact-control-date::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 18px;
    height: 18px;
    pointer-events: none;
    transform: translateY(-50%);
    background: no-repeat center / contain
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23715c48' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='5' width='17' height='15.5' rx='2.5'/%3E%3Cpath d='M7.5 3.5v3'/%3E%3Cpath d='M16.5 3.5v3'/%3E%3Cpath d='M3.5 9.5h17'/%3E%3C/svg%3E");
    opacity: 0.82;
}

.contact-field input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.contact-field input[type="date"]::-webkit-datetime-edit,
.contact-field input[type="date"]::-webkit-date-and-time-value {
    color: var(--text-main);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: rgba(113, 92, 72, 0.32);
    background: rgba(255, 252, 248, 0.68);
}

.contact-field-error {
    display: none;
}

.contact-control.has-error input,
.contact-control.has-error select,
.contact-control.has-error textarea {
    border-color: rgba(180, 85, 69, 0.65);
}

.contact-control.has-error input::placeholder,
.contact-control.has-error textarea::placeholder {
    color: #b45545;
    opacity: 1;
}

.contact-control.has-error select {
    color: #b45545;
}

.contact-control.has-error.contact-control-date::after,
.contact-control.has-error.contact-control-select::after {
    opacity: 1;
    filter: saturate(0.9);
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-submit {
    justify-self: start;
}

.site-footer {
    padding: 120px 0;
    border-top: 1px solid rgba(113, 92, 72, 0.1);
}

.footer-inner {
    display: grid;
    gap: 26px;
    padding-top: 24px;
    justify-items: center;
    text-align: center;
}

.footer-logo-link {
    display: inline-flex;
    justify-self: center;
}

.footer-logo {
    display: block;
    width: min(100%, 420px);
    height: auto;
}

.footer-copy {
    margin: 0;
    max-width: 460px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.94rem;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.footer-social-link {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(113, 92, 72, 0.18);
    border-radius: 50%;
    background: rgba(255, 252, 248, 0.48);
    color: var(--text-main);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(113, 92, 72, 0.28);
    background: rgba(255, 252, 248, 0.72);
}

@media (max-width: 980px) {
    .header-inner {
        position: relative;
        flex-wrap: nowrap;
    }

    .menu-trigger {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .site-header .menu-trigger:hover,
    .site-header .menu-trigger:focus-visible {
        background: transparent;
    }

    .site-header.is-scrolled .menu-trigger {
        background: transparent;
    }

.site-header.is-scrolled .menu-trigger span {
    background: var(--text-main);
}

body.has-mobile-menu .menu-trigger span {
    background: var(--text-main);
}

    .site-header.is-scrolled .menu-trigger:hover,
    .site-header.is-scrolled .menu-trigger:focus-visible {
        background: transparent;
    }

    .header-flyout {
        display: none;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        display: block;
        background: rgba(20, 17, 15, 0.28);
        opacity: 0;
        pointer-events: none;
        transition: opacity 250ms ease;
        z-index: 20;
    }

    .menu-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 48px;
        padding: 104px 28px 40px;
        background: rgba(248, 244, 238, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 240ms ease,
            visibility 0s linear 240ms;
        z-index: 25;
    }

    .mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition:
            opacity 240ms ease,
            visibility 0s linear 0s;
    }

    .menu-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .menu-links a {
        color: var(--text-main);
        font-size: 1.15rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .menu-footer {
        margin-top: 0;
        display: grid;
        justify-items: center;
        gap: 18px;
    }

    .menu-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        padding: 0 18px;
        border: 1px solid rgba(113, 92, 72, 0.18);
        color: var(--text-main);
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        background: rgba(255, 252, 248, 0.76);
    }

    .menu-cta-icon {
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .menu-socials {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .menu-social-link {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(113, 92, 72, 0.18);
        border-radius: 50%;
        color: var(--text-main);
        background: rgba(255, 252, 248, 0.52);
    }

    .menu-social-link svg {
        width: 18px;
        height: 18px;
    }

    .main-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        color: var(--text-main);
    }

    .main-nav a::after {
        background: var(--accent-deep);
    }

    .header-cta {
        width: 100%;
        justify-content: center;
    }

    .hero-panel {
        min-height: 720px;
        background-position: center center;
    }

    .hero-shell {
        min-height: 720px;
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-section {
        padding-bottom: 100px;
    }

    .portfolio-film {
        border-radius: 26px;
    }

    .portfolio-coverflow-track {
        height: 138px;
    }

    .portfolio-film-coverflow {
        width: 86%;
    }

    .portfolio-play-overlay {
        width: 74px;
        height: 74px;
        font-size: 1.35rem;
    }

    .portfolio-video-controls {
        inset-inline: 14px;
        bottom: 14px;
        gap: 12px;
        padding: 10px 12px;
    }

    .portfolio-video-button {
        min-width: 38px;
        height: 38px;
        padding-inline: 12px;
    }

    .portfolio-video-progress {
        min-width: 120px;
    }

    .portfolio-video-time {
        min-width: 80px;
        font-size: 0.7rem;
    }

    .portfolio-coverflow-nav {
        width: 46px;
        height: 46px;
        font-size: 1.55rem;
    }

    .portfolio-coverflow-nav-prev {
        left: 0;
    }

    .portfolio-coverflow-nav-next {
        right: 0;
    }

    .portfolio-coverflow-thumb {
        width: 88%;
        border-radius: 26px;
    }

    .portfolio-thumb {
        flex-basis: calc((100% - 14px) / 3);
    }

    .testimonial-card {
        flex-basis: calc((100% - 22px) / 2);
    }

    .why-choose-alt-section {
        padding-bottom: 100px;
    }

    .why-choose-alt-shell {
        padding: 30px;
    }

    .why-choose-alt-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "portrait"
            "left"
            "right";
        gap: 24px;
    }

    .why-choose-alt-portrait {
        grid-area: portrait;
        max-width: 420px;
        justify-self: center;
    }

    .why-choose-alt-stack-left {
        grid-area: left;
    }

    .why-choose-alt-stack-right {
        grid-area: right;
    }

    .why-choose-alt-stack-left,
    .why-choose-alt-stack-left .why-choose-alt-card-copy {
        text-align: left;
    }

    .why-choose-alt-stack-left .why-choose-alt-card-head {
        flex-direction: row;
    }

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

    .about-story-copy {
        padding: 0;
    }

    .about-story-visual {
        min-height: 700px;
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
        padding: 16px 24px 10px 0;
    }

    .about-story-visual::before {
        top: 34px;
        left: 30px;
        right: 74px;
        bottom: 62px;
    }

    .about-story-card-main {
        width: min(72%, 500px);
        height: 520px;
    }

    .about-story-card-accent {
        width: min(46%, 300px);
        height: 390px;
        bottom: 0;
    }

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

    .testimonial-card-featured {
        transform: none;
    }

    .contact-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-copy {
        gap: 30px;
        padding-top: 0;
    }

    .contact-heading {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-heading h2 {
        max-width: 720px;
        margin-inline: auto;
    }

    .contact-text {
        margin-inline: auto;
        text-align: center;
    }

    .contact-connect {
        justify-items: center;
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }

    .contact-link-row {
        border-bottom: none;
        padding-bottom: 0;
    }

}

@media (max-width: 640px) {
    .container {
        padding-inline: 17px;
    }

    .site-header {
        padding: 16px 0;
    }

    .header-inner {
        gap: 16px;
    }

    .brand-logo {
        height: 34px;
    }

    .menu-trigger {
        width: 44px;
        height: 44px;
    }

    .main-nav {
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 0 0 76px;
    }

    .hero-panel {
        min-height: 100vh;
    }

    .hero-shell {
        min-height: 100vh;
        padding-top: 168px;
        padding-bottom: 40px;
    }

    .hero-content h1 {
        font-size: clamp(3.8rem, 15vw, 5.8rem);
    }

    .hero-content .hero-text {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .why-choose-section {
        padding-bottom: 80px;
    }

    .about-story-section {
        padding-bottom: 84px;
    }

    .testimonials-section {
        padding-bottom: 84px;
    }

    .contact-section {
        padding-bottom: 84px;
    }

    .section-copy h2 {
        font-size: clamp(1.95rem, 10vw, 2.8rem);
    }

    .portfolio-section {
        padding-bottom: 84px;
    }

    .portfolio-intro {
        margin-bottom: 26px;
    }

    .portfolio-intro h2 {
        font-size: clamp(1.95rem, 10vw, 2.8rem);
    }

    .portfolio-text {
        font-size: 0.94rem;
        line-height: 1.75;
    }

    .portfolio-film {
        margin-bottom: 22px;
        border-radius: 22px;
    }

    .portfolio-gallery {
        gap: 16px;
    }

    .portfolio-gallery-coverflow {
        margin-top: 28px;
        padding-top: 28px;
    }

    .portfolio-coverflow-track {
        height: 100%;
    }

    .portfolio-coverflow-stage {
        padding-top: 12px;
    }

    .portfolio-film-coverflow {
        width: 86%;
    }

    .portfolio-play-overlay {
        width: 62px;
        height: 62px;
        font-size: 1.15rem;
    }

    .portfolio-video-controls {
        inset-inline: 12px;
        bottom: 12px;
        gap: 10px;
        padding: 10px 12px;
    }

    .portfolio-video-button {
        min-width: 36px;
        height: 36px;
        padding-inline: 10px;
    }

    .portfolio-video-progress {
        min-width: 0;
    }

    .portfolio-video-time {
        display: none;
    }

    .portfolio-coverflow-nav {
        width: 42px;
        height: 42px;
        font-size: 1.35rem;
    }

    .portfolio-coverflow-nav-prev {
        left: 0;
    }

    .portfolio-coverflow-nav-next {
        right: 0;
    }

    .portfolio-coverflow-thumb {
        width: 88%;
        border-radius: 22px;
    }

    .portfolio-thumb-slider {
        gap: 10px;
    }

    .portfolio-film-thumbs {
        gap: 12px;
    }

    .portfolio-thumb {
        flex-basis: calc((100% - 12px) / 2);
    }

    .portfolio-thumb-nav {
        width: 38px;
        height: 38px;
    }

    .portfolio-thumb-slider {
        padding-inline: 0;
    }

    .portfolio-thumb-nav {
        display: none;
    }

    .portfolio-thumb-slider {
        padding-inline: 0;
    }

    .portfolio-thumb {
        flex-basis: calc((100% - 18px) / 2.5);
    }

    .why-choose-alt-section {
        padding-bottom: 68px;
    }

    .why-choose-alt-shell {
        padding: 24px 0;
        border-radius: 26px;
    }

    .why-choose-alt-intro {
        margin-bottom: 22px;
    }

    .why-choose-alt-intro h2 {
        font-size: clamp(1.95rem, 10vw, 2.9rem);
    }

    .why-choose-alt-layout {
        gap: 18px;
    }

    .why-choose-alt-portrait {
        max-width: 300px;
        border-radius: 22px;
    }

    .why-choose-alt-stack {
        gap: 14px;
    }

    .why-choose-alt-card {
        padding: 18px 0;
    }

    .why-choose-alt-card h3 {
        font-size: 1.35rem;
    }

    .testimonial-nav {
        display: none;
    }

    .testimonials-track {
        gap: 16px;
    }

    .testimonial-card {
        flex-basis: 100%;
    }

    .about-story-grid {
        gap: 18px;
    }

    .about-story-copy h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .about-story-copy p:not(.eyebrow) {
        font-size: 0.94rem;
        line-height: 1.8;
    }

    .about-story-visual {
        min-height: 470px;
        padding: 8px 12px 0 0;
    }

    .about-story-visual::before {
        top: 22px;
        left: 20px;
        right: 42px;
        bottom: 42px;
        border-radius: 24px;
    }

    .about-story-card-main {
        width: 72%;
        height: 350px;
    }

    .about-story-card-accent {
        width: 48%;
        height: 270px;
        bottom: 0;
    }

    .testimonial-card {
        min-height: auto;
        padding: 28px 22px;
    }

    .testimonial-quote {
        font-size: 1.45rem;
    }

    .contact-shell {
        gap: 28px;
        padding-top: 20px;
    }

    .contact-heading h2 {
        font-size: clamp(1.95rem, 10vw, 2.9rem);
    }

    .contact-number {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-link-list {
        width: 100%;
    }

    .contact-link-row {
        justify-content: center;
    }

    .contact-submit {
        width: 100%;
    }

    .footer-logo {
        width: min(100%, 300px);
    }

    .footer-socials {
        gap: 12px;
    }
}
