:root {
    /* Logo terracotta + soft feminine companions */
    --brand: #c05e31;
    --brand-dark: #943d22;
    --brand-soft: #fce9e4;
    --brand-muted: #e8c4b8;
    --accent: #d4a07a;
    --accent-soft: #f5e6df;
    --blush: #fdf6f4;
    --rose-dusty: #b8959e;
    --gold: #cfa882;
    --flag-blue: #9a7b88;
    --flag-red: #c4716b;
    --ink: #2a2220;
    --muted: #6f5f5a;
    --paper: #fffaf8;
    --cream: #f7ebe6;
    --charcoal: #1f1816;
    --white: #ffffff;
    --brand-rgb: 192, 94, 49;
    --accent-rgb: 212, 160, 122;
    --line: rgba(var(--brand-rgb), 0.22);
    --shadow: 0 24px 70px rgba(42, 34, 32, 0.12);
    --pink-wash: rgba(252, 210, 222, 0.42);
    --pink-soft: rgba(248, 196, 210, 0.38);
    --pink-sketch: #e8a4b8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(ellipse 130% 85% at 95% 5%, var(--pink-wash), transparent 48%),
        radial-gradient(ellipse 100% 70% at 0% 35%, var(--pink-soft), transparent 46%),
        radial-gradient(ellipse 80% 55% at 70% 95%, rgba(252, 218, 228, 0.35), transparent 42%),
        var(--paper);
    line-height: 1.6;
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

/* Fixed sketch layer + floating pieces (decorative) */
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    /* Softer on scroll; Proudly Local section has its own copy */
    opacity: 0.42;
}

.ambient-sketch {
    position: absolute;
    color: var(--pink-sketch);
    opacity: 0.42;
    width: min(520px, 55vw);
    height: auto;
    animation: ambient-sketch-drift 42s ease-in-out infinite;
}

.ambient-sketch--a {
    top: 8%;
    right: -6%;
    transform: rotate(-6deg);
}

.ambient-sketch--b {
    bottom: 12%;
    left: -8%;
    width: min(420px, 48vw);
    opacity: 0.36;
    animation: ambient-sketch-drift-alt 56s ease-in-out infinite reverse;
    animation-delay: -12s;
}

.ambient-piece {
    position: absolute;
    border-radius: 58% 42% 48% 52% / 52% 48% 52% 48%;
    background:
        radial-gradient(
            ellipse at 35% 30%,
            rgba(255, 210, 220, 0.55),
            rgba(248, 185, 200, 0.22) 52%,
            transparent 72%
        );
    animation: ambient-piece-float 22s ease-in-out infinite;
}

.ambient-piece--1 {
    width: clamp(120px, 18vw, 220px);
    height: clamp(100px, 15vw, 180px);
    top: 18%;
    left: 6%;
    animation-duration: 26s;
    animation-delay: -4s;
}

.ambient-piece--2 {
    width: clamp(90px, 12vw, 160px);
    height: clamp(110px, 14vw, 170px);
    top: 48%;
    right: 8%;
    animation-duration: 31s;
    animation-delay: -10s;
    opacity: 0.85;
}

.ambient-piece--3 {
    width: clamp(70px, 10vw, 130px);
    height: clamp(85px, 11vw, 140px);
    bottom: 22%;
    left: 18%;
    animation-duration: 24s;
    animation-delay: -2s;
}

.ambient-piece--4 {
    width: clamp(100px, 14vw, 180px);
    height: clamp(95px, 13vw, 165px);
    top: 62%;
    left: 42%;
    animation-duration: 35s;
    animation-delay: -18s;
    opacity: 0.65;
}

.ambient-spark {
    position: absolute;
    color: var(--rose-dusty);
    font-size: clamp(14px, 2vw, 22px);
    opacity: 0.45;
    animation: ambient-sparkle 5.5s ease-in-out infinite;
}

.ambient-spark--1 {
    top: 28%;
    left: 22%;
    animation-delay: 0s;
}

.ambient-spark--2 {
    top: 55%;
    right: 22%;
    font-size: clamp(12px, 1.8vw, 18px);
    animation-delay: -2.2s;
}

.ambient-spark--3 {
    bottom: 35%;
    right: 38%;
    animation-delay: -3.8s;
}

@keyframes ambient-sketch-drift {
    0%,
    100% {
        transform: translate(0, 0) rotate(-6deg);
    }

    33% {
        transform: translate(-14px, 18px) rotate(-4deg);
    }

    66% {
        transform: translate(10px, -12px) rotate(-8deg);
    }
}

@keyframes ambient-sketch-drift-alt {
    0%,
    100% {
        transform: translate(0, 0) rotate(5deg);
    }

    50% {
        transform: translate(16px, -20px) rotate(8deg);
    }
}

@keyframes ambient-piece-float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(12px, -16px) scale(1.03);
    }

    50% {
        transform: translate(-8px, 10px) scale(0.98);
    }

    75% {
        transform: translate(14px, 8px) scale(1.02);
    }
}

@keyframes ambient-sparkle {
    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.92) rotate(0deg);
    }

    50% {
        opacity: 0.65;
        transform: scale(1.08) rotate(18deg);
    }
}

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

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

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

.container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.site-header {
    position: absolute;
    z-index: 20;
    inset: 0 0 auto;
    padding: 22px 0;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    min-width: 235px;
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.42));
}

.brand strong {
    display: block;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.brand small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.main-nav a {
    color: var(--white);
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 800;
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    background: var(--brand);
}

.menu-toggle,
.menu-button {
    display: none;
}

.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background-image: url("https://images.pexels.com/photos/13455394/pexels-photo-13455394.jpeg?auto=compress&cs=tinysrgb&w=1800");
    background-size: cover;
    background-position: center 38%;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 10;
    height: 16px;
    background: linear-gradient(
        90deg,
        var(--accent-soft) 0%,
        var(--brand-muted) 28%,
        var(--brand) 52%,
        var(--rose-dusty) 100%
    );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 82% 18%, rgba(232, 196, 205, 0.38), transparent 26%),
        radial-gradient(circle at 12% 48%, rgba(var(--brand-rgb), 0.45), transparent 32%),
        linear-gradient(90deg, rgba(35, 26, 24, 0.88) 0%, rgba(47, 32, 28, 0.62) 48%, rgba(62, 42, 38, 0.22) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.22;
    background:
        radial-gradient(ellipse 70% 55% at 75% 25%, rgba(255, 192, 205, 0.35), transparent 55%),
        radial-gradient(ellipse 50% 45% at 15% 70%, rgba(248, 186, 200, 0.28), transparent 50%);
    pointer-events: none;
    animation: hero-pink-pulse 14s ease-in-out infinite;
}

@keyframes hero-pink-pulse {
    0%,
    100% {
        opacity: 0.18;
    }

    50% {
        opacity: 0.32;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 90px;
}

.eyebrow,
.kicker {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;
    margin: 12px 0 22px;
    font-size: clamp(48px, 8vw, 88px);
    line-height: 0.93;
    letter-spacing: -0.07em;
}

.hero h1 span,
h2 .heading-highlight {
    color: var(--brand);
}

.heading-before + .heading-highlight::before {
    content: " ";
}

.hero-copy {
    max-width: 620px;
    padding-top: 18px;
    border-top: 2px solid var(--brand);
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: var(--white);
    background: var(--brand);
    box-shadow: 0 18px 34px rgba(var(--brand-rgb), 0.32);
}

.btn-primary:hover {
    background: var(--brand-dark);
}

.btn-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.intro-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(ellipse 120% 70% at 100% 0%, var(--pink-wash), transparent 42%),
        radial-gradient(ellipse 90% 55% at 0% 45%, var(--pink-soft), transparent 44%),
        radial-gradient(circle at 10% 14%, rgba(var(--accent-rgb), 0.22), transparent 26%),
        radial-gradient(circle at 92% 80%, rgba(232, 196, 205, 0.18), transparent 30%),
        radial-gradient(ellipse 55% 40% at 50% 100%, rgba(252, 210, 222, 0.22), transparent 55%),
        linear-gradient(180deg, var(--blush), var(--white));
}

/* Same pink sketch / blobs as fixed .ambient-bg, but clipped to this section */
.intro-section-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.intro-section-bg .intro-deco-sketch {
    position: absolute;
    color: var(--pink-sketch);
    opacity: 0.48;
    width: min(480px, 62%);
    height: auto;
    animation: ambient-sketch-drift 42s ease-in-out infinite;
}

.intro-section-bg .intro-deco-sketch--a {
    top: -4%;
    right: -12%;
    transform: rotate(-6deg);
}

.intro-section-bg .intro-deco-sketch--b {
    bottom: -8%;
    left: -14%;
    width: min(380px, 52%);
    opacity: 0.4;
    animation: ambient-sketch-drift-alt 52s ease-in-out infinite reverse;
    animation-delay: -10s;
}

.intro-section-bg .intro-deco-blob {
    position: absolute;
    border-radius: 58% 42% 48% 52% / 52% 48% 52% 48%;
    background:
        radial-gradient(
            ellipse at 35% 30%,
            rgba(255, 210, 220, 0.58),
            rgba(248, 185, 200, 0.26) 52%,
            transparent 72%
        );
    animation: ambient-piece-float 24s ease-in-out infinite;
}

.intro-section-bg .intro-deco-blob--1 {
    width: min(200px, 42vw);
    height: min(170px, 36vw);
    top: 6%;
    left: 4%;
    animation-duration: 26s;
    animation-delay: -3s;
}

.intro-section-bg .intro-deco-blob--2 {
    width: min(140px, 30vw);
    height: min(160px, 34vw);
    top: 52%;
    right: 2%;
    animation-duration: 30s;
    animation-delay: -12s;
    opacity: 0.88;
}

.intro-section-bg .intro-deco-blob--3 {
    width: min(110px, 26vw);
    height: min(130px, 28vw);
    bottom: 8%;
    left: 35%;
    animation-duration: 22s;
    animation-delay: -7s;
}

.intro-section-bg .intro-deco-spark {
    position: absolute;
    color: var(--rose-dusty);
    font-size: clamp(13px, 2.4vw, 20px);
    opacity: 0.5;
    animation: ambient-sparkle 5.5s ease-in-out infinite;
}

.intro-section-bg .intro-deco-spark--1 {
    top: 22%;
    left: 18%;
}

.intro-section-bg .intro-deco-spark--2 {
    top: 58%;
    right: 28%;
    font-size: clamp(11px, 2vw, 16px);
    animation-delay: -2s;
}

.intro-section-bg .intro-deco-spark--3 {
    bottom: 28%;
    right: 12%;
    animation-delay: -3.5s;
}

.intro-section > .container {
    position: relative;
    z-index: 2;
}

.intro-section::before,
.culture-section::before,
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.11;
    background-image:
        repeating-linear-gradient(90deg, transparent 0 22px, rgba(var(--brand-rgb), 0.28) 22px 24px),
        repeating-linear-gradient(0deg, transparent 0 22px, rgba(184, 149, 158, 0.2) 22px 24px);
}

.intro-section::before {
    z-index: 0;
}

.split-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 86px;
}

.copy-block h2,
.section-heading h2,
.process-intro h2 {
    position: relative;
    display: inline-block;
    margin: 8px 0 26px;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.process-intro h2 .highlight {
    display: inline-block;
    padding: 8px 14px;
    margin-right: 8px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c4a8b0, var(--rose-dusty));
    color: var(--white);
    box-shadow: 0 18px 40px rgba(91, 62, 72, 0.22);
}

.process-intro h2 .accent {
    color: var(--brand);
}

.copy-block h2::after,
.section-heading h2::after,
.process-intro h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: min(100%, 330px);
    height: 2px;
    background: linear-gradient(90deg, var(--brand), var(--gold));
}

.copy-block p,
.section-heading p,
.process-intro p {
    max-width: 620px;
    margin-bottom: 18px;
    color: var(--muted);
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.mini-stats div {
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 42px rgba(var(--brand-rgb), 0.06);
}

.mini-stats strong {
    display: block;
    color: var(--brand);
    font-size: 25px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.mini-stats small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px 32px 6px 32px;
    min-height: 440px;
    box-shadow: var(--shadow);
    background: var(--cream);
}

.feature-card::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px 24px 4px 24px;
    pointer-events: none;
}

.feature-card img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.ribbon-card {
    position: absolute;
    z-index: 3;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 18px;
    color: var(--white);
    background: rgba(31, 24, 22, 0.88);
    border-left: 5px solid var(--brand);
    backdrop-filter: blur(8px);
}

.ribbon-card strong,
.ribbon-card span {
    display: block;
}

.ribbon-card span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.services-section {
    padding: 96px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 12%, rgba(var(--accent-rgb), 0.16), transparent 24%),
        radial-gradient(circle at 9% 22%, rgba(var(--brand-rgb), 0.22), transparent 26%),
        linear-gradient(165deg, #2a2220 0%, #1a1514 100%);
}

.section-heading {
    margin-bottom: 42px;
    text-align: center;
}

.section-heading.left {
    text-align: left;
}

.services-section .section-heading p {
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.68);
}

.service-grid {
    display: grid;
    grid-template-columns: 1.15fr repeat(2, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 250px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.03);
    overflow: hidden;
    position: relative;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -46px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 26px solid rgba(var(--brand-rgb), 0.16);
}

.service-card.featured {
    grid-row: span 2;
    padding: 0;
    min-height: 518px;
}

.service-card.featured img {
    width: 100%;
    height: 100%;
    min-height: 518px;
    object-fit: cover;
}

.service-card.featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.82));
}

.service-card.featured div {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
}

.service-card small {
    display: block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 8px 0 12px;
    font-size: 32px;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.service-card p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.72);
}

.icon-badge {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    color: var(--brand);
    background: var(--brand-soft);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
}

.culture-section {
    position: relative;
    overflow: hidden;
    background: var(--paper);
}

.culture-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 190px;
    gap: 14px;
}

.culture-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 42px rgba(42, 34, 32, 0.08);
}

.culture-photo-grid .large {
    grid-row: span 2;
    border-radius: 6px 44px 6px 6px;
}

.culture-photo-grid img:nth-child(2) {
    border-radius: 44px 6px 6px 6px;
}

.culture-photo-grid img:nth-child(3) {
    border-radius: 6px 6px 44px 6px;
}

.text-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--brand);
    font-weight: 900;
    border-bottom: 2px solid var(--brand);
}

.process-section {
    padding: 96px 0;
    color: var(--white);
    background:
        linear-gradient(rgba(15, 16, 18, 0.88), rgba(15, 16, 18, 0.88)),
        url("https://images.pexels.com/photos/6461121/pexels-photo-6461121.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover;
}

.process-wrap {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 70px;
    align-items: start;
}

.process-intro p {
    color: rgba(255, 255, 255, 0.72);
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline article {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 20px;
    align-items: start;
    padding: 26px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 22px;
}

.timeline article span {
    grid-row: 1 / span 2;
}

.timeline article h3,
.timeline article p {
    grid-column: 2;
}

.timeline span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 2px solid var(--brand);
    border-radius: 50%;
    font-weight: 900;
}

.timeline h3 {
    margin-bottom: 6px;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.timeline p {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-section {
    padding: 96px 0 0;
    background: var(--paper);
}

.gallery-section .section-heading {
    margin-bottom: 40px;
}

.marquee {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
}

.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(120px, 14vw);
    z-index: 5;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(31, 24, 22, 1), rgba(31, 24, 22, 0));
}

.marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(31, 24, 22, 1), rgba(31, 24, 22, 0));
}

.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    will-change: transform;
}

body.assets-ready .marquee-track {
    animation: gallery-marquee 32s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee figure {
    position: relative;
    width: clamp(260px, 30vw, 420px);
    height: 295px;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.marquee figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.8));
}

.marquee figcaption {
    position: absolute;
    z-index: 2;
    left: 22px;
    bottom: 20px;
    color: var(--white);
    font-weight: 900;
}

.marquee figure:hover img {
    transform: scale(1.08);
}

@keyframes gallery-marquee {
    from {
        transform: translateX(0);
    }

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

/* Scroll reveal — transitions only after assets load */
.reveal {
    opacity: 0;
    transform: translateY(18px);
}

body.assets-ready .reveal {
    transition: opacity 700ms ease, transform 700ms ease;
}

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

/* Hold decorative and section motion until assets are ready */
body:not(.assets-ready) .ambient-sketch,
body:not(.assets-ready) .ambient-piece,
body:not(.assets-ready) .ambient-spark,
body:not(.assets-ready) .intro-section-bg .intro-deco-sketch,
body:not(.assets-ready) .intro-section-bg .intro-deco-blob,
body:not(.assets-ready) .intro-section-bg .intro-deco-spark,
body:not(.assets-ready) .hero::before,
body:not(.assets-ready) .marquee-track {
    animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
    body.assets-ready .marquee-track,
    .marquee-track {
        animation: none;
    }

    body.assets-ready .reveal,
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    body.assets-ready .ambient-sketch,
    body.assets-ready .ambient-piece,
    body.assets-ready .ambient-spark,
    body.assets-ready .intro-section-bg .intro-deco-sketch,
    body.assets-ready .intro-section-bg .intro-deco-blob,
    body.assets-ready .intro-section-bg .intro-deco-spark,
    body.assets-ready .hero::before,
    .ambient-sketch,
    .ambient-piece,
    .ambient-spark,
    .intro-section-bg .intro-deco-sketch,
    .intro-section-bg .intro-deco-blob,
    .intro-section-bg .intro-deco-spark,
    .hero::before {
        animation: none;
    }
}

.contact-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white), var(--accent-soft));
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    margin-top: 28px;
    padding: 24px;
    background: var(--cream);
    border-left: 6px solid var(--brand);
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 34px;
    color: var(--white);
    background: var(--charcoal);
    border-top: 8px solid var(--brand);
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    outline: none;
}

.contact-form select option {
    color: var(--ink);
}

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

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
    gap: 54px;
    padding: 66px 0;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 900;
}

.footer-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.site-footer p,
.site-footer a,
.site-footer span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
    margin-bottom: 16px;
    color: var(--white);
}

.site-footer a:not(.footer-brand) {
    margin: 8px 0;
}

.site-footer a:hover {
    color: var(--brand);
}

.footer-bottom {
    padding: 14px 0;
    color: var(--white);
    background: linear-gradient(90deg, var(--rose-dusty), var(--brand), #e8b4a8);
    font-size: 13px;
}

.footer-bottom p {
    color: var(--white);
}

@media (max-width: 980px) {
    .menu-button {
        position: relative;
        z-index: 22;
        display: grid;
        place-items: center;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.25);
        cursor: pointer;
    }

    .menu-button span,
    .menu-button span::before,
    .menu-button span::after {
        content: "";
        display: block;
        width: 20px;
        height: 2px;
        background: var(--white);
        transition: 0.2s ease;
    }

    .menu-button span::before {
        transform: translateY(-7px);
    }

    .menu-button span::after {
        transform: translateY(5px);
    }

    .main-nav {
        position: absolute;
        top: 84px;
        right: 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: min(280px, calc(100vw - 48px));
        padding: 14px;
        border-radius: 18px;
        background: rgba(13, 15, 18, 0.96);
    }

    .main-nav a {
        border-radius: 12px;
    }

    .menu-toggle:checked ~ .main-nav {
        display: flex;
    }

    .split-grid,
    .process-wrap,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .service-card.featured,
    .service-card.featured img {
        min-height: 390px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 32px, 1120px);
    }

    .brand {
        min-width: auto;
    }

    .brand strong {
        font-size: 17px;
    }

    .brand small {
        font-size: 9px;
        letter-spacing: 0.09em;
    }

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

    .hero h1 {
        font-size: 50px;
    }

    .hero-copy {
        font-size: 15px;
    }

    .section,
    .services-section,
    .process-section {
        padding: 72px 0;
    }

    .gallery-section {
        padding-top: 72px;
    }

    .copy-block h2,
    .section-heading h2,
    .process-intro h2 {
        font-size: 43px;
    }

    .mini-stats,
    .service-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: span 1;
    }

    .culture-photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .culture-photo-grid .large,
    .culture-photo-grid img:nth-child(2),
    .culture-photo-grid img:nth-child(3) {
        grid-row: span 1;
        height: 260px;
        border-radius: 24px;
    }

    .timeline article {
        grid-template-columns: 1fr;
    }

    .gallery-grid figure {
        height: 230px;
    }

    .contact-form {
        padding: 24px;
    }
}
