:root {
    --primary: #50062e;
    --primary-dark: #36031f;
    --green: var(--primary);
    --green-dark: var(--primary-dark);
    --ink: #212934;
    --text: #333333;
    --muted: #747474;
    --line: #e6e6e6;
    --soft: #f8f8f8;
    --paper: #ffffff;
    --charcoal: #0b1117;
    --gold: #c79a46;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 18px clamp(18px, 4vw, 54px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(16px);
    transition: padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    padding-block: 11px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
}

.brand img {
    width: 152px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-nav a {
    position: relative;
    padding: 8px 0;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: var(--green);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

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

.header-cta,
.floating-enquiry,
.project-body a {
    border: 0;
    color: var(--paper);
    background: var(--green);
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.header-cta {
    min-height: 42px;
    padding: 0 18px;
}

.header-contact {
    display: grid;
    gap: 4px;
    min-width: 188px;
    padding-left: 26px;
    border-left: 1px solid var(--line);
    color: var(--ink);
    line-height: 1.1;
}

.header-contact span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.header-contact strong {
    color: var(--green);
    font-size: 20px;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--paper);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(100px, 14vh, 160px) clamp(18px, 5vw, 72px) clamp(80px, 10vh, 120px);
    overflow: hidden;
    color: var(--paper);

    
    isolation: isolate;
}

.hero-video,
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.hero-video {
    object-fit: cover;
}

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

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(108deg, rgba(11, 17, 23, 0.92) 0%, rgba(11, 17, 23, 0.58) 52%, rgba(80, 6, 46, 0.32) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, transparent 52%);
}

.hero-content {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero-highlight {
    display: block;
    color: var(--gold);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* eyebrow on dark/image backgrounds needs lighter colour */
.page-hero .eyebrow,
.awards-section .eyebrow,
.about-cta-section .eyebrow,
.proj-gallery-section .eyebrow,
.proj-cta-section .eyebrow,
.project-slider-section .eyebrow {
    color: rgba(255, 255, 255, 0.65);
}

.hero-scroll {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-scroll-line {
    width: 46px;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: slide-right 2s ease-in-out infinite;
}

@keyframes slide-right {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero h1,
.section-heading h2,
.director-copy h2,
.contact-copy h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.02;
    color: inherit;
}

.hero h1 {
    margin: clamp(42px, 4.5vw, 68px) 0 10px;
    font-size: clamp(36px, 5.6vw, 82px);
}

.hero h1 span {
    display: block;
}

.hero-summary {
    max-width: 780px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.65;
}

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

.btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.btn-primary {
    color: var(--paper);
    background: var(--green);
}

.btn-primary:hover,
.header-cta:hover,
.floating-enquiry:hover,
.project-body a:hover {
    background: var(--green-dark);
}

.page-hero {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: end start;
    padding: 150px clamp(18px, 5vw, 72px) 72px;
    color: var(--paper);
    overflow: hidden;
    isolation: isolate;
}

.page-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
}

.page-hero img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero div {
    max-width: 780px;
}

.page-hero h1 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(42px, 6vw, 88px);
    line-height: 1.02;
}

.about-brand-banner {
    position: relative;
    height: min(56vw, 760px);
    min-height: 620px;
    margin-top: 118px;
    overflow: hidden;
    background: #ffffff;
}

.about-brand-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-brand-content {
    position: absolute;
    z-index: 1;
    left: 16%;
    bottom: 16px;
    display: grid;
    grid-template-columns: 230px minmax(320px, 620px);
    gap: clamp(42px, 6vw, 82px);
    align-items: center;
}

.about-brand-content img {
    width: 230px;
    height: auto;
}

.about-brand-content p {
    margin: 0;
    color: #111111;
    font-size: clamp(22px, 2.6vw, 42px);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.24;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--green);
    font-weight: 900;
    text-transform: uppercase;
}

.btn-secondary {
    color: var(--paper);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.42);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    width: min(100%, 640px);
    margin: 46px auto 0;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div {
    min-width: 170px;
    padding: 0 28px 0 0;
}

.hero-proof div + div {
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    color: var(--gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1;
}

.hero-proof span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-reel-wrap {
    display: grid;
    gap: 12px;
}

.hero-reel-wrap > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-reel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.reel-card {
    min-height: 126px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(11, 17, 23, 0.56);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.reel-card:hover {
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(80, 6, 46, 0.72);
    transform: translateY(-3px);
}

.reel-card img {
    width: 96px;
    height: 96px;
    object-fit: cover;
}

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

.reel-card strong {
    font-size: 17px;
    line-height: 1.2;
}

.reel-card span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    line-height: 1.35;
}

.hero-tagline-strip {
    padding: 20px clamp(18px, 5vw, 72px);
    text-align: center;
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.ticker-strip {
    overflow: hidden;
    padding: 20px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
    width: max-content;
}

.ticker-track span {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(22px, 2.6vw, 38px);
    color: var(--primary);
    font-weight: 600;
    flex-shrink: 0;
}

.ticker-sep {
    color: var(--gold) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.home-boxes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--charcoal);
}

.home-box {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.home-box::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(225, 220, 220, 0.42);
}

.home-box .num-card {
    position: absolute;
    top: auto;
    bottom: 28px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
}

.home-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.home-box:hover img {
    transform: scale(1.05);
}

.home-box > span {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    z-index: 1;
    color: var(--paper);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.08;
}

.num-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    z-index: 5;
    margin-top: -96px;
}

.num-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 24px 28px;
}

.num-col img {
    display: none;
}

.num-col::after {
    display: none;
}

.num-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 3vw, 34px);
    width: min(88%, 430px);
    min-height: 134px;
    padding: 22px clamp(26px, 3vw, 42px);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 12px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
    text-align: left;
}

.num-card strong {
    position: static;
    order: 1;
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(56px, 5.2vw, 82px);
    color: var(--primary);
    line-height: 1;
    font-weight: 500;
    flex-shrink: 0;
}

.num-card span {
    position: static;
    order: 2;
    inset: auto;
    z-index: auto;
    max-width: 230px;
    color: var(--primary);
    font-size: clamp(23px, 2.35vw, 34px);
    font-weight: 500;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 0;
}

.video-section {
    padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px);
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.video-wrap {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.section {
    padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
    gap: clamp(30px, 6vw, 86px);
    align-items: start;
}

.section-kicker span,
.section-kicker strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(46px, 6vw, 86px);
    line-height: 0.96;
}

.section-kicker span {
    color: var(--green);
}

.section-kicker strong {
    color: var(--ink);
}

.section-kicker.light strong,
.section-kicker.light span {
    color: var(--paper);
}

.copy-stack {
    max-width: 900px;
    color: var(--muted);
    font-size: clamp(17px, 1.5vw, 20px);
}

.copy-stack p:first-child {
    margin-top: 0;
}

.home-about-section {
    display: grid;
    grid-template-columns: minmax(0, 0.54fr) minmax(280px, 0.46fr);
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
}

.home-about-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.home-about-heading {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 6.5vw, 92px);
    line-height: 0.96;
    color: var(--ink);
    text-align: left;
}

.home-about-media {
    position: relative;
    display: grid;
    grid-template-columns: 0.86fr 0.72fr;
    gap: 14px;
    min-height: 360px;
}

.home-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-about-media img:first-child {
    grid-row: 1 / 3;
}

.home-about-media div {
    display: grid;
    align-content: center;
    padding: 24px;
    color: var(--paper);
    background: var(--primary);
}

.home-about-media strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 58px;
    line-height: 1;
}

.home-about-media span {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-intro-section {
    display: block;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-top: clamp(32px, 4vw, 52px);
}

.about-vision-section {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-top: clamp(32px, 4vw, 52px);
}

.about-section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 32px;
    line-height: 1.1;
}

.about-intro-copy p {
    color: var(--muted);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 240px 220px;
    gap: 14px;
}

.about-image-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-collage-large {
    grid-row: 1 / 3;
}

.about-since-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: grid;
    min-width: 170px;
    min-height: 118px;
    align-content: center;
    padding: 20px;
    color: var(--paper);
    background: var(--primary);
    box-shadow: var(--shadow);
}

.about-since-card strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 52px;
    line-height: 1;
}

.about-since-card span {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-leadership-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.5fr) minmax(0, 0.7fr);
    gap: clamp(30px, 6vw, 86px);
    align-items: center;
    padding: clamp(70px, 8vw, 110px) clamp(18px, 5vw, 72px);
    background:
        linear-gradient(90deg, rgba(248, 248, 248, 0.98), rgba(248, 248, 248, 0.78)),
        url("../images/director-bg.jpg") center/cover;
}

.about-leader-image {
    display: flex;
    min-height: 520px;
    align-items: end;
    justify-content: center;
    background: linear-gradient(180deg, rgba(80, 6, 46, 0.1), rgba(33, 41, 52, 0.06));
    overflow: hidden;
}

.about-leader-image img {
    max-height: 560px;
    object-fit: contain;
}

.about-leader-copy h2,
.about-cta-section h2 {
    margin: 0;
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.02;
}

.about-leader-copy > p {
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
}

.about-leader-copy blockquote {
    max-width: 680px;
    margin: 28px 0 8px;
    color: var(--primary);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.12;
}

.about-leader-copy cite {
    color: var(--muted);
    font-style: normal;
    font-weight: 800;
}

.about-stat-grid {
    margin-top: 34px;
}

.about-values-section {
    background: var(--paper);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-values-grid article {
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--line);
    background: var(--soft);
}

.about-values-grid h3 {
    margin: 0 0 14px;
    color: var(--primary);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    line-height: 1.08;
}

.about-values-grid p {
    margin: 0;
    color: var(--muted);
}

.about-gallery-section {
    background: var(--soft);
}

.about-gallery-section .section-heading {
    max-width: 100%;
}

.about-gallery-section .section-heading h2 {
    font-size: clamp(22px, 2.4vw, 34px);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-gallery-grid article {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    background: var(--charcoal);
}

.about-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 450ms ease, opacity 250ms ease;
}

.about-gallery-grid article:hover img {
    opacity: 1;
    transform: scale(1.06);
}

.about-gallery-grid span {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    color: var(--paper);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.08;
}

.about-gallery-grid article::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 56%);
}

.about-cta-section {
    position: relative;
    display: grid;
    min-height: 430px;
    place-items: center;
    padding: clamp(70px, 8vw, 110px) clamp(18px, 5vw, 72px);
    color: var(--paper);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.about-cta-section::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(90deg, rgba(11, 17, 23, 0.88), rgba(80, 6, 46, 0.7));
}

.about-cta-section img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cta-section div {
    max-width: 780px;
}

.about-cta-section h2 {
    color: var(--paper);
}

.about-cta-section .btn {
    margin-top: 30px;
}

.vision-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
    gap: clamp(30px, 6vw, 76px);
    align-items: center;
    color: var(--paper);
    background: var(--ink);
}

.vision-section p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.77);
    font-size: 18px;
}

.vision-card {
    padding: clamp(26px, 4vw, 48px);
    border-left: 4px solid var(--green);
    background: rgba(255, 255, 255, 0.08);
}

.vision-card span {
    display: block;
    color: var(--green);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 98px;
    line-height: 0.7;
}

.vision-card blockquote {
    margin: 18px 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.1;
}

.vision-card cite {
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
}

.director-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 0.65fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    padding: clamp(70px, 8vw, 110px) clamp(18px, 5vw, 72px);
    background:
        linear-gradient(90deg, rgba(248, 248, 248, 0.95), rgba(248, 248, 248, 0.72)),
        url("../images/director-bg.jpg") center/cover;
}

.director-photo {
    align-self: stretch;
    display: flex;
    align-items: end;
    justify-content: center;
    min-height: 460px;
    background: linear-gradient(180deg, rgba(101, 188, 123, 0.15), rgba(33, 41, 52, 0.08));
    overflow: hidden;
}

.director-photo img {
    max-height: 520px;
    object-fit: contain;
}

.director-copy h2,
.contact-copy h2,
.section-heading h2 {
    color: var(--ink);
    font-size: clamp(38px, 5vw, 70px);
}

.director-copy > p:not(.eyebrow) {
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.stat {
    min-height: 136px;
    display: grid;
    align-content: center;
    padding: 20px;
    border: 1px solid var(--line);
    background: var(--paper);
}

.stat strong {
    color: var(--green);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1;
}

.stat span {
    margin-top: 10px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-heading.compact {
    margin: 0;
}

.projects-section {
    background: var(--paper);
}

.projects-list {
    display: flex;
    flex-direction: column;
}

.project-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.project-row--reverse {
    direction: rtl;
}

.project-row--reverse > * {
    direction: ltr;
}

.project-row-image {
    overflow: hidden;
}

.project-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.project-row:hover .project-row-image img {
    transform: scale(1.04);
}

.project-row-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 86px) clamp(28px, 5vw, 72px);
    background: var(--soft);
}

.project-row--reverse .project-row-content {
    background: var(--paper);
}

.project-row-status {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-row-content h2 {
    margin: 0 0 10px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3.2vw, 48px);
    color: var(--ink);
    line-height: 1.08;
}

.project-row-content h3 {
    margin: 0 0 18px;
    color: var(--primary);
    font-size: clamp(15px, 1.4vw, 19px);
    font-weight: 600;
    font-style: italic;
    font-family: "Playfair Display", Georgia, serif;
}

.project-row-content p {
    margin: 0 0 30px;
    color: var(--muted);
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.75;
    max-width: 540px;
}

.upcoming-section {
    padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
    background: var(--charcoal);
    color: var(--paper);
}

.upcoming-heading {
    text-align: center;
    margin-bottom: 48px;
}

.upcoming-heading .eyebrow {
    color: var(--gold);
}

.upcoming-heading h2 {
    margin: 8px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 4vw, 54px);
    color: var(--paper);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.upcoming-card {
    padding: clamp(28px, 3vw, 46px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.upcoming-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 5px 14px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.upcoming-card h3 {
    margin: 0 0 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(22px, 2.4vw, 34px);
    color: var(--paper);
    line-height: 1.1;
}

.upcoming-tagline {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 14px;
    font-style: italic;
    font-family: "Playfair Display", Georgia, serif;
}

.upcoming-card p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .project-row,
    .project-row--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .project-row-image {
        min-height: 280px;
    }

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

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
}

.project-card {
    display: grid;
    grid-template-rows: 245px 1fr;
    min-width: 0;
    border-right: 1px solid var(--line);
    background: var(--paper);
}

.project-card:last-child {
    border-right: 0;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-body {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.project-body span {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.project-body h3 {
    margin: 10px 0 6px;
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    line-height: 1.05;
}

.project-meta {
    margin: 0 0 12px;
    color: var(--ink);
    font-weight: 800;
}

.project-body p:last-of-type {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 15px;
}

.project-body a {
    width: max-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding: 0 18px;
}

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

.project-slider-section {
    padding: 28px 0;
    background: #f2f2f2;
}

.project-slider {
    position: relative;
    overflow: hidden;
    background: var(--paper);
}

.project-slider-track {
    position: relative;
}

.project-slide {
    display: none;
    grid-template-columns: minmax(0, 0.56fr) minmax(420px, 0.44fr);
    min-height: 620px;
    background: var(--paper);
}

.project-slide.is-active {
    display: grid;
}

.project-slide-image {
    min-height: 620px;
    overflow: hidden;
}

.project-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(42px, 5vw, 76px) clamp(28px, 5vw, 88px);
    text-align: center;
}

.project-slide-kicker {
    margin: 0 0 42px;
    color: var(--primary);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;
    line-height: 0.98;
    text-transform: uppercase;
}

.project-slide-content h2 {
    max-width: 680px;
    margin: 0;
    color: #111111;
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(19px, 1.55vw, 25px);
    font-weight: 500;
    line-height: 1.25;
    text-transform: uppercase;
}

.project-slide-content h3 {
    margin: 34px 0 26px;
    color: #111111;
    font-size: clamp(16px, 1.25vw, 21px);
    font-weight: 400;
    line-height: 1.35;
    text-transform: uppercase;
}

.project-slide-content p:not(.project-slide-kicker) {
    max-width: 700px;
    margin: 0;
    color: #202020;
    font-size: 16px;
    line-height: 1.65;
}

.project-slide-content .btn {
    margin-top: 70px;
    min-height: 40px;
    padding-inline: 26px;
    font-size: 16px;
    text-transform: none;
}

.project-slider-controls {
    position: absolute;
    right: clamp(28px, 5vw, 86px);
    bottom: 26px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
}

.project-slider-btn {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(80, 6, 46, 0.24);
    color: var(--primary);
    background: var(--paper);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.project-slider-btn:hover {
    color: var(--paper);
    background: var(--primary);
}

.project-slider-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.project-slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(80, 6, 46, 0.28);
    cursor: pointer;
}

.project-slider-dots button.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--primary);
}

.awards-section {
    position: relative;
    padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px);
    color: var(--paper);
    background:
        linear-gradient(90deg, rgba(16, 21, 28, 0.92), rgba(16, 21, 28, 0.72)),
        url("../images/accolades-bg.jpg") center/cover fixed;
    overflow: hidden;
}

.awards-section .section-heading h2 {
    color: var(--paper);
}

.award-badge {
    position: absolute;
    top: 52px;
    right: clamp(18px, 5vw, 72px);
    width: clamp(84px, 10vw, 148px);
    opacity: 0.82;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.award-card {
    margin: 0;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.award-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.award-card figcaption {
    min-height: 74px;
    padding: 14px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.testimonials-section {
    background: var(--soft);
}

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

.testimonial-card {
    min-height: 250px;
    padding: clamp(24px, 3vw, 34px);
    background: var(--paper);
    box-shadow: 0 1px 0 var(--line);
}

.testimonial-card p {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 17px;
}

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

.testimonial-card strong {
    color: var(--ink);
    font-weight: 900;
    text-transform: uppercase;
}

.testimonial-card span {
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
}

.bank-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.34fr) 1fr;
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
    padding: clamp(60px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
}

.bank-grid img {
    width: 100%;
    min-height: 86px;
    object-fit: contain;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--paper);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
    gap: clamp(30px, 6vw, 82px);
    align-items: start;
    padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px);
    color: var(--paper);
    background: var(--ink);
}

.contact-copy h2 {
    color: var(--paper);
}

.contact-copy ul {
    display: grid;
    gap: 18px;
    max-width: 560px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.contact-copy li {
    display: grid;
    gap: 3px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-copy strong {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
}

.contact-copy a,
.contact-copy span {
    color: rgba(255, 255, 255, 0.82);
}

.enquiry-form {
    display: grid;
    gap: 15px;
    padding: clamp(22px, 3vw, 34px);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
}

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

.enquiry-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    padding: 0 12px;
    color: var(--text);
    background: var(--paper);
    outline: 0;
}

.enquiry-form input:focus,
.enquiry-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(80, 6, 46, 0.14);
}

.consent {
    grid-template-columns: 18px 1fr;
    align-items: start;
    text-transform: none;
    font-weight: 600;
}

.consent input {
    min-height: auto;
    margin-top: 4px;
}

.form-success {
    padding: 12px 14px;
    color: var(--green-dark);
    background: rgba(101, 188, 123, 0.14);
    font-weight: 800;
}

.testi-section {
    padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
    background: var(--soft);
}

.testi-heading {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-content: center;
    margin-bottom: 48px;
}

.testi-line {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: var(--primary);
    opacity: 0.4;
}

.testi-heading h2 {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(26px, 2.8vw, 42px);
    font-weight: 400;
    color: var(--ink);
    white-space: nowrap;
}

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

.testi-card {
    display: flex;
    flex-direction: column;
    padding: 28px 26px 24px;
    background: var(--paper);
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    min-height: 360px;
}

.testi-quote {
    font-size: 100px;
    line-height: 0.6;
    color: var(--primary);
    font-family: "Playfair Display", Georgia, serif;
    margin-bottom: 18px;
}

.testi-card p {
    flex: 1;
    margin: 0 0 24px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
}

.testi-author {
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.testi-author strong,
.testi-author span {
    display: block;
}

.testi-author strong {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.testi-author span {
    color: var(--muted);
    font-size: 13px;
    margin-top: 3px;
}

@media (max-width: 880px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(190px, 0.8fr) minmax(260px, 1fr) minmax(220px, 0.8fr);
    gap: 22px 34px;
    align-items: start;
    padding: 26px clamp(18px, 5vw, 72px);
    color: rgba(255, 255, 255, 0.75);
    background: var(--charcoal);
}

.site-footer img {
    width: 124px;
    filter: brightness(0) invert(1);
}

.site-footer p {
    margin: 0;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-footer address {
    display: grid;
    gap: 7px;
    margin: 0;
    font-style: normal;
}

.site-footer address strong {
    color: var(--paper);
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.floating-enquiry {
    position: fixed;
    right: 0;
    top: 44%;
    z-index: 40;
    min-height: 44px;
    padding: 0 16px;
    transform: rotate(-90deg) translateY(-100%);
    transform-origin: top right;
}

.to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 38;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--paper);
    background: rgba(33, 41, 52, 0.94);
    font-size: 20px;
    font-weight: 900;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.64);
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 500px);
    max-height: calc(100svh - 36px);
    overflow: auto;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.modal-panel h2 {
    margin: 0;
    padding: 24px 62px 0 24px;
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 38px;
}

.compact-form {
    box-shadow: none;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    color: var(--ink);
    background: var(--soft);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

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

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

    .project-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .bank-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .project-slide {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .project-slide-image {
        min-height: 420px;
    }

    .project-slide-content {
        min-height: 520px;
    }

    .project-slider-controls {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 880px) {
    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .header-cta {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .site-nav {
        position: fixed;
        top: 76px;
        right: 0;
        left: 0;
        display: none;
        padding: 20px;
        background: var(--paper);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
    }

    .site-nav.is-open {
        display: grid;
        justify-content: stretch;
        gap: 6px;
    }

    .site-nav a {
        padding: 12px 0;
    }

    .hero {
        padding: 88px clamp(18px, 5vw, 72px) 72px;
    }

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

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

    .hero-overlay {
        background:
            linear-gradient(160deg, rgba(11, 17, 23, 0.92) 0%, rgba(11, 17, 23, 0.62) 55%, rgba(80, 6, 46, 0.28) 100%),
            linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, transparent 52%);
    }

    .hero-proof {
        width: 100%;
    }

    .hero-proof div {
        min-width: 30%;
        padding-right: 18px;
    }

    .num-strip,
    .home-boxes,
    .home-about-section,
    .about-intro-section,
    .about-leadership-section,
    .split-section,
    .vision-section,
    .director-section {
        grid-template-columns: 1fr;
    }

    .home-about-media {
        min-height: 300px;
    }

    .about-brand-banner {
        margin-top: 76px;
        height: 520px;
        min-height: 520px;
    }

    .about-brand-bg {
        min-height: 0;
    }

    .about-brand-content {
        left: 7%;
        right: 7%;
        grid-template-columns: 180px 1fr;
        gap: 26px;
    }

    .about-brand-content img {
        width: 180px;
    }

    .about-image-collage {
        grid-template-rows: 220px 200px;
    }

    .about-leader-image {
        min-height: 420px;
    }

    .home-box {
        min-height: 220px;
    }

    .director-photo {
        min-height: 360px;
    }

    .stat-grid,
    .testimonial-grid,
    .bank-grid {
        grid-template-columns: 1fr;
    }

    .floating-enquiry {
        top: auto;
        right: 18px;
        bottom: 74px;
        transform: none;
    }
}

@media (max-width: 620px) {
    .brand img {
        width: 126px;
    }

    .hero-reel,
    .projects-grid,
    .projects-grid.all-projects,
    .about-values-grid,
    .about-gallery-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .home-about-media,
    .about-image-collage {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .about-brand-banner {
        height: 460px;
        min-height: 460px;
    }

    .about-brand-bg {
        min-height: 0;
        object-position: center top;
    }

    .about-brand-content {
        left: 20px;
        right: 20px;
        bottom: 26px;
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
        justify-items: center;
    }

    .about-brand-content img {
        width: 160px;
    }

    .about-brand-content p {
        font-size: 20px;
    }

    .home-about-media img:first-child,
    .about-collage-large {
        grid-row: auto;
    }

    .home-about-media img,
    .about-image-collage img {
        min-height: 220px;
    }

    .about-since-card {
        position: static;
        min-height: 110px;
    }

    .about-values-grid article,
    .about-gallery-grid article {
        min-height: 230px;
    }

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

    .project-slide-image {
        min-height: 280px;
    }

    .project-slide-content {
        min-height: 500px;
        padding: 36px 20px 84px;
    }

    .project-slide-kicker {
        margin-bottom: 26px;
    }

    .project-slide-content h3 {
        margin: 24px 0 18px;
    }

    .project-slide-content p:not(.project-slide-kicker) {
        font-size: 14px;
        line-height: 1.6;
    }

    .project-slide-content .btn {
        margin-top: 34px;
    }

    .reel-card {
        grid-template-columns: 74px 1fr;
        min-height: 94px;
    }

    .reel-card img {
        width: 74px;
        height: 74px;
    }

    .hero-location {
        font-size: 12px;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 0;
    }

    .hero-proof div,
    .hero-proof div + div {
        min-width: 0;
        padding: 0 14px 0 0;
        border-left: 0;
    }

    .hero-proof div:nth-child(2) {
        padding-left: 14px;
        border-left: 1px solid rgba(255, 255, 255, 0.18);
    }

    .num-card {
        width: min(90%, 390px);
        min-height: 118px;
        gap: 18px;
        padding: 20px 26px;
    }

    .num-card strong {
        font-size: 52px;
    }

    .num-card span {
        font-size: 24px;
    }

    .section,
    .awards-section,
    .contact-section {
        padding-block: 58px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .award-badge {
        position: static;
        margin-bottom: 20px;
    }

    .site-footer {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* ── Project Detail Pages ────────────────────────────────── */
.proj-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: end start;
    padding: 160px clamp(18px, 5vw, 72px) 80px;
    color: var(--paper);
    overflow: hidden;
    isolation: isolate;
}

.proj-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.38) 55%, rgba(0,0,0,.10) 100%);
}

.proj-hero img.proj-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.proj-hero-content {
    max-width: 860px;
}

.proj-hero-badge {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 20px;
}

.proj-hero h1 {
    margin: 0 0 14px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 5.2vw, 76px);
    line-height: 1.05;
    color: var(--paper);
}

.proj-hero-tagline {
    margin: 0;
    font-size: clamp(16px, 1.6vw, 20px);
    color: rgba(255,255,255,.78);
    font-style: italic;
}

.proj-hero-logo {
    display: block;
    height: 52px;
    width: auto;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
}

/* overview */
.proj-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
    align-items: start;
    padding: clamp(60px, 8vw, 100px) clamp(18px, 5vw, 72px);
    max-width: 1320px;
    margin: 0 auto;
}

.proj-overview-copy h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(26px, 3vw, 42px);
    margin: 10px 0 20px;
    color: var(--ink);
}

.proj-overview-copy p {
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 16px;
}

.proj-specs-box {
    background: var(--cream, #faf8f5);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 6px;
    padding: 32px 36px;
}

.proj-specs-box h3 {
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 24px;
    font-family: Inter, sans-serif;
    font-weight: 600;
}

.proj-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.07);
    font-size: 15px;
}

.proj-spec-row:last-child { border-bottom: none; }

.proj-spec-row strong {
    color: var(--ink);
    font-weight: 600;
    text-align: right;
    max-width: 55%;
}

.proj-spec-row span {
    color: var(--muted);
    flex-shrink: 0;
}

/* features */
.proj-features-section {
    background: #f8f5f1;
    padding: clamp(60px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.proj-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 48px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.proj-feature-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 6px;
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.proj-feature-card::before {
    content: "✦";
    flex-shrink: 0;
    color: var(--gold);
    font-size: 14px;
    margin-top: 2px;
}

.proj-feature-card span {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.5;
}

/* location */
.proj-location-section {
    padding: clamp(60px, 8vw, 96px) clamp(18px, 5vw, 72px);
    max-width: 1320px;
    margin: 0 auto;
}

.proj-location-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.proj-location-copy h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(26px, 3vw, 42px);
    margin: 10px 0 32px;
    color: var(--ink);
}

.proj-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.proj-location-card {
    background: var(--cream, #faf8f5);
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 6px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proj-location-card strong {
    font-size: 22px;
    color: var(--primary);
    font-weight: 700;
    font-family: "Playfair Display", Georgia, serif;
}

.proj-location-card span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.proj-location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(0,0,0,.12);
}

.proj-location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* gallery */
.proj-gallery-section {
    padding: clamp(60px, 8vw, 96px) clamp(18px, 5vw, 72px);
    background: var(--ink);
}

.proj-gallery-section .section-heading h2,
.proj-gallery-section .section-heading .eyebrow {
    color: var(--paper);
}

.proj-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 48px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.proj-gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.proj-gallery-grid img:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

/* back link */
.proj-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
    padding: 18px clamp(18px, 5vw, 72px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: color .2s;
}

.proj-back-link:hover { color: var(--primary); }

.proj-back-link::before { content: "←"; }

/* CTA strip */
.proj-cta-section {
    background: var(--primary);
    padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
    text-align: center;
    color: var(--paper);
}

.proj-cta-section h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3.6vw, 52px);
    margin: 0 0 16px;
    color: var(--paper);
}

.proj-cta-section p {
    font-size: clamp(15px, 1.4vw, 18px);
    color: rgba(255,255,255,.78);
    margin: 0 0 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.proj-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* responsive overrides */
@media (max-width: 900px) {
    .proj-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .proj-location-inner {
        grid-template-columns: 1fr;
    }

    .proj-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .proj-gallery-grid img:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .proj-hero {
        min-height: 380px;
        padding: 130px 18px 60px;
    }

    .proj-overview,
    .proj-location-section {
        padding-inline: 18px;
    }

    .proj-gallery-grid {
        grid-template-columns: 1fr;
    }

    .proj-gallery-grid img:first-child {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .proj-location-grid {
        grid-template-columns: 1fr;
    }
}
