:root {
    --bg: #f6f4f0;
    --bg-2: #ffffff;
    --card: #ffffff;
    --ink: #1c2430;
    --muted: #5c6773;
    --line: rgba(28, 36, 48, 0.12);
    --orange: #e08126;
    --ice: #9bc4d0;
    --magenta: #c62a87;
    --spectrum: linear-gradient(90deg, #f4f1eb 0%, #e08126 22%, #9bc4d0 55%, #c62a87 100%);
    --header: 84px;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.55;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button, a { font: inherit; color: inherit; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
a { text-decoration: none; }

.skip {
    position: absolute;
    left: 12px;
    top: -48px;
    background: #fff;
    color: #111;
    padding: 8px 12px;
    z-index: 80;
}
.skip:focus { top: 10px; }

.wrap { width: min(1240px, calc(100% - 32px)); margin-inline: auto; }
.spectrum { position: fixed; top: 0; left: 0; right: 0; height: 4px; background: var(--spectrum); z-index: 60; }

.site-header {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(246, 244, 240, 0.96);
    border-bottom: 1px solid var(--line);
}
.site-header.is-stuck {
    background: #f6f4f0;
    border-bottom: 1px solid var(--line);
}
.bar {
    min-height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.brand { position: relative; z-index: 2; }
.brand img { height: 58px; width: auto; }
.head-tools { display: flex; align-items: center; gap: 14px; position: relative; z-index: 2; }
.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav a {
    color: var(--ink);
    font-weight: 600;
    position: relative;
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -8px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav-phone { display: none; }
.head-mail { color: var(--ink); font-size: 14px; font-weight: 500; }
.head-mail:hover { color: var(--magenta); }
.head-phone {
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
}
.head-phone:hover { background: #c96d18; }

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 70;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform .3s var(--ease);
}

h1, h2, .cta-phone, .contact-phone {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.96;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.4rem); max-width: 11ch; }
h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); max-width: 16ch; }
h3 { font-family: "Syne", sans-serif; font-size: 1.45rem; letter-spacing: -0.03em; }

.kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--magenta);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}
.kicker i, .kicker::after {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--orange);
    display: block;
}
.kicker::after { background: var(--ice); }
.lede { max-width: 42ch; margin-top: 18px; font-size: 1.12rem; font-weight: 400; color: var(--muted); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-weight: 600;
    border: 1px solid var(--orange);
}
.btn:hover { background: var(--magenta); border-color: var(--magenta); color: #fff; }
.btn.ghost { background: #fff; color: var(--ink); border-color: var(--ice); }
.btn.ghost:hover { background: var(--ice); color: var(--ink); border-color: var(--ice); }
.hero .btn.ghost, .cta .btn.ghost {
    background: rgba(20, 24, 30, 0.28);
    color: #fff;
    border-color: rgba(255,255,255,.9);
}
.hero .btn.ghost:hover, .cta .btn.ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.text-link { border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.text-link:hover { color: var(--orange); }

.hero {
    position: relative;
    color: #fff;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0 36px;
    overflow: hidden;
}
.hero-media, .cta-media {
    position: absolute;
    inset: -6%;
    background-position: center;
    background-size: cover;
    animation: drift 22s ease-in-out infinite alternate;
}
.hero-shade, .cta-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 56% at 50% 48%, rgba(28,36,48,.58) 0%, rgba(28,36,48,.28) 62%, rgba(28,36,48,.12) 100%),
        linear-gradient(180deg, rgba(28,36,48,.18) 0%, rgba(28,36,48,.22) 36%, rgba(28,36,48,.48) 100%);
}
.page-hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 74% 64% at 50% 55%, rgba(28,36,48,.55) 0%, rgba(28,36,48,.28) 70%, rgba(28,36,48,.16) 100%),
        linear-gradient(180deg, rgba(246,244,240,.2) 0%, rgba(28,36,48,.28) 42%, rgba(28,36,48,.5) 100%);
}
.hero-copy, .hero-meta, .cta-copy { position: relative; z-index: 1; }
.hero h1, .page-hero h1, .cta-phone {
    margin-inline: auto;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.65);
}
.hero .lede, .hero .kicker, .hero-meta, .cta-copy p, .cta-mail, .cta .kicker, .page-hero .crumb {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
}
.hero .kicker, .cta .kicker { color: #fff; }
.hero .lede { margin-inline: auto; color: #fff; font-weight: 500; }
.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 48px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.22);
    color: #fff;
    font-weight: 500;
    text-align: center;
}
.hero-meta a:hover { color: var(--orange); }

.film { overflow: hidden; background: #fff; border-block: 1px solid var(--line); }
.film-track {
    display: flex;
    width: max-content;
    animation: ticker 36s linear infinite;
}
.film img { width: 240px; height: 150px; object-fit: cover; }
.film:hover .film-track { animation-play-state: paused; }

.block { padding: 36px 0 18px; }
.block.tight { padding-top: 28px; padding-bottom: 36px; background: linear-gradient(180deg, #fff 0%, #eef6f8 100%); }

.mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.mosaic-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 340px;
}
.mosaic-card img, .trio img, .story-photos img, .intro-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}
.mosaic-card:hover img { transform: scale(1.06); }
.mosaic-card span, .shot span {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 28px 16px 14px;
    text-align: center;
    color: #fff;
    background: linear-gradient(transparent, rgba(28, 36, 48, .72));
    font-family: "Syne", sans-serif;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.center-block { text-align: center; }
.center-block h2 { margin-inline: auto; max-width: 18ch; }
.center-block > p { color: var(--muted); margin: 14px auto 0; max-width: 62ch; }
.equal-3, .equal-2 {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}
.equal-3 { grid-template-columns: repeat(3, 1fr); }
.equal-2 { grid-template-columns: 1fr 1fr; }
.equal-3 img, .equal-2 img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
}

.sec-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 18px;
}
.sec-head h2 { max-width: none; }
.preview-grid, .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.preview-grid .shot, .gallery .shot { aspect-ratio: 1; min-height: 0; }
.gallery .shot.tall, .gallery .shot.wide { grid-column: auto; grid-row: auto; }
.story h2 { max-width: 18ch; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.12; }
.shot {
    scroll-margin-top: 110px;
    position: relative;
    display: block;
    overflow: hidden;
    border: 0;
    padding: 0;
    border-radius: 14px;
    cursor: pointer;
    background: #d7e4ea;
    text-align: left;
    color: #fff;
}
.shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.shot:hover img { transform: scale(1.07); }
.shot:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.cta {
    position: relative;
    color: #fff;
    min-height: 520px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 72px 0;
    overflow: hidden;
}
.cta-copy { display: flex; flex-direction: column; align-items: center; }
.cta-phone, .contact-phone {
    display: block;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    color: var(--ink);
    white-space: nowrap;
}
.cta-phone, .cta-mail { color: #fff; }
.cta-phone:hover, .cta-mail:hover, .contact-phone:hover, .contact-mail:hover { color: var(--orange); }
.cta-mail, .contact-mail {
    display: inline-block;
    margin: 8px 0 10px;
    font-size: 1.35rem;
    color: var(--magenta);
}
.cta-mail { color: #fff; }
.cta-copy p { color: #fff; max-width: 46ch; margin-inline: auto; }

.page-hero {
    position: relative;
    color: #fff;
    min-height: 460px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 0 48px;
}
.page-hero.short { min-height: 380px; }
.page-hero .wrap, .page-hero h1 { position: relative; z-index: 1; }
.crumb { position: relative; z-index: 1; color: #fff; margin-bottom: 12px; }
.crumb a:hover { color: var(--orange); }

.fact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
    text-align: center;
}
.fact-row div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 12px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--orange);
    border-radius: 16px;
    background: var(--card);
}
.fact-row div:nth-child(2) { border-top-color: var(--ice); }
.fact-row div:nth-child(3) { border-top-color: var(--magenta); }
.fact-row strong { color: var(--muted); font-weight: 500; }
.fact-row a:hover { color: var(--orange); }

.trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.trio article {
    background: var(--card);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
}
.trio img { height: 240px; width: 100%; object-fit: cover; }
.trio h3, .trio p { padding: 0 18px; text-align: center; }
.trio h3 { margin-top: 14px; }
.trio p { color: var(--muted); padding-bottom: 18px; margin-top: 6px; }

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 18px;
}
.contact-card address { margin: 16px 0; font-size: 1.15rem; line-height: 1.45; }
.legal { color: var(--muted); margin-bottom: 18px; }
.map-frame {
    min-height: 520px;
    border-radius: 18px;
    overflow: hidden;
    background: #e7eef1;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 520px; border: 0; display: block; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(0, 0, 0, .88);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-height: 100%; }
.lightbox img {
    max-height: calc(100svh - 120px);
    max-width: min(1100px, 100%);
    margin-inline: auto;
    object-fit: contain;
    border-radius: 12px;
}
.lightbox figcaption {
    text-align: center;
    margin-top: 10px;
    font-family: "Syne", sans-serif;
    font-size: 1.3rem;
}
.lb-close, .lb-prev, .lb-next {
    border: 0;
    background: rgba(255,255,255,.12);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}
.lb-close { position: absolute; top: 18px; right: 18px; }
.lb-prev, .lb-next { position: relative; }
body.lb-open { overflow: hidden; }

.site-footer {
    position: relative;
    margin-top: 20px;
    padding: 42px 0 24px;
    background: #fff;
    border-top: 0;
    color: var(--ink);
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--spectrum);
}
.footer-brandline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 22px;
}
.footer-brandline img { height: 64px; width: auto; }
.footer-brandline p { max-width: 42ch; color: var(--muted); font-size: 14px; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: center;
}
.footer-label {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.footer-phone { font-family: "Syne", sans-serif; font-size: 1.45rem; letter-spacing: -0.03em; }
.footer-grid a:hover { color: var(--orange); }
.footer-grid li + li { margin-top: 6px; }
.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
::selection { background: var(--orange); color: #fff; }

@keyframes drift {
    from { transform: scale(1) translate3d(0, 0, 0); }
    to { transform: scale(1.06); }
}
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
    .equal-3, .trio, .fact-row, .footer-grid { grid-template-columns: 1fr; }
    .mosaic { grid-template-columns: 1fr; }
    .mosaic-card { height: 240px; }
    .gallery, .preview-grid { grid-template-columns: 1fr 1fr; }
    .head-mail { display: none; }
}
@media (max-width: 820px) {
    .nav-toggle { display: inline-flex; }
    .head-phone { display: none; }
    .nav {
        position: fixed;
        inset: 0;
        left: 0;
        transform: none;
        background: #f6f4f0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 88px 32px;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        z-index: 55;
    }
    .nav a { font-family: "Syne", sans-serif; font-size: 2rem; }
    .nav a::after { display: none; }
    .nav-phone { display: block; font-family: Outfit, sans-serif; font-size: 1.05rem; margin-top: 8px; }
    body.nav-open .nav { opacity: 1; pointer-events: auto; }
    body.nav-open { overflow: hidden; }
    body.nav-open .nav-toggle { position: fixed; top: 16px; right: 14px; }
    body.nav-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
    body.nav-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
    h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); }
    .brand img { height: 48px; }
    .hero-meta, .equal-2, .contact-layout { grid-template-columns: 1fr; }
    .contact-phone { white-space: normal; }
}
@media (max-width: 640px) {
    .film img { width: 160px; height: 110px; }
    .map-frame, .map-frame iframe { min-height: 380px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
