/* ================================================
   PRESTIGE RETRAITE MAURICE
   Direction: Ultra Minimal Luxury
   Inspiration: Celine, Aesop, Aman Resorts
   Principle: Every element earns its place
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Karla:wght@200;300;400;500;600&display=swap');

:root {
    --white: #FAFAFA;
    --off: #F4F1EC;
    --black: #111111;
    --grey: #999999;
    --grey-l: #D9D5CF;
    --accent: #B09E82;
    --accent-h: #C4B396;

    --f-serif: 'Cormorant', 'Georgia', serif;
    --f-sans: 'Karla', system-ui, sans-serif;

    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }

body {
    font-family: var(--f-sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "kern" 1;
    text-rendering: optimizeLegibility;
}

::selection { background: var(--black); color: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---- Typography ---- */
h1, h2, h3 {
    font-family: var(--f-serif);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); line-height: 0.95; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 400; }

p { max-width: 52ch; }

.eyebrow {
    font-family: var(--f-sans);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--grey);
    margin-bottom: 16px;
}

/* ---- Layout ---- */
.w { max-width: 1140px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }
.w--n { max-width: 720px; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--f-sans); font-size: .7rem; font-weight: 500;
    letter-spacing: .15em; text-transform: uppercase;
    padding: 14px 36px; border: 1px solid var(--black); background: 0 0;
    color: var(--black); cursor: pointer; transition: all 400ms var(--ease); min-height: 48px;
}

.btn:hover { background: var(--black); color: var(--white); }

.btn--fill { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--fill:hover { background: var(--accent); border-color: var(--accent); }

.btn .arr { transition: transform 200ms ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn:focus-visible { outline: 1px solid var(--black); outline-offset: 4px; }

/* ================================================
   HEADER — Almost invisible, text only
   ================================================ */
.hd {
    position: fixed; top: 0; width: 100%; z-index: 900;
    padding: 20px 0;
    transition: all 400ms var(--ease);
    mix-blend-mode: difference;
}
.hd--open,
.hd:has(.hd__drop:hover),
.hd:has(.hd__drop-menu:hover) {
    mix-blend-mode: normal;
}

.hd.stuck {
    mix-blend-mode: normal;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-l);
}

.hd__in { display: flex; justify-content: space-between; align-items: center; max-width: 100%; padding: 0 clamp(32px, 4vw, 60px); }

.hd__logo { display: flex; align-items: center; gap: 14px; }
.hd__logo img { height: 60px; width: auto; object-fit: contain; }
.hd__logo span {
    font-family: var(--f-serif); font-size: 1.8rem; font-weight: 400;
    color: var(--white); letter-spacing: 0.02em;
}
.hd.stuck .hd__logo span { color: var(--black); }

.hd__nav { display: flex; align-items: center; gap: 36px; }
.hd__nav a {
    font-size: 1rem; font-weight: 500; letter-spacing: .12em;
    text-transform: uppercase; color: rgba(255,255,255,.7);
    transition: opacity 300ms ease;
}
.hd__nav a:hover { opacity: .5; }
.hd.stuck .hd__nav a { color: var(--black); }
.hd.stuck .hd__nav a:hover { color: var(--accent); }

/* Dropdown */
.hd__drop { position: relative; padding-bottom: 12px; margin-bottom: -12px; display: inline-flex; align-items: center; }
.hd__drop-trigger { display: inline-flex; align-items: center; gap: 4px; line-height: 1; }
.hd__drop-arr { font-size: .5rem; transition: transform 200ms ease; display: inline-block; }
.hd__drop:hover .hd__drop-arr { transform: rotate(180deg); }

.hd__drop-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    min-width: 220px; padding: 16px 0;
    background: rgba(250,250,250,.97); backdrop-filter: blur(20px);
    border: 1px solid var(--grey-l); opacity: 0; visibility: hidden;
    transition: opacity 300ms var(--ease), visibility 300ms;
    pointer-events: none;
}

.hd__drop:hover .hd__drop-menu { opacity: 1; visibility: visible; pointer-events: auto; }

.hd__drop-back { display: none; }

.hd__drop-menu a {
    display: block; padding: 8px 20px;
    font-size: .65rem !important; color: var(--black) !important;
    letter-spacing: .08em; text-transform: uppercase;
    transition: background 200ms ease, padding-left 200ms ease;
}

.hd__drop-menu a:hover { background: var(--off); padding-left: 28px; }

.hd__burger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    padding: 10px; border: 0; background: 0 0; min-width: 44px; min-height: 44px;
    justify-content: center; align-items: center;
}
.hd__burger i { width: 18px; height: 1px; background: var(--white); display: block; }
.hd.stuck .hd__burger i { background: var(--black); }

/* ================================================
   HERO — Full image, centered text, minimal
   ================================================ */
.hero {
    position: relative; height: 100vh; max-height: 100vh; min-height: 500px;
    display: flex; align-items: flex-end; justify-content: flex-start;
    text-align: left; overflow: hidden; width: 100%;
}

.hero__bg { position: absolute; inset: 0; }
.hero__bg img,
.hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero__bg video,
.hero__bg img { filter: brightness(1.1) contrast(1.05) saturate(1.15); }
.hero__bg::after {
    content: none;
}

.hero__body {
    position: relative; z-index: 2;
    padding: 0 0 clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
}
.hero h1 {
    color: #fff; margin-bottom: 16px;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.9; letter-spacing: -0.03em;
    opacity: 0; animation: fadeUp 800ms var(--ease) 300ms forwards;
}
.hero h1 em { font-style: italic; font-weight: 300; }
.hero__sub {
    font-size: 1.25rem; font-weight: 400; color: rgba(255,255,255,.9); max-width: 460px;
    margin: 0; line-height: 1.6; letter-spacing: .02em;
    opacity: 0; animation: fadeUp 800ms var(--ease) 500ms forwards;
}

.hero__cta {
    position: absolute; z-index: 2;
    bottom: clamp(48px, 6vw, 80px); right: clamp(32px, 5vw, 72px);
    font-family: var(--f-sans); font-size: .65rem; font-weight: 400;
    letter-spacing: .08em; color: rgba(255,255,255,.7);
    transition: color 200ms ease;
    opacity: 0; animation: fadeUp 800ms var(--ease) 700ms forwards;
}
.hero__cta:hover { color: #fff; }

/* ================================================
   WELCOME REVEAL — Editorial text fill animation
   ================================================ */
.wlc {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.wlc__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(32px, 6vw, 80px);
    text-align: center;
    position: relative;
    width: 100%;
}

/* Tag "Welcome" — bordered pill, top-left */
.wlc__tag {
    position: absolute;
    top: -60px;
    left: clamp(32px, 6vw, 80px);
}

.wlc__tag span {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: .6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--black);
    border: 1px solid var(--grey-l);
    padding: 6px 18px;
    border-radius: 20px;
}

/* Main text area */
.wlc__body {
    margin-bottom: 48px;
}

.wlc__txt {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(1.8rem, 3.8vw, 3.2rem);
    line-height: 1.35;
    letter-spacing: -0.01em;
    max-width: none;
    display: inline;
}

.wlc__txt--dark .rw { --reveal-to: var(--black); }
.wlc__txt--soft .rw { --reveal-to: var(--black); }

/* Individual word spans — animation targets */
.rw {
    display: inline-block;
    color: #E8E5E0;
    transition: color 800ms var(--ease);
    will-change: color;
}

.rw.lit { color: var(--reveal-to, var(--black)); }

/* CTA — bottom right */
.wlc__cta {
    display: flex;
    justify-content: flex-end;
}

.wlc__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-sans);
    font-size: .6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--black);
    transition: opacity 300ms ease;
}

.wlc__btn:hover { opacity: .5; }

.wlc__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--grey-l);
    border-radius: 50%;
    font-size: .85rem;
    transition: border-color 300ms ease;
}

.wlc__btn:hover .wlc__arrow { border-color: var(--black); }

@media (max-width: 768px) {
    .wlc { min-height: auto; padding: clamp(100px, 16vw, 160px) 0; }
    .wlc__tag { position: static; margin-bottom: 40px; text-align: left; }
    .wlc__cta { justify-content: center; }
}

/* ================================================
   SECTION — Intro
   ================================================ */
.intro {
    padding: clamp(80px, 12vw, 160px) 0;
}

.intro__row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px); align-items: center;
}

.intro__txt h2 { margin-bottom: 20px; }
.intro__txt p { color: var(--grey); margin-bottom: 12px; line-height: 1.8; }
.intro__quote {
    font-family: var(--f-serif); font-size: 1.15rem; font-style: italic;
    color: var(--accent); line-height: 1.6; margin-top: 32px;
}

.intro__vis { position: relative; }
.intro__img-a {
    width: 100%; aspect-ratio: 4/5; overflow: hidden;
}
.intro__img-a img { width: 100%; height: 100%; object-fit: cover; }
.intro__img-b {
    position: absolute; bottom: -32px; left: -32px;
    width: 45%; aspect-ratio: 3/4; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.08); border: 4px solid var(--white);
}
.intro__img-b img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================
   DIVIDER — thin line
   ================================================ */
.divider {
    width: 48px; height: 1px; background: var(--grey-l);
    margin: 0 auto;
}

/* ================================================
   BRAND MOSAIC — Logo left + image grid right
   ================================================ */
.bmos {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 100vh;
}

/* Left panel */
.bmos__left {
    background: var(--off);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: clamp(40px, 5vw, 80px);
}

.bmos__logo {
    display: flex;
    align-items: flex-start;
}

.bmos__name {
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: clamp(4rem, 8vw, 7.5rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--black);
}

.bmos__reg {
    font-family: var(--f-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
    margin-left: 4px;
    margin-top: 8px;
}

.bmos__bottom {
    position: absolute;
    bottom: clamp(24px, 3vw, 40px);
    left: clamp(32px, 4vw, 56px);
    right: clamp(32px, 4vw, 56px);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bmos__link,
.bmos__tagline,
.bmos__year {
    font-family: var(--f-sans);
    font-size: .55rem;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--grey);
}

.bmos__tagline {
    text-align: center;
    text-transform: none;
    letter-spacing: .02em;
    line-height: 1.5;
}

.bmos__link { cursor: pointer; transition: color 200ms ease; }
.bmos__link:hover { color: var(--black); }

/* Right panel — mosaic */
.bmos__right {
    background: #0a0a0a;
    overflow: hidden;
    padding: 0 10px;
}

.bmos__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 10px;
    height: 100%;
}

.bmos__item {
    overflow: hidden;
}

.bmos__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 500ms var(--ease);
}

.bmos__item:hover img { transform: scale(1.04); }

/* Masonry layout positions */
.bmos__item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.bmos__item:nth-child(2) { grid-column: 2; grid-row: 1; }
.bmos__item:nth-child(3) { grid-column: 3; grid-row: 1 / 3; }
.bmos__item:nth-child(4) { grid-column: 1; grid-row: 3; }
.bmos__item:nth-child(5) { grid-column: 2; grid-row: 2 / 4; }
.bmos__item:nth-child(6) { grid-column: 3; grid-row: 3; }

@media (max-width: 1024px) {
    .bmos { grid-template-columns: 1fr; }
    .bmos__left { min-height: 60vh; }
    .bmos__grid { grid-auto-rows: minmax(120px, 200px); }
}

@media (max-width: 768px) {
    .bmos__grid { grid-template-columns: 1fr; }
    .bmos__item--tall { grid-row: span 1; }
    .bmos__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ================================================
   DARK CAROUSEL — Horizontal scroll gallery
   ================================================ */
.dkcar {
    background: #0a0a0a;
    padding: clamp(20px, 3vw, 32px) 0;
    overflow: hidden;
    cursor: grab;
}

.dkcar:active { cursor: grabbing; }

.dkcar__track {
    display: flex;
    gap: 12px;
    padding: 0 clamp(20px, 3vw, 32px);
    user-select: none;
}

.dkcar__slide {
    flex: 0 0 55%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.dkcar__slide:last-child {
    flex: 0 0 55%;
}

.dkcar__label {
    padding: 0 0 12px;
}

.dkcar__label h4 {
    font-family: var(--f-sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.95);
    margin-bottom: 6px;
}

.dkcar__label span {
    font-family: var(--f-sans);
    font-size: .95rem;
    font-weight: 300;
    color: rgba(255,255,255,.6);
    letter-spacing: .04em;
}

.dkcar__img {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 2px;
}

.dkcar__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 500ms var(--ease);
}

.dkcar__slide:hover .dkcar__img img { transform: scale(1.03); }

@media (max-width: 1024px) {
    .dkcar__slide { flex: 0 0 70%; }
    .dkcar__slide:last-child { flex: 0 0 55%; }
}

@media (max-width: 768px) {
    .dkcar__slide { flex: 0 0 85%; }
    .dkcar__slide:last-child { flex: 0 0 70%; }
}

/* ================================================
   FULL IMAGE
   ================================================ */
.full-img {
    width: 100%; height: 70vh; min-height: 400px; max-height: 600px;
    overflow: hidden;
}
.full-img img,
.full-img video { width: 100%; height: 100%; object-fit: cover; }

/* ================================================
   STATS CARDS — Edge-to-edge cards
   ================================================ */
.stcards {
    background: #f5f5f5;
    padding: clamp(16px, 2vw, 24px) 0;
}

.stcards__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stcards__card {
    background: #f5f5f5;
    padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 44px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    border-left: 1px solid #e0e0e0;
}

.stcards__card:first-child {
    border-left: none;
}

.stcards__num {
    font-family: 'Inter', var(--f-sans);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    color: #333;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1;
}

.stcards__txt {
    margin: 0;
    font-family: 'Inter', var(--f-sans);
    font-size: .75rem;
    line-height: 1.45;
    color: #555;
    font-weight: 400;
    max-width: none;
}

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

@media (max-width: 768px) {
    .stcards__row { grid-template-columns: 1fr; }
    .stcards__card { min-height: 150px; }
}

/* ================================================
   VILLAS — Large images, text below
   ================================================ */
.villas { padding: clamp(80px, 12vw, 160px) 0; }
.villas__head { text-align: center; margin-bottom: clamp(48px, 8vw, 80px); }

.vl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.vl-card { }
.vl-card__img { width: 100%; aspect-ratio: 4/3; overflow: hidden; margin-bottom: 20px; position: relative; }
.vl-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.vl-card:hover .vl-card__img img { transform: scale(1.03); }
.vl-card__tag {
    position: absolute; bottom: 12px; left: 12px;
    font-size: .6rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
    color: #fff; background: rgba(0,0,0,.5); padding: 4px 12px;
    backdrop-filter: blur(4px);
}
.vl-card h3 { margin-bottom: 8px; }
.vl-card p { color: var(--grey); font-size: .88rem; line-height: 1.75; margin-bottom: 16px; }
.vl-card__feats { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.vl-card__feat { font-size: .72rem; color: var(--grey); letter-spacing: .04em; }

/* ================================================
   EDITORIAL SHOWCASE — Luxury editorial layout
   ================================================ */
.edtl {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--off);
}

.edtl__w {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px);
}

/* Top: title left + aside right */
.edtl__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: end;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.edtl__h {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--black);
}

.edtl__h span {
    color: var(--accent);
    font-style: italic;
    text-transform: none;
}

.edtl__aside p {
    font-size: .85rem;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 320px;
}

.edtl__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--f-sans);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--black);
    border: 1px solid var(--black);
    padding: 10px 24px;
    transition: all 300ms var(--ease);
}

.edtl__link:hover { background: var(--black); color: var(--white); }

/* Images — asymmetric editorial offset */
.edtl__img {
    margin-bottom: clamp(48px, 6vw, 80px);
    overflow: hidden;
}

.edtl__img img {
    width: 100%;
    aspect-ratio: 16/8;
    object-fit: cover;
    display: block;
    transition: transform 600ms var(--ease);
}

.edtl__img:hover img { transform: scale(1.02); }

/* Image 1: flush right, margin on left */
.edtl__img--right {
    margin-left: 24%;
    margin-right: 0;
}

/* Image 2: flush left, margin on right */
.edtl__img--left {
    margin-right: 24%;
    margin-left: 0;
}

/* Middle: paragraph left + title right */
.edtl__mid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.edtl__mid-txt p {
    font-size: .85rem;
    color: var(--grey);
    line-height: 1.8;
    max-width: 360px;
}

.edtl__h--r {
    text-align: right;
}

/* Bottom: two columns */
.edtl__bot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    padding-top: clamp(32px, 4vw, 48px);
}

.edtl__col p {
    font-size: .82rem;
    color: var(--grey);
    line-height: 1.85;
    max-width: none;
}

@media (max-width: 768px) {
    .edtl__top { grid-template-columns: 1fr !important; gap: 24px !important; }
    .edtl__mid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .edtl__h--r { text-align: left; }
    .edtl__mid-txt { order: 1; margin-left: 0 !important; margin-right: 0 !important; }
    .edtl__aside { margin-left: 0 !important; margin-right: 0 !important; }
    .edtl__aside p,
    .edtl__mid-txt p { max-width: none !important; }
    .edtl__h,
    .edtl__h--r { white-space: normal !important; font-size: clamp(1.6rem, 6vw, 2.2rem) !important; }
    .edtl__bot { grid-template-columns: 1fr; gap: 24px; }
    .edtl__img { aspect-ratio: 16/9; }
    .edtl__img--right,
    .edtl__img--left { margin-left: 0 !important; margin-right: 0 !important; }
    .edtl__img img { aspect-ratio: 16/10; }
    .psvc__title { white-space: normal !important; font-size: clamp(1.6rem, 6vw, 2.2rem) !important; }
    .sec__hero-img { margin-bottom: 0 !important; }
    .edtl:has(.sec__hero-img) { padding-bottom: 0 !important; }
    .edtl:has(.sec__hero-img) + .prnc { margin-top: 0 !important; }
    .hero__sub { white-space: normal !important; max-width: 100% !important; font-size: .95rem !important; }
    .full-img { height: auto !important; min-height: 0 !important; max-height: none !important; aspect-ratio: 16/9; }
}

/* ================================================
   SERVICES — Simple text list, separated by thin lines
   ================================================ */
.services { padding: clamp(80px, 12vw, 160px) 0; background: var(--off); }
.services__head { text-align: center; margin-bottom: clamp(48px, 6vw, 64px); }
.services__head p { color: var(--grey); margin: 12px auto 0; }

.svc-list { max-width: 700px; margin: 0 auto; }
.svc-item {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 20px 0; border-bottom: 1px solid var(--grey-l);
    transition: padding-left 300ms var(--ease);
}
.svc-item:first-child { border-top: 1px solid var(--grey-l); }
.svc-item:hover { padding-left: 12px; }
.svc-item h3 { font-size: 1.15rem; }
.svc-item span { font-size: .78rem; color: var(--grey); font-style: italic; }

/* ================================================
   PROJECT SHOWCASE — Split hero + about + gallery
   ================================================ */
.proj { background: var(--white); }

/* --- Hero split --- */
.proj__hero {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 75vh;
}

.proj__left {
    background: var(--off);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-right: 1px solid var(--grey-l);
}

.proj__left-inner { display: flex; flex-direction: column; }

.proj__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 40px;
}

.proj__meta span {
    font-size: .65rem;
    color: var(--grey);
    letter-spacing: .04em;
    line-height: 1.6;
}

.proj__title {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
}

.proj__sub {
    font-size: .72rem;
    color: var(--grey);
    font-style: italic;
    margin-bottom: 28px;
    max-width: none;
}

.proj__btn {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--black);
    border: 1px solid var(--black);
    padding: 12px 28px;
    transition: all 300ms var(--ease);
}

.proj__btn:hover { background: var(--black); color: var(--white); }

.proj__btn--dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.proj__btn--dark:hover { background: var(--accent); border-color: var(--accent); }

/* --- Slider --- */
.proj__slider {
    position: relative;
    overflow: hidden;
}

.proj__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.proj__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 800ms var(--ease);
}

.proj__slide.active { opacity: 1; }

.proj__slider-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.5);
    background: rgba(0,0,0,.2);
    backdrop-filter: blur(4px);
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease;
    padding: 0;
}

.proj__slider-arrow:hover { background: rgba(0,0,0,.45); border-color: #fff; }

.proj__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.proj__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 300ms ease;
}

.proj__dot.active { background: #fff; }

/* --- About section --- */
.proj__about {
    padding: clamp(32px, 5vw, 56px) clamp(32px, 5vw, 72px);
    border-bottom: 1px solid var(--grey-l);
}

.proj__about-title {
    font-family: var(--f-sans);
    font-size: .95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--grey);
    margin-bottom: clamp(28px, 4vw, 48px);
}

.proj__cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(24px, 3vw, 48px);
}

.proj__col p {
    font-size: 1.05rem;
    color: var(--grey);
    line-height: 1.85;
    margin-bottom: 16px;
    max-width: none;
}

.proj__col h4 {
    font-family: var(--f-sans);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.proj__col-link a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 200ms ease;
}

.proj__col-link a:hover { color: var(--accent); }

/* --- Gallery --- */
.proj__gallery {
    padding: clamp(32px, 4vw, 48px) 0 clamp(48px, 6vw, 80px);
}

.proj__gallery-label {
    font-size: .65rem;
    color: var(--grey);
    letter-spacing: .04em;
    font-style: italic;
    margin-bottom: 20px;
    max-width: none;
    padding: 0 clamp(24px, 5vw, 64px);
}

.proj__gallery-row {
    overflow: hidden;
    margin-bottom: 20px;
}

.proj__gallery-track {
    display: flex;
    gap: 12px;
    transition: transform 400ms var(--ease);
}

.proj__gal-item {
    flex: 0 0 20%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.proj__gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms var(--ease);
}

.proj__gal-item:hover img { transform: scale(1.04); }

.proj__gallery-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(24px, 5vw, 64px);
}

.proj__arrows {
    display: flex;
    gap: 8px;
}

.proj__arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--grey-l);
    background: transparent;
    cursor: pointer;
    font-size: .9rem;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease;
}

.proj__arrow:hover { background: var(--black); color: var(--white); border-color: var(--black); }

@media (max-width: 1024px) {
    .proj__cols { grid-template-columns: 1fr 1fr; }
    .proj__gal-item { flex: 0 0 30%; }
}

@media (max-width: 768px) {
    .proj__hero { grid-template-columns: 1fr; min-height: auto; }
    .proj__left { padding: 32px 24px; }
    .proj__slider { aspect-ratio: 16/10; }
    .proj__cols { grid-template-columns: 1fr; }
    .proj__gal-item { flex: 0 0 70%; }
}

/* ================================================
   INTERIOR COMPLETION — Split hero + grid + CTA
   ================================================ */
.intc {
    background: var(--off);
}

/* Hero: images left + info right */
.intc__hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 70vh;
}

.intc__imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.intc__img-main,
.intc__img-sm {
    overflow: hidden;
}

.intc__img-main img,
.intc__img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intc__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 72px);
}

.intc__title {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 20px;
}

.intc__desc {
    font-size: .8rem;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 380px;
}

.intc__btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.intc__btn {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 1px solid var(--black);
    color: var(--black);
    transition: all 300ms var(--ease);
}

.intc__btn:hover { background: var(--black); color: var(--white); }

.intc__btn--fill {
    background: var(--black);
    color: var(--white);
}

.intc__btn--fill:hover { background: var(--accent); border-color: var(--accent); }

/* Why section: title left + numbered grid */
.intc__why {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
    padding: clamp(48px, 8vw, 100px) clamp(32px, 5vw, 72px);
    border-top: 1px solid var(--grey-l);
    border-bottom: 1px solid var(--grey-l);
}

.intc__why--flush {
    padding-top: 0 !important;
}

.pg-split--align-center { align-items: center; }

.pg-split--flush-r {
    margin-bottom: 0 !important;
    margin-right: calc(-1 * clamp(32px, 5vw, 72px));
}

.pg-split--flush-l {
    margin-bottom: 0 !important;
    margin-left: calc(-1 * clamp(32px, 5vw, 72px));
}

/* Light variant of prnc__cols for light backgrounds */
.prnc__cols--light .prnc__col h4 { color: var(--black); }
.prnc__cols--light .prnc__col p { color: var(--grey); }

.intc__why-title {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--black);
}

.intc__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
}

.intc__point {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.intc__num {
    font-family: var(--f-sans);
    font-size: .65rem;
    font-weight: 600;
    color: var(--grey);
    letter-spacing: .08em;
}

.intc__point p {
    font-size: .78rem;
    color: var(--grey);
    line-height: 1.75;
    max-width: none;
}

/* Bottom: image left + text right */
.intc__bot {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.intc__bot-img {
    overflow: hidden;
}

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

.intc__bot-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 72px);
    background: var(--white);
}

@media (max-width: 1024px) {
    .intc__hero { grid-template-columns: 1fr; }
    .intc__imgs { min-height: 50vh; }
    .intc__why { grid-template-columns: 1fr; }
    .intc__bot { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .intc__imgs { grid-template-columns: 1fr; }
    .intc__grid { grid-template-columns: 1fr; }
}

/* ================================================
   SOFTWARE / INNOVATION — Split images + bold text
   ================================================ */
.sftw {
    background: var(--white);
    padding: 0;
}

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

.sftw__img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.sftw__img--dark {
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sftw__play {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 300ms ease;
}

.sftw__play:hover { border-color: #fff; }

.sftw__label {
    position: absolute;
    bottom: 16px;
    left: 20px;
    font-size: .55rem;
    font-weight: 400;
    letter-spacing: .06em;
    color: rgba(0,0,0,.4);
}

.sftw__label--r {
    color: rgba(255,255,255,.35);
    left: auto;
    right: 20px;
}

/* Bold justified text */
.sftw__txt {
    padding: clamp(32px, 5vw, 56px) clamp(32px, 5vw, 72px);
}

.sftw__txt p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4.8vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    text-align: justify;
    text-align-last: left;
    max-width: none;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    .sftw__imgs { grid-template-columns: 1fr; }
    .sftw__img--dark { aspect-ratio: 16/9; }
}

/* ================================================
   STUDIO SECTION — About + Projects + Services
   ================================================ */
.stdo__pad {
    padding: 0 clamp(32px, 5vw, 72px);
}

/* --- About --- */
.stdo__about {
    padding: clamp(64px, 8vw, 120px) 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-l);
}

.stdo__h {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
}

.stdo__about-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.stdo__about-desc {
    font-size: .78rem;
    color: var(--grey);
    line-height: 1.8;
    max-width: none;
    padding-top: 6px;
}

/* Stats */
.stdo__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 40px);
    border-top: 1px solid var(--grey-l);
    padding-top: clamp(24px, 3vw, 40px);
}

.stdo__stat-n {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--black);
    display: block;
    margin-bottom: 8px;
}

.stdo__stat p {
    font-size: .68rem;
    color: var(--grey);
    line-height: 1.6;
    max-width: none;
}

/* --- Selected Projects --- */
.stdo__proj {
    padding: clamp(64px, 8vw, 120px) 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-l);
}

.stdo__proj-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
    margin-bottom: clamp(24px, 3vw, 36px);
}

.stdo__proj-desc {
    font-size: .78rem;
    color: var(--grey);
    line-height: 1.8;
    max-width: none;
    padding-top: 6px;
}

.stdo__proj-tabs {
    display: flex;
    gap: 32px;
    margin-bottom: clamp(28px, 4vw, 48px);
    border-bottom: 1px solid var(--grey-l);
    padding-bottom: 14px;
}

.stdo__tab {
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .04em;
    color: var(--grey);
    cursor: pointer;
    transition: color 200ms ease;
}

.stdo__tab.active {
    color: var(--black);
    font-weight: 500;
}

.stdo__tab:hover { color: var(--black); }

/* Project grid */
.stdo__proj-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 32px);
    margin-bottom: clamp(32px, 4vw, 48px);
}

.stdo__proj-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--off);
}

.stdo__proj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms var(--ease);
}

.stdo__proj-card:hover .stdo__proj-img img { transform: scale(1.03); }

.stdo__proj-card h4 {
    font-family: var(--f-sans);
    font-size: .8rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.stdo__proj-card span {
    font-size: .65rem;
    color: var(--grey);
    letter-spacing: .03em;
}

.stdo__proj-more { text-align: center; }

.stdo__btn {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--black);
    background: transparent;
    border: 1px solid var(--black);
    border-radius: 24px;
    padding: 12px 32px;
    cursor: pointer;
    transition: all 300ms var(--ease);
}

.stdo__btn:hover { background: var(--black); color: var(--white); }

/* --- Services list --- */
.stdo__svc {
    padding: clamp(64px, 8vw, 120px) 0;
    background: var(--white);
}

.stdo__svc--off { background: var(--off); }

.stdo__svc-list--nonum .stdo__svc-item {
    grid-template-columns: 200px 1fr;
}

@media (max-width: 1024px) {
    .stdo__svc-list--nonum .stdo__svc-item { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .stdo__svc-list--nonum .stdo__svc-item { grid-template-columns: 1fr; }
}

.stdo__svc-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    max-width: 800px;
    margin-bottom: clamp(32px, 4vw, 56px);
    -webkit-font-smoothing: antialiased;
}

.stdo__svc-list {
    border-top: 1px solid var(--grey-l);
}

.stdo__svc-item {
    display: grid;
    grid-template-columns: 48px 200px 1fr;
    gap: clamp(16px, 3vw, 40px);
    padding: clamp(20px, 2.5vw, 32px) 0;
    border-bottom: 1px solid var(--grey-l);
    align-items: start;
}

.stdo__svc-num {
    font-family: var(--f-sans);
    font-size: .75rem;
    font-weight: 600;
    color: var(--grey);
}

.stdo__svc-name h4 {
    font-family: var(--f-sans);
    font-size: .82rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
}

.stdo__svc-desc p {
    font-size: .75rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 6px;
    max-width: none;
}

.stdo__svc-price {
    font-size: .65rem;
    color: var(--grey);
    font-style: italic;
}

@media (max-width: 1024px) {
    .stdo__about-row, .stdo__proj-head { grid-template-columns: 1fr; }
    .stdo__stats { grid-template-columns: 1fr 1fr; }
    .stdo__svc-item { grid-template-columns: 48px 1fr; }
    .stdo__svc-desc { grid-column: 2; }
}

@media (max-width: 768px) {
    .stdo__proj-grid { grid-template-columns: 1fr; }
    .stdo__stats { grid-template-columns: 1fr 1fr; }
    .stdo__svc-item { grid-template-columns: 1fr; }
    .stdo__svc-num { margin-bottom: -8px; }
    .stdo__svc-desc { grid-column: 1; }
}

/* ================================================
   PRINCIPLES — Dark section with image overlay
   ================================================ */
.prnc {
    background: #0A0A0A;
    color: #fff;
}

.prnc__pad {
    padding: clamp(48px, 8vw, 100px) clamp(32px, 5vw, 72px) clamp(32px, 4vw, 48px);
}

.prnc__title {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: clamp(36px, 5vw, 64px);
}

.prnc__cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
}

.prnc__col h4 {
    font-family: var(--f-sans);
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,.9);
}

.prnc__col p {
    font-size: .72rem;
    font-weight: 300;
    color: rgba(255,255,255,.45);
    line-height: 1.8;
    max-width: none;
}

/* Image with bottom overlay */
.prnc__img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.prnc__img > img {
    width: 100%;
    display: block;
    max-height: 65vh;
    object-fit: cover;
}

.prnc__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
    padding: clamp(80px, 10vw, 140px) clamp(32px, 5vw, 72px) clamp(32px, 4vw, 48px);
}

.prnc__btm {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 48px);
}

.prnc__btm-col {
    border-left: 1px solid rgba(255,255,255,.2);
    padding-left: clamp(16px, 2.5vw, 32px);
}

.prnc__btm-col:first-child {
    border-left: none;
    padding-left: 0;
}

.prnc__btm-col h4 {
    font-family: var(--f-sans);
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #fff;
}

.prnc__btm-col p {
    font-size: .68rem;
    font-weight: 300;
    color: rgba(255,255,255,.4);
    line-height: 1.75;
    max-width: none;
}

@media (max-width: 1024px) {
    .prnc__cols { grid-template-columns: 1fr 1fr; }
    .prnc__btm { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .prnc__cols { grid-template-columns: 1fr; }
    .prnc__btm { grid-template-columns: 1fr; }
}

/* ================================================
   PROVIDED SERVICES — Split title + list
   ================================================ */
.psvc {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--off);
}

.psvc__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    padding: clamp(96px, 11vw, 160px) clamp(32px, 5vw, 72px) 0;
    align-items: start;
}

.psvc__title {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--black);
}

.psvc__title span {
    color: var(--accent);
    font-style: italic;
    text-transform: none;
}

.psvc__list {
    padding-top: 12px;
}

.psvc__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--grey-l);
}

.psvc__item:first-child {
    border-top: 1px solid var(--grey-l);
}

.psvc__label {
    font-family: var(--f-sans);
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--black);
}

.psvc__circle {
    width: 28px;
    height: 28px;
    border: 1px solid var(--grey-l);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--grey);
    transition: all 200ms ease;
    flex-shrink: 0;
}

.psvc__item:hover .psvc__circle {
    border-color: var(--black);
    color: var(--black);
}

.psvc__cta {
    display: flex;
    justify-content: flex-start;
    margin-top: 28px;
}

.psvc__btn {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--black);
    border: 1px solid var(--grey-l);
    border-radius: 20px;
    padding: 10px 24px;
    transition: all 300ms var(--ease);
}

.psvc__btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }

@media (max-width: 768px) {
    .psvc__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ================================================
   FISCAL — Clean, two columns
   ================================================ */
.fiscal { padding: clamp(80px, 12vw, 160px) 0; }
.fiscal__row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 100px); align-items: center; }
.fiscal__txt h2 { margin-bottom: 16px; }
.fiscal__txt > p { color: var(--grey); margin-bottom: 28px; }

.fiscal__list { display: flex; flex-direction: column; }
.fiscal__item {
    display: flex; align-items: baseline; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--grey-l);
}
.fiscal__item:first-child { border-top: 1px solid var(--grey-l); }
.fiscal__check { font-size: .75rem; color: var(--accent); font-weight: 600; }
.fiscal__item h4 { font-family: var(--f-sans); font-size: .85rem; font-weight: 500; }

.fiscal__img { width: 100%; aspect-ratio: 3/4; overflow: hidden; position: relative; }
.fiscal__img img { width: 100%; height: 100%; object-fit: cover; }
.fiscal__badge {
    position: absolute; bottom: 24px; right: 24px;
    background: var(--white); padding: 20px 24px; text-align: center;
}
.fiscal__badge-n { font-family: var(--f-serif); font-size: 2.4rem; font-weight: 300; line-height: 1; }
.fiscal__badge-l { font-size: .55rem; text-transform: uppercase; letter-spacing: .12em; color: var(--grey); font-weight: 500; margin-top: 4px; }

/* ================================================
   SECURITY — Minimal, dark
   ================================================ */
.security { padding: clamp(80px, 12vw, 160px) 0; background: var(--black); color: #fff; }
.security__row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 80px); align-items: center; }
.security h2 { margin-bottom: 12px; }
.security > .w > .security__row > div:first-child > p { color: rgba(255,255,255,.5); margin-bottom: 32px; }

.sec-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sec-feat h4 { font-family: var(--f-sans); font-size: .78rem; font-weight: 500; margin-bottom: 4px; }
.sec-feat p { font-size: .72rem; color: rgba(255,255,255,.35); line-height: 1.6; }

.security__img { width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.security__img img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================
   ARCHITECTURAL CTA — Blueprint background + text reveal
   ================================================ */
.arch-cta {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #F2F0EC;
}

.arch-cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.arch-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    opacity: .35;
}

.arch-cta__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.arch-cta__heading {
    font-family: var(--f-sans);
    font-weight: 700;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: left;
    max-width: 500px;
    margin-bottom: 24px;
}

.arch-cta__desc {
    font-family: var(--f-sans);
    font-size: clamp(.6rem, 1vw, .72rem);
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1.8;
    text-align: left;
    max-width: 500px;
    align-self: flex-end;
    padding-left: 160px;
}

/* Reveal words */
.arch-cta .rw-a {
    display: inline-block;
    color: #DDD9D3;
    transition: color 700ms var(--ease);
    will-change: color;
}

.arch-cta .rw-a.lit { color: var(--black); }

@media (max-width: 768px) {
    .arch-cta { min-height: 60vh; }
    .arch-cta__content { align-items: flex-start; }
    .arch-cta__desc { padding-left: 0; }
    .arch-cta__bg img { object-position: center center; opacity: .2; }
}

/* ================================================
   DISCUSS PROJECT CTA — Split light/dark
   ================================================ */
.dscta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 55vh;
}

.dscta__left {
    background: var(--off);
    padding: clamp(40px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
}

.dscta__title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.dscta__preview {
    max-width: 200px;
}

.dscta__preview img {
    width: 100%;
    display: block;
}

.dscta__btn {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--black);
    border: 1px solid var(--black);
    padding: 12px 28px;
    align-self: center;
    transition: all 300ms var(--ease);
}

.dscta__btn:hover { background: var(--black); color: var(--white); }

.dscta__right {
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .dscta { grid-template-columns: 1fr; }
    .dscta__right { aspect-ratio: 16/10; }
}

/* ================================================
   CONTACT — Ultra clean
   ================================================ */
.contact { padding: clamp(80px, 12vw, 160px) 0; background: var(--off); }
.contact__inner { max-width: 560px; margin: 0 auto; text-align: center; }
.contact__inner h2 { margin-bottom: 8px; }
.contact__inner > p { color: var(--grey); margin: 0 auto 32px; white-space: nowrap; font-size: 1.05rem; line-height: 1.7; }

.contact .c-field input,
.contact .c-field textarea,
.contact .c-field select { font-size: 1.05rem; }
.contact .c-select__trigger { font-size: 1.05rem; }
.contact .c-select__option { font-size: 1rem; }
.contact .c-submit { font-size: .85rem; padding: 12px 28px; min-height: 0; }

.c-form { text-align: left; }
.c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.c-field { margin-bottom: 12px; }
.c-field input {
    width: 100%; padding: 0; border: 0; border-bottom: 1px solid var(--grey-l);
    font-family: var(--f-sans); font-size: .85rem; font-weight: 300;
    color: var(--black); background: transparent; outline: none;
    transition: border-color 300ms ease;
    height: 48px; line-height: 48px;
    box-sizing: border-box;
}
.c-field input:focus,
.c-field select:focus,
.c-field textarea:focus { border-color: var(--black); }
.c-field input::placeholder,
.c-field textarea::placeholder { color: var(--grey); }
.c-field select,
.c-field textarea {
    width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid var(--grey-l);
    font-family: var(--f-sans); font-size: .85rem; font-weight: 300;
    color: var(--black); background: transparent; outline: none;
    transition: border-color 300ms ease;
}
.c-field select { display: none; }

/* Custom dropdown */
.c-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}
.c-select__trigger {
    padding: 0;
    height: 48px;
    box-sizing: border-box;
    border: 0;
    border-bottom: 1px solid var(--grey-l);
    font-family: var(--f-sans);
    font-size: .85rem;
    font-weight: 300;
    color: var(--grey);
    transition: border-color 300ms ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.c-select__trigger.has-value { color: var(--black); }
.c-select__trigger::after {
    content: '\25BE';
    font-size: .7rem;
    color: var(--grey);
    transition: transform 200ms ease;
}
.c-select.open .c-select__trigger { border-color: var(--black); }
.c-select.open .c-select__trigger::after { transform: rotate(180deg); }
.c-select__options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--grey-l);
    max-height: 240px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.c-select.open .c-select__options { display: block; }
.c-select__option {
    padding: 10px 16px;
    font-family: var(--f-sans);
    font-size: .8rem;
    font-weight: 300;
    color: var(--black);
    transition: background 150ms ease;
}
.c-select__option:hover { background: var(--off); }
.c-select__option.selected { font-weight: 500; }
.c-field textarea { resize: vertical; min-height: 100px; }
.c-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.c-tel { pointer-events: none; }
.ft__tel { pointer-events: none; }
@media (max-width: 1024px) {
    .c-tel { pointer-events: auto; }
    .ft__tel { pointer-events: auto; }
}
.c-submit { width: 100%; justify-content: center; }
.c-error { display: block; font-size: .68rem; color: #c0392b; margin-top: 4px; }

/* ================================================
   FOOTER — Editorial mega footer
   ================================================ */
.ft {
    padding: 0;
    background: var(--off);
    border-top: 1px solid var(--grey-l);
}

/* Top columns */
.ft__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: clamp(24px, 4vw, 48px);
    padding: clamp(24px, 3vw, 40px) clamp(32px, 5vw, 72px);
    border-bottom: 1px solid var(--grey-l);
}

.ft__col h5 {
    font-family: var(--f-sans);
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--black);
    margin-bottom: 18px;
}

.ft__col a,
.ft__col span {
    display: block;
    font-size: .95rem;
    color: var(--grey);
    line-height: 2;
    transition: color 200ms ease;
}

.ft__col a:hover { color: var(--black); }

.ft__col--legal p {
    font-size: .85rem;
    color: var(--grey);
    line-height: 1.7;
    max-width: none;
}

.ft__socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.ft__socials a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--grey-l);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: all 200ms ease;
}

.ft__socials a:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Big name */
.ft__big {
    padding: clamp(20px, 3vw, 32px) clamp(32px, 5vw, 72px);
    border-bottom: 1px solid var(--grey-l);
    overflow: hidden;
}

.ft__big span,
.ft__big em {
    font-family: var(--f-sans);
    font-weight: 700;
    font-size: clamp(2.2rem, 12vw, 10rem);
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--black);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .ft__big {
        text-align: left;
        padding-left: clamp(24px, 5vw, 32px);
        padding-right: clamp(24px, 5vw, 32px);
    }
    .ft__big span,
    .ft__big em {
        font-size: clamp(1.4rem, 7vw, 2.2rem);
    }
}

.ft__big em {
    font-style: normal;
    font-weight: 300;
}

/* Bottom bar */
.ft__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px clamp(32px, 5vw, 72px);
    flex-wrap: wrap;
    gap: 12px;
}

.ft__bottom span {
    font-size: .85rem;
    color: var(--grey);
    letter-spacing: .04em;
}

/* Accordion summary (hidden on desktop, visible on mobile) */
.ft__col--accord summary {
    list-style: none;
    cursor: pointer;
}
.ft__col--accord summary::-webkit-details-marker { display: none; }
.ft__col--accord summary h5 { margin-bottom: 0; }

/* Desktop: open state always, no chevron */
@media (min-width: 769px) {
    .ft__col--accord summary {
        pointer-events: none;
        margin-bottom: 18px;
    }
    .ft__col--accord summary h5 { margin-bottom: 0; }
    .ft__col--accord .ft__col-body {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .ft__top {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 24px clamp(24px, 5vw, 32px);
    }
    .ft__col--accord {
        border-bottom: 1px solid var(--grey-l);
        padding: 14px 0;
    }
    .ft__col--accord:first-of-type {
        border-top: 1px solid var(--grey-l);
    }
    .ft__col--accord summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
    }
    .ft__col--accord summary::after {
        content: '+';
        font-size: 1.2rem;
        font-weight: 300;
        color: var(--grey);
        transition: transform 300ms var(--ease);
        margin-left: 16px;
        flex-shrink: 0;
        display: inline-block;
    }
    .ft__col--accord[open] summary::after {
        transform: rotate(45deg);
    }
    .ft__col--accord .ft__col-body {
        padding: 8px 0 16px;
    }
    .ft__col--legal {
        padding: 20px 0;
    }
    .ft__bottom { flex-direction: column; text-align: left; align-items: flex-start; padding-left: clamp(24px, 5vw, 32px); padding-right: clamp(24px, 5vw, 32px); }
}

/* ================================================
   ANIMATIONS — Subtle, slow
   ================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.rv { opacity: 0; transform: translateY(32px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.rv.on { opacity: 1; transform: translateY(0); }
.rv-l { opacity: 0; transform: translateX(-32px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.rv-l.on { opacity: 1; transform: translateX(0); }
.rv-r { opacity: 0; transform: translateX(32px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.rv-r.on { opacity: 1; transform: translateX(0); }

.stg > * { opacity: 0; transform: translateY(16px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
.stg.on > *:nth-child(1) { transition-delay: .05s; }
.stg.on > *:nth-child(2) { transition-delay: .1s; }
.stg.on > *:nth-child(3) { transition-delay: .15s; }
.stg.on > *:nth-child(4) { transition-delay: .2s; }
.stg.on > *:nth-child(5) { transition-delay: .25s; }
.stg.on > *:nth-child(6) { transition-delay: .3s; }
.stg.on > * { opacity: 1; transform: translateY(0); }

/* ================================================
   INTERIOR PAGES — Shared components
   ================================================ */

/* Page Hero */
.pg-hero {
    position: relative; height: 60vh; min-height: 400px;
    display: flex; align-items: flex-end; justify-content: flex-start;
    overflow: hidden;
}
.pg-hero--short { height: 55vh; }
.pg-hero .eyebrow--dark { color: #111; }
.eyebrow--accent { color: var(--accent); }
.pg-section__gap { margin-top: clamp(40px, 5vw, 64px); }

.pg-hero__bg { position: absolute; inset: 0; }
.pg-hero__bg img,
.pg-hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.pg-hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
}

.pg-hero__body {
    position: relative; z-index: 2;
    padding: 0 0 clamp(40px, 5vw, 64px) clamp(32px, 5vw, 72px);
}

.pg-hero .eyebrow { color: var(--accent); margin-bottom: 12px; }
.pg-hero h1 {
    font-family: var(--f-serif); font-weight: 300;
    font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1;
    color: #fff; letter-spacing: -0.02em;
}

/* Page Nav */
.pg-nav {
    border-bottom: 1px solid var(--grey-l);
    background: var(--white);
    position: sticky; top: 0; z-index: 800;
}

.pg-nav__inner {
    display: flex; gap: 28px;
    padding: 14px clamp(32px, 5vw, 72px);
    overflow-x: auto; scrollbar-width: none;
}

.pg-nav__inner::-webkit-scrollbar { display: none; }

.pg-nav__inner a {
    font-size: .9rem; font-weight: 500; letter-spacing: .1em;
    text-transform: uppercase; color: var(--grey); white-space: nowrap;
    transition: color 200ms ease;
}

.pg-nav__inner a:hover { color: var(--black); }

/* Page wrapper */
.pg-w {
    max-width: 1200px; margin: 0 auto;
    padding: 0 clamp(32px, 5vw, 72px);
}

/* Section */
.pg-section {
    padding: clamp(64px, 8vw, 120px) 0;
}

.pg-section--off { background: var(--off); }
.pg-section--dark { background: var(--black); color: #fff; }
.pg-section--dark h2 { color: #fff; }
.pg-section--dark p { color: rgba(255,255,255,.55); }

/* Split layout */
.pg-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px); align-items: center;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.pg-split--rev .pg-split__txt { order: 1; }

.pg-split__txt .eyebrow { margin-bottom: 12px; }
.pg-split__txt h2 { margin-bottom: 16px; }
.pg-split__txt p { color: var(--grey); font-size: .85rem; line-height: 1.8; margin-bottom: 12px; }
.pg-section--dark .pg-split__txt p { color: rgba(255,255,255,.55); }

.pg-split__img { overflow: hidden; aspect-ratio: 4/3; }
.pg-split__img img { width: 100%; height: 100%; object-fit: cover; }

/* Center text */
.pg-center { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.pg-center h2 { margin-bottom: 12px; }
.pg-center p { color: var(--grey); font-size: .85rem; line-height: 1.8; margin: 0 auto; max-width: 560px; }
.pg-section--dark .pg-center p { color: rgba(255,255,255,.55); }

/* Cards */
.pg-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
}

.pg-cards--full {
    max-width: none;
    padding: 0 clamp(32px, 5vw, 72px);
    box-sizing: border-box;
}

.pg-card {
    background: var(--off); padding: 0;
    overflow: hidden;
}

.pg-card--dark { background: rgba(255,255,255,.05); }

.pg-card__img { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.pg-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.pg-card:hover .pg-card__img img { transform: scale(1.03); }

.pg-card h3 {
    font-family: var(--f-serif); font-size: 1.1rem; font-weight: 400;
    padding: 16px 20px 6px; color: var(--black);
}

.pg-card--dark h3 { color: #fff; }

.pg-card p {
    font-size: .78rem; color: var(--grey); line-height: 1.7;
    padding: 0 20px 20px; max-width: none;
}

.pg-card--dark p { color: rgba(255,255,255,.45); }

/* Features grid */
.pg-features {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 28px);
}

.pg-features--5 { grid-template-columns: repeat(5, 1fr); }

.pg-feat {
    padding: 20px 0; border-top: 1px solid var(--grey-l);
}

.pg-feat h4 {
    font-family: var(--f-sans); font-size: .75rem; font-weight: 600;
    margin-bottom: 6px; color: var(--black);
}

.pg-feat p { font-size: .7rem; color: var(--grey); line-height: 1.6; max-width: none; }

/* CTA section */
.pg-cta {
    padding: clamp(64px, 8vw, 120px) 0;
    background: var(--off); text-align: center;
}

.pg-cta h2 { margin-bottom: 16px; }
.pg-cta p { color: var(--grey); margin: 0 auto 32px; max-width: 520px; }

.pg-cta__btns {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* Gallery with filter tabs */
.gal__pad {
    padding: 0 clamp(32px, 5vw, 72px);
}

.gal__head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.gal__head-desc {
    font-size: .78rem;
    color: var(--grey);
    line-height: 1.8;
}

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

.gal__tabs {
    display: flex;
    gap: 32px;
    margin-bottom: clamp(28px, 4vw, 48px);
    border-bottom: 1px solid var(--grey-l);
    padding-bottom: 14px;
    flex-wrap: wrap;
}

.gal__tab {
    font-family: var(--f-sans);
    font-size: .9rem;
    font-weight: 400;
    letter-spacing: .04em;
    color: var(--grey);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 200ms ease;
}

.gal__tab.active {
    color: var(--black);
    font-weight: 500;
}

.gal__tab:hover { color: var(--black); }

.gal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 32px);
}

.gal__item {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--off);
}

.gal__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 500ms var(--ease);
}

.gal__item:hover img { transform: scale(1.03); }

.gal__item.hidden {
    display: none;
}

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

/* Contact form */
.pg-contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
}

.pg-contact-form h2 {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 8px;
}

.pg-contact-form > p {
    color: var(--grey);
    font-size: .78rem;
    line-height: 1.7;
    margin-bottom: clamp(24px, 3vw, 40px);
}

.pg-field {
    margin-bottom: 20px;
}

.pg-field label {
    display: block;
    font-family: var(--f-sans);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .03em;
    color: var(--black);
    margin-bottom: 6px;
}

.pg-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--f-sans);
    font-size: .78rem;
    color: var(--black);
    background: var(--off);
    border: 1px solid var(--grey-l);
    border-radius: 4px;
    transition: border-color 200ms ease;
    -webkit-appearance: none;
    appearance: none;
}

.pg-input:focus {
    outline: none;
    border-color: var(--black);
}

textarea.pg-input {
    resize: vertical;
    min-height: 120px;
}

select.pg-input {
    cursor: pointer;
}

select.pg-input option[value=""] {
    color: var(--grey);
}

.pg-field__error {
    display: block;
    font-size: .68rem;
    color: #c0392b;
    margin-top: 4px;
}

.pg-alert--success {
    background: #f0faf0;
    border: 1px solid #a3d9a5;
    color: #2d6a2e;
    padding: 16px 20px;
    border-radius: 4px;
    font-size: .78rem;
    margin-bottom: 24px;
}

.pg-contact-info {
    padding-top: 8px;
}

.pg-contact-info__block {
    margin-bottom: clamp(24px, 3vw, 36px);
}

.pg-contact-info__block h3 {
    font-family: var(--f-sans);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pg-contact-info__block a,
.pg-contact-info__block p {
    font-size: .82rem;
    color: var(--grey);
    text-decoration: none;
    transition: color 200ms ease;
}

.pg-contact-info__block a:hover {
    color: var(--black);
}

@media (max-width: 1024px) {
    .pg-contact-grid { grid-template-columns: 1fr; }
}

/* FAQ accordion */
.pg-faq { max-width: 800px; margin: 0 auto; }

.pg-faq--full {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 clamp(32px, 5vw, 72px);
    box-sizing: border-box;
}
.pg-faq--full .pg-faq__item summary,
.pg-faq--full .pg-faq__item p {
    padding-left: 0;
    padding-right: 0;
}

.pg-faq__item {
    border-bottom: 1px solid var(--grey-l);
}

.pg-faq__item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-family: var(--f-sans);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    list-style: none;
    transition: color 200ms ease;
}

.pg-faq__item summary::-webkit-details-marker { display: none; }

.pg-faq__item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--grey);
    transition: transform 300ms var(--ease);
    flex-shrink: 0;
    margin-left: 16px;
}

.pg-faq__item[open] summary::after {
    transform: rotate(45deg);
}

.pg-faq__item summary:hover { color: var(--accent); }

.pg-faq--dark .pg-faq__item { border-bottom-color: rgba(255,255,255,.12); }
.pg-faq--dark .pg-faq__item summary::after { color: rgba(255,255,255,.5); }
.pg-faq--dark .pg-faq__item summary:hover { color: var(--accent); }

.pg-faq__item p {
    font-size: 1.05rem;
    color: var(--grey);
    line-height: 1.7;
    padding: 0 0 20px;
    max-width: none;
}

/* Interior pages responsive */
@media (max-width: 768px) {
    .pg-split { grid-template-columns: 1fr; }
    .pg-split--rev .pg-split__txt { order: 0; }
    .pg-cards { grid-template-columns: 1fr; }
    .pg-features, .pg-features--5 { grid-template-columns: 1fr 1fr; }
    .pg-cta__btns { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
    .pg-cta__btns .btn { justify-content: center; }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .vl-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .numbers__row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hd__nav {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #FAFAFA !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 28px !important;
        padding: 80px 32px 40px !important;
        z-index: 900 !important;
        overflow-y: auto;
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
        transition: opacity 200ms linear;
    }
    .hd--open .hd__nav {
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
    }
    .hd__nav a {
        color: var(--black) !important;
        text-align: center !important;
        width: auto !important;
        font-size: 1.6rem !important;
        font-weight: 700 !important;
        letter-spacing: .08em !important;
        padding: 10px 24px !important;
        background: rgba(250,250,250,.9) !important;
        border-radius: 4px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    .hd--open .hd__nav { transform: translateY(0); }
    .hd__nav a {
        color: var(--black) !important;
        font-size: 1.3rem;
        letter-spacing: .08em;
    }
    .hd__drop {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 !important;
        width: auto !important;
    }
    .hd__drop-trigger {
        justify-content: center;
        cursor: pointer;
    }
    /* Default: sub-menu hidden on mobile */
    .hd__drop-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        transform: translateX(100%);
        transition: transform 400ms var(--ease);
        background: #FAFAFA !important;
        box-shadow: none !important;
        border: none !important;
        padding: 80px 32px 40px !important;
        min-width: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 24px !important;
        z-index: 9999 !important;
    }
    .hd--submenu .hd__drop-menu {
        transform: translateX(0) !important;
    }
    .hd__drop-menu a {
        font-size: 1.6rem !important;
        font-weight: 700 !important;
        color: var(--black) !important;
        padding: 10px 24px !important;
        text-align: center !important;
        letter-spacing: .08em !important;
        background: rgba(250,250,250,.9) !important;
        border-radius: 4px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    .hd__drop-menu a:hover { padding: 0 !important; background: transparent !important; }
    .hd__drop-back {
        display: block !important;
        position: absolute;
        top: 24px;
        left: 24px;
        background: rgba(250,250,250,.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 4px;
        border: none;
        font-family: var(--f-sans);
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--black);
        cursor: pointer;
        padding: 10px 18px;
    }
    .hd__burger {
        display: flex;
        z-index: 950;
        position: relative;
    }
    .hd__in { position: relative; }
    .hd__logo img { height: 48px; }
    .hd__logo span {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.3rem;
        white-space: nowrap;
        pointer-events: none;
    }
    .hd--open .hd__burger i { background: var(--black); }
    .hd--open .hd__burger i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hd--open .hd__burger i:nth-child(2) { opacity: 0; }
    .hd--open .hd__burger i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .hd__burger i { transition: transform 300ms ease, opacity 300ms ease, background 300ms ease; }
    body.no-scroll { overflow: hidden; position: fixed; width: 100%; }
    body.no-scroll .pg-hero {
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
    }
    body.no-scroll .hero__body,
    body.no-scroll .pg-hero__body,
    body.no-scroll .hero__cta {
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 300ms ease;
    }
    .intro__row, .fiscal__row, .security__row { grid-template-columns: 1fr; gap: 32px; }
    .intro__img-b { display: none; }
    .numbers__row { grid-template-columns: 1fr 1fr; }
    .sec-feats { grid-template-columns: 1fr; }
    .c-row { grid-template-columns: 1fr; }
    .c-btns { grid-template-columns: 1fr; }
    .contact__inner > p { white-space: normal; font-size: .95rem; padding: 0 8px; }
    .contact__inner h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .contact .c-field input,
    .contact .c-field textarea,
    .contact .c-field select,
    .contact .c-select__trigger { font-size: .95rem; }
    section.prnc .prnc__title { white-space: normal !important; font-size: clamp(1.5rem, 5.5vw, 2rem) !important; }
    .ft__row { flex-direction: column; text-align: center; }
    .hero__btns { flex-direction: column; }
    .hero__btns .btn { justify-content: center; }
    .fiscal__img { order: -1; }
}
