:root {
    --paper: #f5efe7;
    --paper-strong: #fffdf8;
    --paper-dark: #e8dccd;
    --ink: #171412;
    --ink-soft: #5c544b;
    --line: rgba(33, 23, 16, 0.12);
    --brand: #bb8850;
    --brand-deep: #8e6033;
    --brand-soft: rgba(187, 136, 80, 0.14);
    --charcoal: #181411;
    --charcoal-soft: #231d18;
    --white: #ffffff;
    --shadow: 0 24px 64px rgba(16, 10, 6, 0.14);
    --shadow-soft: 0 18px 40px rgba(16, 10, 6, 0.08);
    --radius-xl: 2rem;
    --radius-lg: 1.35rem;
    --radius-md: 1rem;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    color: var(--ink);
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(187, 136, 80, 0.14), transparent 28rem),
        linear-gradient(180deg, #fbf7f1 0%, var(--paper) 100%);
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

section[id] {
    scroll-margin-top: 6.5rem;
}

.container {
    width: min(calc(100% - 2.5rem), var(--container));
    margin: 0 auto;
}

.section-kicker {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--brand-deep);
}

.section-kicker--light {
    color: rgba(255, 236, 214, 0.82);
}

.section-heading {
    max-width: 100;
    margin-bottom: 3rem;
}

.section-heading h2 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(2.15rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.section-heading p:last-of-type {
    margin: 1.2rem 0 0;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

.section-heading--light h2,
.section-heading--light p {
    color: var(--white);
}

.section-heading--light p:last-of-type {
    color: rgba(255, 255, 255, 0.72);
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.3rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-deep);
}

.inline-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.inline-link:hover::after {
    transform: translateX(0.2rem);
}

.inline-link--light {
    color: #f7d5b2;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 14px 32px rgba(142, 96, 51, 0.22);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(142, 96, 51, 0.28);
}

.button--secondary,
.button--ghost {
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: none;
}

.button--ghost {
    background: rgba(255, 255, 255, 0.08);
}

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

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.button--secondary:hover {
    background: rgba(23, 20, 18, 0.04);
}

.button--small {
    min-height: 2.95rem;
    padding-inline: 1.1rem;
    font-size: 0.88rem;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    padding-top: 1rem;
    transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
    padding-top: 0.25rem;
    background: rgba(255, 251, 245, 0.86);
    box-shadow: 0 10px 30px rgba(16, 10, 6, 0.08);
    backdrop-filter: blur(18px);
}

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

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.95rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(15, 11, 8, 0.12);
    backdrop-filter: blur(14px);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled .nav-shell {
    border-color: rgba(23, 20, 18, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

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

.brand-logo {
    height: 2.2rem;
    width: auto;
}

.brand-logo--dark,
.site-header.is-scrolled .brand-logo--light {
    display: none;
}

.site-header.is-scrolled .brand-logo--dark {
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 2vw, 2rem);
    margin-left: auto;
    margin-right: 1rem;
}

.desktop-nav a,
.phone-chip {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.38rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-scrolled .phone-chip {
    color: var(--ink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.phone-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled .phone-chip {
    border-color: rgba(23, 20, 18, 0.08);
    background: rgba(23, 20, 18, 0.04);
}

.menu-toggle {
    display: none;
    position: relative;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    cursor: pointer;
}

.site-header.is-scrolled .menu-toggle {
    background: rgba(23, 20, 18, 0.06);
    color: var(--ink);
}

.menu-toggle span {
    position: absolute;
    left: 50%;
    width: 1rem;
    height: 2px;
    background: currentColor;
    transform: translateX(-50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) {
    top: 1rem;
}

.menu-toggle span:nth-child(2) {
    top: 1.48rem;
}

.menu-toggle span:nth-child(3) {
    top: 1.96rem;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateX(-50%) translateY(0.48rem) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
    transform: translateX(-50%) translateY(-0.48rem) rotate(-45deg);
}

.mobile-panel {
    width: min(calc(100% - 2.5rem), var(--container));
    margin: 0.75rem auto 0;
    padding: 0 1.35rem;
    border-radius: 1.75rem;
    background: rgba(18, 13, 10, 0.96);
    color: var(--white);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding-top 0.35s ease, padding-bottom 0.35s ease;
}

.mobile-panel.is-open {
    max-height: 32rem;
    opacity: 1;
    pointer-events: auto;
    padding-top: 1.1rem;
    padding-bottom: 1.35rem;
}

.mobile-links,
.mobile-contact {
    display: flex;
    flex-direction: column;
}

.mobile-links {
    gap: 0.75rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-links a {
    font-size: 1rem;
    font-weight: 700;
}

.mobile-contact {
    gap: 0.7rem;
    padding-top: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.hero {
    position: relative;
    min-height: 100svh;
    color: var(--white);
    isolation: isolate;
    overflow: hidden;
}

.hero-desktop-media,
.hero-mobile-video,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-desktop-media {
    background:
        linear-gradient(90deg, rgba(8, 6, 4, 0.6), rgba(8, 6, 4, 0.25)),
        url("assets/hero.jpg") center 28% / cover no-repeat;
    transform: scale(1.02);
    animation: heroPulse 20s ease-in-out infinite alternate;
}

.hero-mobile-video {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background:
        radial-gradient(circle at 75% 25%, rgba(187, 136, 80, 0.26), transparent 30rem),
        linear-gradient(180deg, rgba(7, 5, 4, 0.42) 0%, rgba(7, 5, 4, 0.68) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 25rem);
    gap: 2rem;
    align-content: center;
    align-items: center;
    min-height: 100svh;
    padding-top: clamp(7rem, 14vh, 10rem);
    padding-bottom: clamp(2rem, 4vh, 3rem);
}

.hero-copy {
    max-width: 43rem;
}

.hero-copy-main,
.hero-copy-footer {
    min-width: 0;
}

.hero h1 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero-lead {
    max-width: 36rem;
    margin: 1.35rem 0 0;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-top: 2rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-pills a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.94);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-pills a:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.hero-card {
    align-self: end;
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-xl);
    background: rgba(17, 13, 10, 0.56);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.card-eyebrow,
.comparison-label,
.contact-label,
.footer-title {
    margin: 0 0 0.65rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-card h2 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: 2rem;
    line-height: 1.06;
}

.hero-card > p:not(.card-eyebrow) {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.hero-detail-list {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-detail-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-block: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
}

.hero-detail-list li::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffe0bb, var(--brand));
    box-shadow: 0 0 0 0.25rem rgba(255, 224, 187, 0.12);
}

.hero-card-meta {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.35rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-meta a {
    color: rgba(255, 255, 255, 0.76);
}

.team-section,
.work-section,
.contact-section {
    position: relative;
    padding: clamp(5.5rem, 10vw, 8.5rem) 0;
}

.team-section::before,
.work-section::before,
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 5rem 5rem;
    opacity: 0.12;
    mask-image: linear-gradient(180deg, transparent, black 12%, black 88%, transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.team-card,
.gallery-card,
.strip-card,
.contact-block,
.media-card,
.testimonial-card {
    border-radius: var(--radius-lg);
}

.team-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(23, 20, 18, 0.08);
    box-shadow: var(--shadow-soft);
}

.team-photo {
    width: 100%;
    aspect-ratio: 4 / 4.3;
    object-fit: cover;
    object-position: center top;
}

.team-card-body {
    padding: 1.5rem;
}

.team-role {
    margin: 0 0 0.4rem;
    color: var(--brand-deep);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.team-card h3 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: 1.75rem;
    line-height: 1.08;
}

.team-card p:last-of-type {
    margin: 0.95rem 0 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.stat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.stat-list li {
    padding: 0.62rem 0.78rem;
    border-radius: 999px;
    background: rgba(187, 136, 80, 0.12);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
}

.testimonials-section {
    position: relative;
    padding: clamp(4.5rem, 9vw, 7rem) 0;
    background:
        radial-gradient(circle at top right, rgba(187, 136, 80, 0.25), transparent 22rem),
        linear-gradient(180deg, #1b1612 0%, #120f0d 100%);
    overflow: hidden;
}

.testimonials-section::before,
.services-section::before,
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.04) 45%, transparent 100%);
    opacity: 0.45;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.testimonial-card {
    position: relative;
    padding: 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.reviewer img {
    width: 3.9rem;
    height: 3.9rem;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.reviewer h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--white);
}

.testimonial-source {
    margin: 0.2rem 0 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.56);
}

.stars {
    margin: 1.15rem 0 0.75rem;
    color: #ffcf8c;
    letter-spacing: 0.12em;
}

.testimonial-card > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.work-layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
}

.work-main-column {
    grid-column: span 7;
    display: grid;
    gap: 1.25rem;
}

.comparison-card {
    padding: 1.4rem;
    border: 1px solid rgba(23, 20, 18, 0.08);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.comparison-topline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comparison-topline h3 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: 1.8rem;
    line-height: 1.1;
}

.comparison-hint {
    flex-shrink: 0;
    padding: 0.62rem 0.82rem;
    border-radius: 999px;
    background: rgba(23, 20, 18, 0.06);
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.comparison-frame {
    --position: 50%;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: calc(var(--radius-xl) - 0.45rem);
}

.comparison-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-after {
    clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: 2px;
    background: rgba(255, 255, 255, 0.92);
    transform: translateX(-1px);
    box-shadow: 0 0 0 1px rgba(23, 20, 18, 0.08);
}

.comparison-handle {
    position: absolute;
    top: 50%;
    left: var(--position);
    width: 3.35rem;
    height: 3.35rem;
    border: 2px solid rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    background: rgba(12, 10, 8, 0.55);
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.comparison-handle::before,
.comparison-handle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0.62rem;
    height: 0.62rem;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
}

.comparison-handle::before {
    left: 0.92rem;
    transform: translateY(-50%) rotate(-135deg);
}

.comparison-handle::after {
    right: 0.92rem;
    transform: translateY(-50%) rotate(45deg);
}

.comparison-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}

.comparison-badge {
    position: absolute;
    top: 1rem;
    padding: 0.56rem 0.82rem;
    border-radius: 999px;
    background: rgba(15, 11, 8, 0.62);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
}

.comparison-badge--left {
    left: 1rem;
}

.comparison-badge--right {
    right: 1rem;
}

.work-detail-grid,
.work-gallery {
    display: grid;
    gap: 1rem;
}

.work-detail-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.9fr);
    grid-auto-rows: minmax(0, 1fr);
}

.work-gallery {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    margin-top: 1.25rem;
}

.gallery-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 20, 18, 0.08);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.work-gallery .gallery-card {
    grid-column: span 3;
}

.work-gallery .gallery-card--wide {
    grid-column: span 6;
}

.gallery-card--feature {
    grid-column: 1 / 2;
    grid-row: span 2;
}

.gallery-thumb {
    width: 100%;
    flex: 1;
    aspect-ratio: 1.08;
    object-fit: cover;
}

.work-detail-grid .gallery-card--feature .gallery-thumb {
    height: 100%;
    min-height: 24rem;
    aspect-ratio: auto;
}

.work-detail-grid .gallery-card:not(.gallery-card--feature) .gallery-thumb {
    aspect-ratio: 1.65;
}

.work-gallery .gallery-card--wide .gallery-thumb {
    aspect-ratio: 1.7;
}

.gallery-caption {
    margin: 0;
    padding: 1rem 1.05rem 1.15rem;
    color: var(--ink-soft);
    line-height: 1.6;
    font-size: 0.94rem;
}

.showreel-card {
    grid-column: span 5;
    padding: 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(23, 20, 18, 0.08);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
        radial-gradient(circle at 20% 0%, rgba(187, 136, 80, 0.16), transparent 22rem);
    box-shadow: var(--shadow);
}

.showreel-copy {
    padding: 0.65rem 0.65rem 1rem;
}

.showreel-copy h3 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.06;
}

.showreel-copy p:last-child {
    margin: 0.75rem 0 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.showreel-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: calc(var(--radius-xl) - 0.65rem);
    object-fit: cover;
    background: #0f0d0c;
}

.work-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.strip-card {
    overflow: hidden;
    border: 1px solid rgba(23, 20, 18, 0.08);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-soft);
}

.strip-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.services-section {
    position: relative;
    padding: clamp(4.5rem, 9vw, 7rem) 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(187, 136, 80, 0.18), transparent 18rem),
        linear-gradient(180deg, #191410 0%, #120f0d 100%);
    overflow: hidden;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-tile {
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  box-shadow: none;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.service-tile:hover {
  border-color: rgba(162, 127, 95, 0.4);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(162, 127, 95, 0.14);
  border: 1px solid rgba(162, 127, 95, 0.25);
}

.service-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.service-tile h3 {
  margin: 1rem 0 0;
  font-size: 1.1rem;
}

.service-tile p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-meta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.booking-card,
.booking-panel {
    position: relative;
    border: 1px solid rgba(23, 20, 18, 0.08);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.booking-card {
    overflow: hidden;
}

.booking-card--route {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    display: grid;
    grid-template-rows: auto auto;
    align-content: start;
}

.booking-panel {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
    padding: clamp(1.5rem, 2.4vw, 2.35rem);
}

.booking-card--map {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 28rem;
}

.booking-panel .section-heading {
    margin-bottom: 0;
}

.booking-panel .section-heading h2 {
    font-size: clamp(2.1rem, 3.2vw, 3.45rem);
}

.booking-card__copy {
    padding: 1.35rem 1.35rem 0;
}

.booking-card__copy h3 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.08;
}

.booking-card__copy p:last-child {
    margin: 0.65rem 0 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

.booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.booking-list {
    display: grid;
    gap: 1rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.booking-list li {
    padding-top: 1rem;
    border-top: 1px solid rgba(23, 20, 18, 0.08);
}

.booking-list span {
    display: block;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(92, 84, 75, 0.72);
}

.booking-list a {
    display: inline-block;
    margin-top: 0.35rem;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.45;
}

.booking-list a:hover,
.footer-contact a:hover,
.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--brand-deep);
}

.booking-route,
.booking-map {
    padding: 1rem;
}

.booking-route {
    min-height: 0;
}

.booking-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--radius-xl) - 0.7rem);
    object-fit: cover;
    background: #0f0d0c;
}

.booking-route video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    border-radius: calc(var(--radius-xl) - 0.7rem);
    object-fit: cover;
    background: #0f0d0c;
}

.booking-map {
    height: 100%;
    min-height: 22rem;
}

.booking-map iframe {
    min-height: 22rem;
}

.footer-contact a,
.footer-links a {
    display: block;
    margin-top: 0.42rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

.site-footer {
    position: relative;
    padding-top: 3.5rem;
    color: var(--white);
    background:
        radial-gradient(circle at top left, rgba(187, 136, 80, 0.2), transparent 20rem),
        linear-gradient(180deg, #181410 0%, #0f0d0b 100%);
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 0.7fr 0.9fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-logo {
    height: 2.8rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    max-width: 32rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.footer-title {
    color: rgba(255, 236, 214, 0.82);
}

.footer-links a,
.footer-contact a,
.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroPulse {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.08);
    }
}

@media (max-width: 1140px) {
    .desktop-nav {
        gap: 1rem;
        margin-right: 0.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .booking-card--route,
    .booking-panel,
    .booking-card--map {
        grid-column: auto;
        grid-row: auto;
    }

    .booking-card--route {
        height: auto;
    }

    .booking-route video {
        height: auto;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero-inner,
    .work-layout,
    .team-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .work-main-column,
    .showreel-card {
        grid-column: auto;
    }

    .showreel-card {
        width: min(100%, 34rem);
        justify-self: center;
    }

    .hero-card {
        max-width: 32rem;
    }

    .work-detail-grid,
    .work-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .work-detail-grid .gallery-card--feature,
    .work-gallery .gallery-card,
    .work-gallery .gallery-card--wide {
        grid-column: auto;
        grid-row: auto;
    }

    .work-gallery .gallery-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    html {
        scroll-behavior: auto;
    }

    .container {
        width: min(calc(100% - 1.5rem), var(--container));
    }

    .site-header {
        padding-top: 0.7rem;
    }

    .nav-shell {
        padding: 0.8rem 0.95rem;
    }

    .brand-logo {
        height: 1.9rem;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-desktop-media {
        display: none;
    }

    .hero-mobile-video {
        display: block;
    }

    .hero-inner {
        min-height: 100svh;
        align-content: start;
        padding-top: 7.4rem;
        padding-bottom: 1.35rem;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(3rem, 13.5vw, 4.5rem);
        line-height: 0.92;
    }

    .hero-lead {
        max-width: 20rem;
        margin-top: 1.05rem;
        font-size: 1.02rem;
        line-height: 1.6;
    }

    .hero-copy-footer {
        margin-top: clamp(5.5rem, calc(100svh - 38rem), 18rem);
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 0;
        width: 100%;
    }

    .hero-pills {
        width: 100%;
        margin-top: 0.75rem;
    }

    .hero-pills a {
        width: 100%;
        min-height: 3.05rem;
    }

    .hero-card {
        display: none;
    }

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

    .hero-actions .button {
        flex: none;
        width: 100%;
        min-width: 0;
        min-height: 3.05rem;
        padding-inline: 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .section-heading {
        margin-bottom: 2.2rem;
    }

    .work-gallery,
    .work-detail-grid,
    .services-grid,
    .work-strip {
        grid-template-columns: 1fr;
    }

    .work-gallery .gallery-card,
    .work-gallery .gallery-card--wide {
        grid-column: auto;
    }

    .showreel-card {
        width: 100%;
        justify-self: stretch;
    }

    .work-detail-grid .gallery-card--feature .gallery-thumb {
        min-height: 0;
        aspect-ratio: 1.35;
    }

    .comparison-topline {
        align-items: start;
        flex-direction: column;
    }

    .booking-card--route {
        height: auto;
    }

    .booking-route video {
        height: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .hero-pills a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .team-card h3,
    .comparison-topline h3,
    .media-card-copy h3 {
        font-size: 1.5rem;
    }

    .comparison-card,
    .testimonial-card,
    .service-tile,
    .contact-block,
    .media-card {
        padding: 1rem;
    }
}



@media (max-width: 960px) {
    section[id] {
        scroll-margin-top: 7.8rem;
    }

    .site-header {
        z-index: 50;
        padding-top: 0;
        color: var(--white);
        transition:
            background-color 280ms ease,
            color 280ms ease,
            box-shadow 280ms ease,
            backdrop-filter 280ms ease;
    }

    .site-header.is-scrolled {
        padding-top: 0;
        background: rgba(246, 241, 235, 0.88);
        color: var(--ink);
        box-shadow: 0 18px 60px rgba(23, 20, 18, 0.08);
        backdrop-filter: blur(20px);
    }

    .mobile-topbar {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(13, 10, 8, 0.34);
        backdrop-filter: blur(8px);
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-header.is-scrolled .mobile-topbar {
        background: rgba(246, 241, 235, 0.72);
        border-bottom-color: var(--line);
    }

    .mobile-topbar__inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        width: min(calc(100% - 2rem), var(--container));
        min-height: 40px;
        font-size: 0.8rem;
        font-weight: 600;
        color: inherit;
    }

    .mobile-topbar__inner a {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        color: inherit;
        opacity: 0.86;
        line-height: 1;
        white-space: nowrap;
        transition: opacity 180ms ease, color 180ms ease;
    }

    .mobile-topbar__inner a:hover {
        opacity: 1;
        color: var(--brand);
    }

    .topbar-link--icon {
        width: 1.25rem;
        justify-content: center;
    }

    .topbar-icon {
        width: 1rem;
        height: 1rem;
        flex: 0 0 1rem;
        color: var(--brand);
        fill: currentColor;
    }

    .topbar-separator {
        color: currentColor;
        opacity: 0.28;
        line-height: 1;
    }

    .nav-shell,
    .site-header.is-scrolled .nav-shell {
        min-height: 80px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .brand-logo {
        height: 42px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        width: 46px;
        height: 46px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        backdrop-filter: blur(12px);
    }

    .site-header.is-scrolled .menu-toggle {
        background: rgba(23, 20, 18, 0.04);
        border-color: var(--line);
    }

    .menu-toggle svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }

    .menu-toggle .icon-close,
    .menu-toggle.is-open .icon-burger {
        display: none;
    }

    .menu-toggle.is-open .icon-close {
        display: block;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 40;
        display: block;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(4px);
    }

    .menu-overlay[hidden] {
        display: none;
    }

    .mobile-panel {
        position: fixed;
        left: 0;
        right: 0;
        z-index: 50;
        width: auto;
        max-height: none;
        margin: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        color: var(--ink);
        overflow: visible;
        opacity: 0;
        pointer-events: none;
        transform: translateY(0.5rem);
        transition: opacity 300ms ease, transform 300ms ease;
    }

    .mobile-panel.is-open {
        max-height: none;
        padding: 0;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu__inner {
        display: block;
        margin-top: 0.9rem;
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: 26px;
        background: rgba(246, 241, 235, 0.95);
        box-shadow: var(--shadow);
    }

    .mobile-menu__inner a {
        display: block;
        padding: 0.95rem 0.8rem;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
        font-weight: 600;
    }

    .mobile-menu__inner a:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 767px) {
    .mobile-topbar__inner {
        gap: 0.38rem;
        font-size: 0.73rem;
        justify-content: space-between;
        width: min(calc(100% - 1.6rem), var(--container));
    }
}

@media (max-width: 500px) {
    .topbar-link--address span {
        display: none;
    }
}

@media (max-width: 335px) {
    .topbar-link--phone span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

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