:root {
    --bg: #eee4d6;
    --bg-soft: #f5eee5;
    --surface: #faf6f0;
    --ink: #262322;
    --muted: #6d635c;
    --line: rgba(38, 35, 34, 0.14);
    --dark: #232228;
    --dark-soft: #2d2b31;
    --accent: #ae8966;
    --white: #fffdf8;
    --shadow: 0 24px 60px rgba(29, 20, 16, 0.14);
    --hero-height: min(100svh, 900px);
    --container: min(1180px, calc(100% - 54px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

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

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

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    background: var(--dark);
    color: var(--white);
    padding: 10px 14px;
    z-index: 200;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 14px 0;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(35, 34, 40, 0.78);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.header-inner,
.intro,
.section-head,
.footer-grid,
.cta-panel,
.contact-section,
.portfolio-list {
    width: var(--container);
    margin: 0 auto;
}
.intro{
 width: 100% !important;
}
.what-we-do{
  width: 100% !important;  
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-logo {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.site-logo img {
    width: auto;
    height: 34px;
    max-width: min(48vw, 250px);
    object-fit: contain;
}

.brand-text,
.site-nav a,
.eyebrow,
.section-label,
.footer-kicker {
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: 0.68rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    margin-right: auto;
}

.site-nav a {
    position: relative;
    min-height: 36px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    color:white !important;
}

.site-nav a::after {
    display: none;
}

.site-nav a:hover,
.site-nav a.active {
    background: rgba(255, 255, 255, 0.14);
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--white);
}

.header-meta p {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
}

.header-cta {
    min-height: 40px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    border-radius: 999px;
    padding: 0;
    z-index: 2;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero,
.inner-hero {
    position: relative;
    min-height: var(--hero-height);
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-media,
.portfolio-hero,
.contact-hero,
.image-architecture,
.image-interior,
.image-furniture,
.image-villa,
.image-courtyard,
.image-wood,
.image-earth,
.image-studio,
.image-stair,
.image-vase,
.image-aside,
.image-portrait,
.image-mini-room {
    background-size: cover;
    background-position: center;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(126, 151, 181, 0.08), rgba(30, 24, 22, 0.12)),
        url('../banner/banner1.png');
    transform: scale(1.02);
}

.hero-overlay,
.inner-hero::before {
    position: absolute;
    inset: 0;
    content: '';
    background:
        radial-gradient(circle at 50% 26%, rgba(255, 246, 233, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(87, 122, 171, 0.22), rgba(27, 20, 18, 0.48));
}

.hero-content,
.inner-hero-copy {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100% - 48px));
    text-align: center;
    color: var(--white);
}

.hero h1,
.inner-hero h1,
.intro h2,
.section-head h2,
.cta-copy h2,
.portfolio-text h2,
.contact-card h2 {
    font-family: 'Bodoni Moda', serif;
    line-height: 0.95;
    font-weight: 500;
    margin: 0;
}

.hero h1 {
    font-size: clamp(6rem, 20vw, 15rem);
    letter-spacing: 0.09em;
    font-style: italic;
    color: rgba(255, 255, 255, 0.96);
}

.hero-subtitle,
.inner-hero-copy p,
.service-copy p,
.portfolio-text p,
.contact-card p,
.footer-copy {
    color: rgba(255, 255, 255, 0.84);
}

.hero-subtitle {
    max-width: 420px;
    margin: 20px auto 0;
    font-size: 0.96rem;
}

.hero-pill,
.project-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(120, 88, 68, 0.34);
    backdrop-filter: blur(18px);
    color: var(--white);
    box-shadow: 0 18px 45px rgba(22, 14, 10, 0.18);
}

.hero-pill {
    left: 26%;
    top: 41%;
    min-height: 46px;
    padding: 0 16px 0 12px;
    gap: 10px;
}

.hero-pill p {
    margin: 0;
    font-size: 0.92rem;
}

.hero-pill-avatars {
    display: flex;
}

.hero-pill-avatars span {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background-size: cover;
    background-position: center;
}

.hero-pill-avatars span:first-child {
    background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=200&q=80');
}

.hero-pill-avatars span:last-child {
    margin-left: -8px;
    background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=200&q=80');
}

.hero-points {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-point {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.hero-point::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
}

.point-one {
    left: 19%;
    top: 46%;
}

.point-two {
    left: 55%;
    top: 41%;
}

.point-three {
    left: 46%;
    top: 62%;
}

.point-four {
    right: 15%;
    top: 50%;
}

.point-five {
    right: 28%;
    top: 62%;
}

.point-six {
    right: 11%;
    top: 67%;
}

.project-card {
    right: 19%;
    bottom: 18%;
    width: min(100%, 338px);
    padding: 14px;
    align-items: stretch;
    gap: 14px;
}

.project-card-thumb {
    width: 108px;
    min-width: 108px;
    border-radius: 16px;
    background-image: url('../work/work.jpg'); 
    background-size: cover;
    background-position: 52% 58%;
}

.project-card-copy h2 {
    margin: 0 0 10px;
    font-size: 1.9rem;
    line-height: 0.95;
    color: var(--white);
}

.project-card-copy p {
    margin: 0 0 6px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-year {
    position: absolute;
    right: clamp(24px, 4vw, 58px);
    top: 170px;
    z-index: 1;
    color: transparent;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
}

.hero-year::before {
    content: '\00A9 2025';
    color: rgba(255, 255, 255, 0.92);
}

.hero-footer {
    position: absolute;
    left: clamp(24px, 4vw, 58px);
    right: clamp(24px, 4vw, 58px);
    bottom: 24px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    color: var(--white);
}

.hero-footer p,
.hero-footer span {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.88rem;
}

.hero-footer span {
    white-space: nowrap;
}

.section-pad {
    padding: 98px 0;
}

.intro h2,
.section-head h2,
.cta-copy h2,
.portfolio-text h2,
.contact-card h2 {
    font-size: clamp(2.4rem, 4.8vw, 4.8rem);
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.intro p,
.portfolio-text p,
.contact-card p {
    color: var(--muted);
}

.intro-marker {
    margin: 0;
    color: #3b3735;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
}

.intro {
    background: #f9f7f3;
}

.intro-wrap {
    width: min(1340px, calc(100% - 64px));
    margin: 0 auto;
}

.intro-top {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 64px;
    gap: 28px;
    align-items: start;
    margin-bottom: 34px;
}

.intro-copy h2 {
    max-width: 920px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.9rem, 5vw, 3.1rem);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -0.05em;
    color: #211f1e;
}

.intro-copy h2 span {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    font-weight: 500;
}

.intro-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-left: auto;
    border: 1px solid rgba(38, 35, 34, 0.22);
    border-radius: 999px;
    color: #6f6760;
    font-size: 1.35rem;
}

.intro-bottom {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 70px 230px;
    gap: 36px;
    align-items: center;
}

.intro-seal {
    display: flex;
    justify-content: center;
}

.seal-ring {
    min-width: 210px;
    min-height: 108px;
    padding: 20px 30px;
    position: relative;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 238, 229, 0.92));
    border: 1px solid rgba(38, 35, 34, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(34, 28, 24, 0.08);
}

.seal-ring span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 0.47rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #58524d;
}

.seal-ring span:last-child {
    transform: rotate(180deg);
}

.seal-ring img {
    width: 152px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(34, 28, 24, 0.14));
}

.intro-story {
    position: relative;
    min-height: 260px;
    display: grid;
    place-items: center;
}

.intro-graphic {
    position: absolute;
    inset: 0;
}

.graphic-line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 170px;
    height: 1px;
    background: rgba(38, 35, 34, 0.08);
}

.graphic-circle {
    position: absolute;
    left: 100px;
    top: 14px;
    width: 205px;
    height: 205px;
    border: 1px solid rgba(38, 35, 34, 0.08);
    border-radius: 999px;
}

.intro-story p {
    position: relative;
    z-index: 1;
    max-width: 340px;
    margin: 0 auto;
    font-size: 1.06rem;
    line-height: 1.72;
    color: #373331;
}

.intro-stars {
    font-size: 2rem;
    letter-spacing: 0.28em;
    color: #2d2927;
    text-align: center;
}

.intro-card {
    justify-self: end;
}

.intro-card-image {
    width: 288px;
    height: 324px;
    background-image: url('../img/IMG_5326.jpg');
    background-size: cover;
    background-position: 76% 46%;
}

.intro-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    color: #2f2c2a;
    font-size: 0.88rem;
}

.dark-showcase,
.what-we-do,
.cta-shell,
.site-footer {
    background: var(--dark);
    color: var(--white);
}

.what-we-do {
    position: relative;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.what-we-do::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.what-we-do-head,
.what-we-do-stack {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.what-we-do-head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.72fr);
    gap: 36px;
    align-items: start;
    margin-bottom: 46px;
}

.what-we-do-head h2 {
    margin: 10px 0 0;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 500;
}

.what-we-do-head h2 span {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    font-weight: 500;
}

.what-we-do-intro {
    max-width: 360px;
    justify-self: end;
}

.what-we-do-intro p {
    margin: 0 0 18px;
    color: rgba(255, 253, 248, 0.72);
}

.what-we-do-intro a,
.project-slider-copy a {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 253, 248, 0.92);
    border-bottom: 1px solid rgba(255, 253, 248, 0.26);
    padding-bottom: 4px;
}

.what-we-do-stack {
    display: grid;
    gap: 0;
}

.project-slider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0 24px;
}

.project-slider:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-slider-meta {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    margin-bottom: 18px;
}

.project-slider-kicker {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.project-slider-copy {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
}

.project-slider-copy h3 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.project-slider-body {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 42px;
    gap: 22px;
    align-items: stretch;
}

.project-slider-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}

.project-slider-side p {
    margin: 0;
    max-width: 150px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.7;
}

.slider-arrow {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: var(--white);
    display: inline-grid;
    place-items: center;
    font: inherit;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.slider-arrow:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.34);
}

.slider-arrow-next {
    align-self: start;
}

.project-slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 72%);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
}

.project-slider-track::-webkit-scrollbar {
    display: none;
}

.project-slide {
    scroll-snap-align: start;
}

.project-slide-media {
    min-height: 420px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
    transform: translateY(22px) scale(0.98);
    opacity: 0;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
    will-change: transform, opacity;
}

.project-slider.is-visible .project-slide-media {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.project-slider.is-visible .project-slide:nth-child(2) .project-slide-media {
    transition-delay: 0.12s;
}

.project-slider.is-visible .project-slide:nth-child(3) .project-slide-media {
    transition-delay: 0.24s;
}

.project-slider.is-visible .project-slide:nth-child(4) .project-slide-media {
    transition-delay: 0.36s;
}

.image-residential-one {
    background-image: linear-gradient(180deg, rgba(28, 22, 20, 0.06), rgba(28, 22, 20, 0.14)), url('../portfolio/1/rn_image_picker_lib_temp_322301fe-386e-4b9d-a78a-d47a7101999b.jpg');
}

.image-residential-two {
    background-image: linear-gradient(180deg, rgba(28, 22, 20, 0.05), rgba(28, 22, 20, 0.14)), url('../portfolio/1/rn_image_picker_lib_temp_3cea9693-0db1-4afc-9f79-ff2e09a1acbc.jpg');
}

.image-residential-three {
    background-image: linear-gradient(180deg, rgba(28, 22, 20, 0.06), rgba(28, 22, 20, 0.14)), url('../portfolio/1/rn_image_picker_lib_temp_5466b3f0-b1f0-474d-a0d9-dffc4b7564c6.jpg');
}

.image-residential-four {
    background-image: linear-gradient(180deg, rgba(28, 22, 20, 0.06), rgba(28, 22, 20, 0.14)), url('../portfolio/1/rn_image_picker_lib_temp_748b137a-490e-4b2b-a743-be89c93e2789.jpg');
}

.image-commercial-one {
    background-image: linear-gradient(180deg, rgba(28, 22, 20, 0.05), rgba(28, 22, 20, 0.14)), url('../portfolio/2/rn_image_picker_lib_temp_217f6c49-01ba-4d49-8431-19d23c4b9ae0.jpg');
}

.image-commercial-two {
    background-image: linear-gradient(180deg, rgba(28, 22, 20, 0.05), rgba(28, 22, 20, 0.14)), url('../portfolio/2/rn_image_picker_lib_temp_23ab742a-1a88-4310-af57-5b235384f225.jpg');
}

.image-commercial-three {
    background-image: linear-gradient(180deg, rgba(28, 22, 20, 0.05), rgba(28, 22, 20, 0.14)), url('../portfolio/2/rn_image_picker_lib_temp_278ad4d6-9ba8-42fb-a0eb-8a963ebfffcd.jpg');
}

.image-commercial-four {
    background-image: linear-gradient(180deg, rgba(28, 22, 20, 0.05), rgba(28, 22, 20, 0.14)), url('../portfolio/2/rn_image_picker_lib_temp_4667b3b6-c653-4d5d-8d4c-2128876b76a7.jpg');
}

.section-head {
    margin-bottom: 38px;
    display: grid;
    gap: 18px;
}

.services-tabs {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.service-stack {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    gap: 26px;
}

.service-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.6fr);
    gap: 22px;
    align-items: stretch;
}

.service-copy,
.service-image,
.cta-image,
.portfolio-image,
.masonry-card,
.contact-card,
.contact-form {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-copy {
    padding: 34px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: none;
}

.service-index {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.62);
}

.service-copy h3 {
    margin: 12px 0;
    font-family: 'Bodoni Moda', serif;
    font-size: 1.9rem;
    font-weight: 500;
}

.service-image {
    min-height: 300px;
}

.image-architecture {
    background-image: linear-gradient(180deg, rgba(28, 22, 20, 0.08), rgba(28, 22, 20, 0.18)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1400&q=80');
}

.image-interior {
    background-image: linear-gradient(180deg, rgba(28, 22, 20, 0.04), rgba(28, 22, 20, 0.12)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1400&q=80');
}

.image-furniture {
    background-image: linear-gradient(180deg, rgba(28, 22, 20, 0.04), rgba(28, 22, 20, 0.12)), url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1400&q=80');
}

.portfolio-preview {
    background: var(--bg-soft);
}

.our-projects {
    background: #f7f3ee;
    content-visibility: auto;
    contain-intrinsic-size: 1400px;
}

.portfolio-projects {
    min-height: 100svh;
}

.portfolio-switch {
    width: var(--container);
    margin: 0 auto 28px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-switch-tab {
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(38, 35, 34, 0.1);
    background: rgba(255, 255, 255, 0.6);
    color: rgba(38, 35, 34, 0.68);
    font: inherit;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.portfolio-switch-tab:hover,
.portfolio-switch-tab.is-active {
    background: #ffffff;
    border-color: rgba(38, 35, 34, 0.18);
    color: #1f1c1b;
    transform: translateY(-1px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.our-projects-head,
.projects-board {
    width: var(--container);
    margin: 0 auto;
}

.projects-board {
    width: 100%;
    margin: 0;
}

.our-projects-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 34px;
    align-items: start;
    margin-bottom: 42px;
}

.our-projects-head h2 {
    margin: 10px 0 0;
    font-size: clamp(2.5rem, 4.9vw, 4.3rem);
    line-height: 1.06;
    letter-spacing: -0.05em;
    color: #1f1c1b;
    font-weight: 500;
}

.our-projects-head h2 span {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    font-weight: 500;
}

.our-projects-controls {
    display: grid;
    gap: 18px;
}

.project-search {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(38, 35, 34, 0.14);
    padding-bottom: 10px;
}

.project-search::before {
    content: '';
    width: 15px;
    height: 15px;
    border: 1.5px solid rgba(38, 35, 34, 0.48);
    border-radius: 999px;
    flex: 0 0 auto;
    margin-top: -2px;
    box-sizing: border-box;
}

.project-search::after {
    content: '';
    width: 8px;
    height: 1.5px;
    background: rgba(38, 35, 34, 0.48);
    transform: translateX(-22px) translateY(6px) rotate(45deg);
    flex: 0 0 auto;
}

.project-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 0;
    background: transparent;
    font: inherit;
    color: var(--ink);
    outline: none;
}

.project-search input::placeholder {
    color: rgba(38, 35, 34, 0.44);
}

.project-search-action {
    white-space: nowrap;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3a3633;
}

.project-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(38, 35, 34, 0.64);
    font-size: 0.76rem;
}

.project-filter {
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(38, 35, 34, 0.08);
    background: rgba(255, 255, 255, 0.6);
    color: rgba(38, 35, 34, 0.54);
    font: inherit;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.project-filter:hover,
.project-filter.is-active {
    background: #ffffff;
    border-color: rgba(38, 35, 34, 0.16);
    color: #1f1c1b;
    transform: translateY(-1px);
}

.projects-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    content-visibility: auto;
    contain-intrinsic-size: 1200px;
}

.project-tile {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.54)),
        linear-gradient(135deg, rgba(174, 137, 102, 0.06), rgba(38, 35, 34, 0.02));
    border: 1px solid rgba(38, 35, 34, 0.08);
    box-shadow: 0 22px 50px rgba(31, 24, 20, 0.08);
    position: relative;
    overflow: hidden;
    transition: opacity 0.32s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.project-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.52) 48%, transparent 76%);
    transform: translateX(-130%);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.project-tile:hover {
    transform: translateY(-8px);
    border-color: rgba(38, 35, 34, 0.14);
    box-shadow: 0 30px 65px rgba(31, 24, 20, 0.14);
}

.project-tile:hover::before {
    transform: translateX(130%);
}

.project-tile.is-hidden {
    display: none;
}

.project-tile-image {
    aspect-ratio: 1 / 1.06;
    width: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: opacity 0.35s ease;
}

.project-tile-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 26px;
    color: #262322;
}

.project-tile-info .full {
    grid-column: 1 / -1;
}

.project-tile-info span {
    display: block;
    margin-bottom: 5px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(38, 35, 34, 0.58);
}

.project-tile-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #1e1a19;
}

.project-tile:hover .project-tile-image {
    opacity: 0.98;
}

.project-tile.reveal {
    transform: translateY(52px) rotate(0.8deg);
}

.project-tile.reveal.is-visible {
    transform: translateY(0) rotate(0deg);
}

.project-tile:nth-child(2).reveal,
.project-tile:nth-child(5).reveal {
    transform: translateY(60px) rotate(-0.8deg);
}

.project-tile:nth-child(2).reveal.is-visible,
.project-tile:nth-child(5).reveal.is-visible {
    transform: translateY(0) rotate(0deg);
}

.projects-empty {
    width: var(--container);
    margin: 24px auto 0;
    color: rgba(38, 35, 34, 0.58);
}

.image-project-one {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.14)), url('../portfolio/1/rn_image_picker_lib_temp_7d8d5c9e-0f1e-48a4-83a2-6355e6e910ca.jpg');
}

.image-project-two {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/1/rn_image_picker_lib_temp_b639d6ab-4cf4-492f-a0eb-8aa856781ae7.jpg');
}

.image-project-three {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/1/rn_image_picker_lib_temp_c27eac14-18e4-4607-b04f-61053fd57dfe.jpg');
}

.image-project-four {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/2/rn_image_picker_lib_temp_98c0bf08-7644-43cc-9f8c-5ef3858e5650.jpg');
}

.image-project-five {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/2/rn_image_picker_lib_temp_a6421dde-de6d-42a4-8356-e86a53f75f67.jpg');
}

.image-project-six {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/2/rn_image_picker_lib_temp_b691bf8f-b3d1-41f4-b28d-f2ae81bba3d4.jpg');
}

.image-portfolio-one {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/1/rn_image_picker_lib_temp_322301fe-386e-4b9d-a78a-d47a7101999b.jpg');
}

.image-portfolio-two {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/1/rn_image_picker_lib_temp_3cea9693-0db1-4afc-9f79-ff2e09a1acbc.jpg');
}

.image-portfolio-three {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/1/rn_image_picker_lib_temp_5466b3f0-b1f0-474d-a0d9-dffc4b7564c6.jpg');
}

.image-portfolio-four {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/1/rn_image_picker_lib_temp_748b137a-490e-4b2b-a743-be89c93e2789.jpg');
}

.image-portfolio-five {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/2/rn_image_picker_lib_temp_217f6c49-01ba-4d49-8431-19d23c4b9ae0.jpg');
}

.image-portfolio-six {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/2/rn_image_picker_lib_temp_23ab742a-1a88-4310-af57-5b235384f225.jpg');
}

.image-portfolio-seven {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/2/rn_image_picker_lib_temp_278ad4d6-9ba8-42fb-a0eb-8a963ebfffcd.jpg');
}

.image-portfolio-eight {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/2/rn_image_picker_lib_temp_4667b3b6-c653-4d5d-8d4c-2128876b76a7.jpg');
}

.image-portfolio-nine {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/1/rn_image_picker_lib_temp_7d8d5c9e-0f1e-48a4-83a2-6355e6e910ca.jpg');
}

.image-portfolio-ten {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/1/rn_image_picker_lib_temp_b639d6ab-4cf4-492f-a0eb-8aa856781ae7.jpg');
}

.image-portfolio-eleven {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/2/rn_image_picker_lib_temp_98c0bf08-7644-43cc-9f8c-5ef3858e5650.jpg');
}

.image-portfolio-twelve {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/2/rn_image_picker_lib_temp_a6421dde-de6d-42a4-8356-e86a53f75f67.jpg');
}

.portfolio-story-head {
    width: var(--container);
    margin: 0 auto 38px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.7fr);
    gap: 28px;
    align-items: end;
}

.story-copy {
    color: var(--muted);
    max-width: 340px;
    justify-self: end;
}

.masonry-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.masonry-card {
    min-height: 280px;
    position: relative;
}

.masonry-card.tall {
    min-height: 430px;
}

.card-caption {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 20px;
    color: var(--white);
    background: linear-gradient(180deg, transparent, rgba(16, 14, 15, 0.72));
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.image-villa {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.08), rgba(24, 18, 16, 0.18)), url('https://images.unsplash.com/photo-1600607687644-c7171b42498f?auto=format&fit=crop&w=1200&q=80');
}

.image-courtyard {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.06), rgba(24, 18, 16, 0.14)), url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1200&q=80');
}

.image-wood {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.05), rgba(24, 18, 16, 0.12)), url('https://images.unsplash.com/photo-1615529182904-14819c35db37?auto=format&fit=crop&w=1200&q=80');
}

.image-earth {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.05), rgba(24, 18, 16, 0.12)), url('https://images.unsplash.com/photo-1615874959474-d609969a20ed?auto=format&fit=crop&w=1200&q=80');
}

.image-studio {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.05), rgba(24, 18, 16, 0.12)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=80');
}

.image-stair {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.05), rgba(24, 18, 16, 0.12)), url('https://images.unsplash.com/photo-1616594039964-3b4f3b0e4b1d?auto=format&fit=crop&w=1200&q=80');
}

.testimonial-band {
    background: linear-gradient(180deg, #faf7f3, #f6f0e9);
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.testimonial-shell {
    width: min(1440px, calc(100% - 54px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.testimonial-kicker-col .section-label {
    color: #383432;
}

.testimonial-kicker-col .section-label span {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
}

.testimonial-slider {
    position: relative;
    min-height: 620px;
}

.testimonial-slide {
    display: none;
    position: relative;
}

.testimonial-slide.is-active {
    display: block;
    animation: testimonialFade 0.7s ease;
}

.testimonial-quote-mark,
.testimonial-closing {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    line-height: 0.8;
    color: #1f1b1a;
}

.testimonial-quote-mark {
    position: absolute;
    left: 0;
    top: 0;
}

.testimonial-slide-grid {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 220px;
    gap: 34px;
    align-items: start;
    padding-top: 32px;
}

.testimonial-persona {
    display: grid;
    gap: 14px;
    align-content: end;
    padding-top: 150px;
}

.testimonial-avatar,
.testimonial-project {
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.testimonial-avatar {
    width: 102px;
    height: 114px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    font-size: 2rem;
    font-weight: 700;
    color: #fffdf8;
    text-transform: uppercase;
    overflow: hidden;
}

.testimonial-stars {
    letter-spacing: 0.28em;
    color: #1f1b1a;
    font-size: 1.4rem;
}

.testimonial-arrow {
    width: 48px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(38, 35, 34, 0.28);
    background: rgba(255, 255, 255, 0.48);
    color: #3b3735;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.testimonial-arrow:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(38, 35, 34, 0.44);
}

.testimonial-copy {
    padding-top: 18px;
}

.testimonial-quote {
    margin: 0;
    color: #1f1c1b;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.6rem, 4.6vw, 2rem);
    line-height: 1.14;
    letter-spacing: -0.06em;
    max-width: 860px;
}

.testimonial-quote span {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    font-weight: 500;
}

.testimonial-signoff {
    display: grid;
    grid-template-columns: auto minmax(100px, 250px) auto;
    gap: 20px;
    align-items: center;
    margin-top: 44px;
}

.testimonial-signoff p {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2rem);
    letter-spacing: -0.05em;
    color: #2a2624;
}

.testimonial-line {
    height: 1px;
    background: rgba(38, 35, 34, 0.12);
}

.testimonial-preview {
    display: grid;
    gap: 16px;
    justify-items: end;
}

.testimonial-count {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    color: #231f1e;
    justify-self: start;
}

.testimonial-count span {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    font-style: italic;
    line-height: 1;
}

.testimonial-count small {
    font-size: 0.9rem;
    color: rgba(35, 31, 30, 0.52);
}

.testimonial-arrow-next {
    justify-self: end;
}

.testimonial-project {
    width: 100%;
    aspect-ratio: 0.86;
}

.testimonial-preview-meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.92rem;
    color: #262322;
}

.image-testimonial-avatar-one {
    background: linear-gradient(135deg, #0c6156, #0e4c44);
}

.image-testimonial-avatar-two {
    background: linear-gradient(135deg, #6b4434, #2d1c17);
}

.image-testimonial-avatar-three {
    background: linear-gradient(135deg, #7c5b47, #3e2c22);
}

.image-testimonial-avatar-four {
    background: linear-gradient(135deg, #b86b3c, #6e3513);
}

.image-testimonial-project-one {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/1/rn_image_picker_lib_temp_c4e46fad-cfd4-4fe9-8c21-c0782db77779.jpg');
}

.image-testimonial-project-two {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/2/rn_image_picker_lib_temp_98c0bf08-7644-43cc-9f8c-5ef3858e5650.jpg');
}

.image-testimonial-project-three {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/1/rn_image_picker_lib_temp_c77faaa4-ff3c-424c-b408-db939265b985.jpg');
}

.image-testimonial-project-four {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('../portfolio/2/rn_image_picker_lib_temp_b691bf8f-b3d1-41f4-b28d-f2ae81bba3d4.jpg');
}

@keyframes testimonialFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
    gap: 28px;
    align-items: stretch;
}

.cta-copy {
    align-self: center;
}

.cta-copy h2 span {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    font-weight: 500;
}

.cta-kicker-line {
    width: 110px;
    height: 1px;
    margin: 12px 0 18px;
    background: rgba(255, 255, 255, 0.24);
}

.cta-lead {
    max-width: 500px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.75;
}

.cta-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.cta-metric {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.cta-metric strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fffdf8;
}

.cta-metric span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.55;
}

.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    margin-top: 14px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    color: var(--white);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.button-link:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.cta-image {
    min-height: 360px;
}

.cta-visual {
    position: relative;
    display: grid;
    align-items: end;
}

.cta-floating-note {
    position: absolute;
    left: -28px;
    bottom: 24px;
    width: min(250px, 72%);
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
    animation: softFloat 4.8s ease-in-out infinite;
}

.cta-floating-note span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.cta-floating-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    line-height: 1.6;
}

.image-vase {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.05), rgba(24, 18, 16, 0.18)), url('../portfolio/1/rn_image_picker_lib_temp_c4e46fad-cfd4-4fe9-8c21-c0782db77779.jpg');
}

.image-aside {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.14)), url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1000&q=80');
}

.image-portrait {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.03), rgba(24, 18, 16, 0.1)), url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=800&q=80');
}

.image-mini-room {
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.12)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=800&q=80');
}

.site-footer {
    padding: 28px 32px 18px;
    background: #232228;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top,
.footer-visual-row,
.footer-bottom {
    width: 100%;
    max-width: 1368px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(360px, 1fr);
    gap: 68px;
    align-items: start;
    margin-bottom: 34px;
}

.footer-kicker {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-kicker span {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
}

.footer-lead h2 {
    margin: 0;
    max-width: 480px;
    font-size: clamp(2.15rem, 3.5vw, 3.55rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
    font-weight: 500;
    color: #fcfaf6;
}

.footer-lead h2 span {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    font-weight: 500;
}

.footer-copy {
    max-width: 350px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.94rem;
    line-height: 1.72;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 48px;
    align-content: start;
    padding-top: 4px;
}

.footer-contact-card {
    max-width: 280px;
}

.footer-meta-label {
    margin: 0 0 10px;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.footer-contact-grid a,
.footer-contact-grid p {
    margin: 0;
    color: #f8f5f0;
    font-size: clamp(1.02rem, 1.3vw, 1.28rem);
    line-height: 1.42;
}

.footer-visual-row {
    display: grid;
    grid-template-columns: 220px minmax(420px, 1fr);
    gap: 36px;
    align-items: end;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    align-items: end;
    align-self: end;
}

.footer-instagram-highlight {
    width: min(100%, 210px);
    min-height: 148px;
    padding: 20px 18px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 20px;
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at top left, rgba(225, 48, 108, 0.26), transparent 44%),
        radial-gradient(circle at bottom right, rgba(245, 133, 41, 0.24), transparent 42%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.footer-instagram-highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.footer-instagram-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-instagram-icon svg {
    width: 24px;
    height: 24px;
    fill: #fffdf8;
}

.footer-instagram-copy {
    display: grid;
    gap: 6px;
}

.footer-instagram-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.footer-instagram-handle {
    font-size: 1.02rem;
    line-height: 1.35;
    color: #fffdf8;
}

.footer-instagram-arrow {
    align-self: start;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.footer-visual {
    position: relative;
    min-height: 400px;
    display: grid;
    align-items: end;
}

.footer-image {
    min-height: 400px;
    background-image: linear-gradient(180deg, rgba(24, 18, 16, 0.05), rgba(24, 18, 16, 0.14)), url('../work/work.jpg');
    background-size: cover;
    background-position: center center;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.footer-visual-link {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    backdrop-filter: blur(14px);
}

.footer-orbit {
    position: absolute;
    left: -96px;
    bottom: 108px;
    width: 184px;
    height: 184px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-art-line {
    position: absolute;
    left: -210px;
    bottom: 198px;
    width: 272px;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

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

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.policy-bar {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 180;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.policy-bar.is-hidden {
    opacity: 0;
    transform: translateY(20px);
}

.policy-bar-inner {
    width: min(1080px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 16px 18px;
    background: rgba(28, 27, 32, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: auto;
}

.policy-bar-copy {
    display: grid;
    gap: 6px;
}

.policy-bar-label {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.policy-bar-copy p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
    line-height: 1.55;
}

.policy-bar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-bar-actions a,
.policy-bar-close {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: inherit;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fffdf8;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.policy-bar-actions a:hover,
.policy-bar-close:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 112px;
    z-index: 190;
    display: grid;
    gap: 12px;
}

.floating-action {
    min-width: 156px;
    min-height: 56px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(35, 34, 40, 0.86);
    color: #fffdf8;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.floating-action:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.24);
}

.floating-action-instagram {
    background:
        linear-gradient(135deg, rgba(225, 48, 108, 0.3), rgba(245, 133, 41, 0.16)),
        rgba(35, 34, 40, 0.88);
}

.floating-action-call {
    background:
        linear-gradient(135deg, rgba(33, 150, 83, 0.28), rgba(12, 110, 68, 0.1)),
        rgba(35, 34, 40, 0.88);
}

.floating-action-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    flex: 0 0 auto;
}

.floating-action-icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.floating-action-text {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@keyframes softFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes gentlePulse {
    0%, 100% {
        box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
    }
    50% {
        box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    }
}

.inner-hero {
    min-height: 72svh;
}

.portfolio-hero {
    background-image: linear-gradient(180deg, rgba(39, 46, 60, 0.18), rgba(14, 10, 8, 0.48)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=80');
}

.portfolio-hero-custom {
    background-image:
        radial-gradient(circle at 20% 24%, rgba(255, 241, 223, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(60, 45, 38, 0.18), rgba(12, 10, 10, 0.56)),
        url('../portfolio/1/rn_image_picker_lib_temp_322301fe-386e-4b9d-a78a-d47a7101999b.jpg');
    background-position: center;
}

.portfolio-hero-custom .inner-hero-copy {
    width: min(920px, calc(100% - 48px));
}

.portfolio-hero-collage {
    position: absolute;
    right: clamp(24px, 4vw, 60px);
    bottom: clamp(32px, 5vw, 56px);
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: min(42vw, 540px);
}

.portfolio-hero-card {
    min-height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
    background-size: cover;
    background-position: center;
    transform: translateY(0);
}

.portfolio-hero-card-one {
    background-image: linear-gradient(180deg, rgba(22, 18, 16, 0.08), rgba(22, 18, 16, 0.2)), url('../portfolio/1/rn_image_picker_lib_temp_3cea9693-0db1-4afc-9f79-ff2e09a1acbc.jpg');
}

.portfolio-hero-card-two {
    background-image: linear-gradient(180deg, rgba(22, 18, 16, 0.08), rgba(22, 18, 16, 0.2)), url('../portfolio/1/rn_image_picker_lib_temp_5466b3f0-b1f0-474d-a0d9-dffc4b7564c6.jpg');
    transform: translateY(26px);
}

.portfolio-hero-card-three {
    background-image: linear-gradient(180deg, rgba(22, 18, 16, 0.08), rgba(22, 18, 16, 0.2)), url('../portfolio/2/rn_image_picker_lib_temp_217f6c49-01ba-4d49-8431-19d23c4b9ae0.jpg');
    transform: translateY(52px);
}

.contact-hero {
    background-image: linear-gradient(180deg, rgba(39, 46, 60, 0.16), rgba(14, 10, 8, 0.48)), url('https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&w=1600&q=80');
}

.contact-hero-custom {
    background-image:
        radial-gradient(circle at 20% 24%, rgba(255, 240, 222, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(56, 43, 38, 0.18), rgba(14, 10, 8, 0.56)),
        url('../portfolio/2/rn_image_picker_lib_temp_23ab742a-1a88-4310-af57-5b235384f225.jpg');
}

.contact-hero-strip {
    position: absolute;
    right: clamp(20px, 4vw, 52px);
    bottom: clamp(26px, 5vw, 54px);
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: min(40vw, 500px);
}

.contact-hero-frame {
    min-height: 170px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
}

.contact-hero-frame-one {
    background-image: linear-gradient(180deg, rgba(22, 18, 16, 0.08), rgba(22, 18, 16, 0.2)), url('../portfolio/1/rn_image_picker_lib_temp_c4e46fad-cfd4-4fe9-8c21-c0782db77779.jpg');
}

.contact-hero-frame-two {
    background-image: linear-gradient(180deg, rgba(22, 18, 16, 0.08), rgba(22, 18, 16, 0.2)), url('../portfolio/2/rn_image_picker_lib_temp_278ad4d6-9ba8-42fb-a0eb-8a963ebfffcd.jpg');
    transform: translateY(22px);
}

.contact-hero-frame-three {
    background-image: linear-gradient(180deg, rgba(22, 18, 16, 0.08), rgba(22, 18, 16, 0.2)), url('../portfolio/1/rn_image_picker_lib_temp_c77faaa4-ff3c-424c-b408-db939265b985.jpg');
    transform: translateY(44px);
}

.inner-hero-copy h1 {
    font-size: clamp(3.4rem, 9vw, 7rem);
    margin-bottom: 10px;
}

.portfolio-list {
    display: grid;
    gap: 32px;
}

.portfolio-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    align-items: center;
}

.portfolio-row.reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.portfolio-row.reverse .portfolio-image {
    order: 2;
}

.portfolio-row.reverse .portfolio-text {
    order: 1;
}

.portfolio-image {
    min-height: 420px;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 26px;
}

.contact-page {
    background: #f8f4ee;
}

.contact-page-grid,
.contact-location {
    width: var(--container);
    margin: 0 auto;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 26px;
    margin-bottom: 26px;
}

.contact-card,
.contact-form {
    padding: 34px;
    background: rgba(255, 252, 248, 0.82);
    border: 1px solid rgba(34, 32, 31, 0.08);
}

.contact-card-list {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.contact-card-list span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-card-list p {
    margin: 0;
    color: var(--ink);
}

.contact-form label {
    display: block;
    margin-bottom: 18px;
}

.contact-form .section-label {
    margin-bottom: 20px;
}

.contact-form span {
    display: block;
    margin-bottom: 7px;
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(34, 32, 31, 0.12);
    padding: 15px 16px;
    font: inherit;
    color: var(--ink);
    background: #fffdfb;
}

.contact-form button {
    background: linear-gradient(135deg, #2b2a30, #18171b);
    color: #fffdf8;
    border-color: rgba(24, 23, 27, 0.9);
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(24, 23, 27, 0.18);
}

.contact-form .button-link {
    margin-top: 8px;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #141317, #35333b);
    color: #fffdf8;
    border-color: rgba(24, 23, 27, 1);
}

.contact-location {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 26px;
    align-items: stretch;
}

.contact-location-copy,
.contact-location-card {
    padding: 34px;
    background: rgba(255, 252, 248, 0.82);
    border: 1px solid rgba(34, 32, 31, 0.08);
    box-shadow: var(--shadow);
}

.contact-location-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.contact-location-copy p {
    color: var(--muted);
}

.contact-map-link {
    margin-top: 14px;
    color: var(--ink);
    border-color: rgba(34, 32, 31, 0.18);
}

.contact-map-link:hover {
    background: var(--dark);
    color: var(--white);
}

.contact-location-map {
    min-height: 340px;
    background-image:
        linear-gradient(180deg, rgba(24, 18, 16, 0.08), rgba(24, 18, 16, 0.18)),
        url('../portfolio/2/rn_image_picker_lib_temp_4667b3b6-c653-4d5d-8d4c-2128876b76a7.jpg');
    background-size: cover;
    background-position: center;
}

.contact-location-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    font-size: 0.92rem;
    color: var(--ink);
}

.policy-page {
    background: #f8f4ee;
}

.policy-page-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.policy-page-nav {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 252, 248, 0.82);
    border: 1px solid rgba(34, 32, 31, 0.08);
}

.policy-page-nav a {
    color: var(--muted);
    transition: color 0.25s ease, transform 0.25s ease;
}

.policy-page-nav a:hover {
    color: var(--ink);
    transform: translateX(2px);
}

.policy-page-content {
    display: grid;
    gap: 22px;
}

.policy-block {
    padding: 30px;
    background: rgba(255, 252, 248, 0.84);
    border: 1px solid rgba(34, 32, 31, 0.08);
    box-shadow: var(--shadow);
}

.policy-block h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.policy-block p {
    margin: 0 0 12px;
    color: var(--muted);
}

.policy-block p:last-child {
    margin-bottom: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .button-link,
    .site-header,
    .site-nav a::after {
        transition: none;
    }

    .hero-pill,
    .floating-action {
        animation: none;
    }
}

@media (max-width: 920px) {
    :root {
        --container: min(100% - 30px, 1180px);
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 15px;
        right: 15px;
        display: grid;
        gap: 12px;
        padding: 18px;
        background: rgba(31, 29, 32, 0.95);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        margin-right: 0;
    }

    .site-nav.is-open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .service-card,
    .what-we-do-head,
    .cta-panel,
    .contact-section,
    .policy-page-grid,
    .portfolio-row,
    .portfolio-row.reverse,
    .footer-top,
    .portfolio-story-head,
    .our-projects-head,
    .testimonial-shell {
        grid-template-columns: 1fr;
    }

    .intro-top,
    .intro-bottom,
    .project-slider-meta,
    .project-slider-body {
        grid-template-columns: 1fr;
    }

    .what-we-do-intro {
        justify-self: start;
        max-width: none;
    }

    .portfolio-switch {
        margin-bottom: 22px;
    }

    .policy-page-nav {
        position: static;
        padding: 20px;
    }

    .project-slider-copy {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-slider-side {
        min-height: auto;
        gap: 18px;
    }

    .project-slider-side p {
        max-width: 360px;
    }

    .slider-arrow-next {
        justify-self: start;
    }

    .project-slider-track {
        grid-auto-columns: minmax(300px, 82%);
    }

    .projects-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-contact-grid,
    .footer-visual-row {
        grid-template-columns: 1fr;
    }

    .contact-page-grid,
    .contact-location {
        grid-template-columns: 1fr;
    }

    .contact-hero-strip {
        width: min(54vw, 440px);
        gap: 12px;
    }

    .contact-hero-frame {
        min-height: 138px;
    }

    .footer-top {
        gap: 36px;
    }

    .footer-contact-card {
        max-width: none;
    }

    .footer-visual {
        min-height: 380px;
    }

    .footer-image {
        min-height: 380px;
    }

    .footer-orbit,
    .footer-art-line {
        display: none;
    }

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

    .policy-bar-inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .policy-bar-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .floating-actions {
        right: 16px;
        bottom: 124px;
    }

    .floating-action {
        min-width: 144px;
    }

    .project-search {
        gap: 14px;
    }

    .project-filters {
        gap: 8px;
    }

    .project-filter {
        min-height: 32px;
        padding: 0 14px;
    }

    .testimonial-quote-mark {
        position: static;
        margin-bottom: 8px;
    }

    .testimonial-count {
        justify-self: start;
    }

    .footer-instagram-highlight {
        width: min(100%, 260px);
    }

    .cta-metrics {
        grid-template-columns: 1fr;
    }

    .cta-floating-note {
        left: 18px;
        bottom: 18px;
        width: min(260px, 76%);
    }

    .testimonial-shell {
        width: var(--container);
    }

    .portfolio-hero-collage {
        width: min(56vw, 460px);
        gap: 12px;
    }

    .portfolio-hero-card {
        min-height: 150px;
    }

    .testimonial-slide-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-persona {
        padding-top: 72px;
        grid-template-columns: auto 1fr auto;
        gap: 18px;
        align-items: center;
    }

    .testimonial-copy {
        padding-top: 0;
    }

    .testimonial-preview {
        justify-items: start;
        max-width: 320px;
    }

    .testimonial-arrow-next {
        justify-self: start;
    }

    .intro-story {
        min-height: 220px;
    }

    .intro-card {
        justify-self: start;
    }

    .header-meta {
        display: none;
    }

    .portfolio-row.reverse .portfolio-image,
    .portfolio-row.reverse .portfolio-text {
        order: initial;
    }

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

    .hero h1 {
        font-size: clamp(3.9rem, 18vw, 7rem);
    }

    .hero-pill {
        left: 18px;
        top: auto;
        bottom: 230px;
    }

    .project-card {
        right: 18px;
        bottom: 96px;
    }

    .section-pad {
        padding: 84px 0;
    }
}

@media (max-width: 640px) {
    body {
        overflow-x: hidden;
    }

    .policy-bar {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .floating-actions {
        right: 12px;
        bottom: 132px;
        gap: 10px;
    }

    .floating-action {
        min-width: 52px;
        min-height: 52px;
        padding: 0 14px;
        border-radius: 18px;
        animation: gentlePulse 3.6s ease-in-out infinite;
    }

    .floating-action-text {
        display: none;
    }

    .policy-bar-inner {
        padding: 14px;
    }

    .policy-bar-copy p:last-child {
        font-size: 0.86rem;
    }

    .site-footer {
        padding: 28px 14px 18px;
    }

    .site-logo {
        padding: 7px 12px;
    }

    .policy-block {
        padding: 22px;
    }

    .contact-card,
    .contact-form,
    .contact-location-copy,
    .contact-location-card {
        padding: 22px;
    }

    .contact-location-map {
        min-height: 260px;
    }

    .contact-location-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .policy-block h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .site-logo img {
        height: 26px;
        max-width: 150px;
    }

    .portfolio-hero-custom .inner-hero-copy {
        width: min(100% - 28px, 900px);
        padding-top: 40px;
    }

    .contact-hero-strip {
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 18px;
        width: auto;
        gap: 8px;
    }

    .contact-hero-frame {
        min-height: 96px;
    }

    .contact-hero-frame-two {
        transform: translateY(10px);
    }

    .contact-hero-frame-three {
        transform: translateY(20px);
    }

    .portfolio-hero-collage {
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 18px;
        width: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .portfolio-hero-card {
        min-height: 104px;
    }

    .portfolio-hero-card-two {
        transform: translateY(12px);
    }

    .portfolio-hero-card-three {
        transform: translateY(24px);
    }

    .site-nav {
        left: 12px;
        right: 12px;
        padding: 16px;
        border-radius: 20px;
    }

    .intro-wrap {
        width: min(100% - 28px, 1340px);
    }

    .section-pad {
        padding: 72px 0;
    }

    .intro-copy h2 {
        font-size: clamp(2rem, 9.4vw, 3rem);
    }

    .intro-bottom {
        gap: 20px;
    }

    .intro-top {
        gap: 18px;
        margin-bottom: 24px;
    }

    .intro-arrow {
        margin-left: 0;
    }

    .what-we-do-head {
        margin-bottom: 28px;
    }

    .portfolio-switch {
        gap: 8px;
    }

    .portfolio-switch-tab {
        min-height: 40px;
        padding: 0 16px;
        font-size: 0.72rem;
    }

    .what-we-do-head h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .cta-kicker-line {
        width: 84px;
        margin: 10px 0 14px;
    }

    .cta-lead {
        font-size: 0.92rem;
        margin-top: 14px;
    }

    .cta-metrics {
        gap: 10px;
        margin-top: 20px;
    }

    .cta-metric {
        padding: 14px 16px;
    }

    .cta-floating-note {
        position: static;
        width: 100%;
        margin-top: 12px;
        animation: none;
    }

    .project-slider {
        padding: 22px 0 18px;
    }

    .project-slider-kicker {
        font-size: 0.64rem;
    }

    .project-slider-copy h3 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .project-slider-track {
        grid-auto-columns: 92%;
        gap: 12px;
    }

    .project-slide-media {
        min-height: 250px;
    }

    .project-slider-side {
        gap: 14px;
    }

    .project-slider-side p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
    }

    .intro-card-image {
        width: 290px;
        height: 324px;
    }

    .graphic-line {
        width: 120px;
    }

    .graphic-circle {
        left: 76px;
        width: 170px;
        height: 170px;
    }

    .hero-year {
        top: 106px;
        right: 18px;
        font-size: 0.78rem;
    }

    .hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        bottom: 18px;
    }

    .hero-pill,
    .project-card {
        left: 18px;
        right: 18px;
        width: auto;
        border-radius: 20px;
    }

    .hero-pill {
        top: auto;
        bottom: 246px;
        min-height: 42px;
        padding: 0 14px 0 12px;
        animation: softFloat 4s ease-in-out infinite;
    }

    .hero-pill p {
        font-size: 0.82rem;
    }

    .project-card {
        bottom: 88px;
        padding: 12px;
        gap: 12px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .project-card-thumb {
        width: 100%;
        min-width: 0;
        min-height: 148px;
    }

    .project-card-copy h2 {
        font-size: 1.45rem;
    }

    .project-card-copy p {
        font-size: 0.84rem;
        margin-bottom: 4px;
    }

    .hero-point {
        display: none;
    }

    .hero,
    .inner-hero {
        min-height: 100svh;
    }

    .hero-content,
    .inner-hero-copy {
        width: min(100% - 28px, 900px);
    }

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

    .projects-board {
        grid-template-columns: 1fr;
    }

    .our-projects-head {
        margin-bottom: 30px;
    }

    .our-projects-head h2 {
        font-size: clamp(2rem, 8.8vw, 2.9rem);
    }

    .project-search {
        gap: 10px;
        padding-bottom: 8px;
    }

    .project-search-action {
        display: none;
    }

    .project-search input {
        font-size: 0.92rem;
    }

    .project-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .project-filters::-webkit-scrollbar {
        display: none;
    }

    .project-filters span {
        white-space: nowrap;
    }

    .project-tile {
        padding: 12px;
    }

    .project-tile-image {
        aspect-ratio: 1 / 0.92;
    }

    .project-tile-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-top {
        gap: 26px;
        margin-bottom: 28px;
    }

    .footer-lead h2 {
        font-size: clamp(1.95rem, 8.2vw, 2.8rem);
    }

    .footer-contact-grid {
        gap: 24px;
    }

    .footer-contact-grid a,
    .footer-contact-grid p {
        font-size: 1rem;
    }

    .footer-socials a {
        width: auto;
        height: auto;
    }

    .footer-instagram-highlight {
        width: 100%;
        min-height: 120px;
        grid-template-columns: 46px minmax(0, 1fr) 18px;
        padding: 16px;
    }

    .footer-visual {
        min-height: 260px;
    }

    .footer-image {
        min-height: 260px;
    }

    .footer-bottom-links {
        gap: 18px;
        flex-wrap: wrap;
    }

    .testimonial-shell {
        width: min(100% - 28px, 1440px);
    }

    .testimonial-slider {
        min-height: auto;
    }

    .testimonial-slide-grid {
        gap: 20px;
        padding-top: 12px;
    }

    .testimonial-persona {
        grid-template-columns: auto 1fr auto;
        justify-items: start;
        padding-top: 0;
        gap: 14px;
        align-items: center;
    }

    .testimonial-avatar {
        width: 72px;
        height: 72px;
        border-radius: 999px;
        font-size: 1.5rem;
    }

    .testimonial-stars {
        font-size: 1rem;
        letter-spacing: 0.18em;
    }

    .testimonial-quote {
        font-size: clamp(1.7rem, 7.8vw, 2.5rem);
        line-height: 1.2;
    }

    .testimonial-signoff {
        grid-template-columns: 1fr;
        gap: 14px;
        justify-items: start;
        margin-top: 22px;
    }

    .testimonial-signoff p {
        font-size: 1.5rem;
    }

    .testimonial-line,
    .testimonial-preview {
        width: 100%;
    }

    .testimonial-project {
        aspect-ratio: 1.15;
    }

    .testimonial-preview-meta {
        font-size: 0.82rem;
        flex-wrap: wrap;
    }

    .testimonial-count span {
        font-size: 2rem;
    }

    .masonry-card,
    .masonry-card.tall,
    .service-image,
    .portfolio-image,
    .cta-image {
        min-height: 280px;
    }

    .contact-card,
    .contact-form,
    .service-copy {
        padding: 24px;
    }
}
