/* =========================================================
   Macoyosh Drafting — Style Sheet
   Blueprint precision · Quiet luxury · Architectural editorial
   ========================================================= */

/* --- Palette & Tokens ----------------------------------- */
:root {
    --cream:       #F5F0E8;
    --sand:        #D4C5A9;
    --ink:         #1A1A1A;
    --ink-deep:    #0a0a0a;
    --ink-mid:     #141414;
    --ink-soft:    #1E1E1E;
    --blueprint:   #B89A6A;
    --blueprint-lt:#D4B87A;
    --brass:       #B89A6A;
    --brass-deep:  #9A7E52;
    --slate:       #8A7E72;
    --oak:         #A0845C;

    --text-light:  #F5F0E8;
    --text-dark:   #1A1A1A;
    --text-muted:  #8A8A8A;

    --ff-serif:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --ff-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ease:        cubic-bezier(.25,.46,.45,.94);
    --ease-out:    cubic-bezier(.16,1,.3,1);

    --nav-h:       100px;
}

/* --- Reset ---------------------------------------------- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
    font-family: var(--ff-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}
img { display:block; max-width:100%; height:auto; }

/* Global hover zoom on all images except hero */
.intro img,
.testimonials img,
.portfolio img,
.services img,
.process img,
.faq img,
.family img,
.contact img,
.footer img,
.intro-image-placeholder,
.gallery-placeholder {
    transition: transform .5s var(--ease);
}
.intro:hover .intro-image img,
.intro-image:hover .intro-image-placeholder,
.portfolio-card:hover .portfolio-visual img,
.family-card:hover .family-card-bg {
    transform: scale(1.05);
}
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { font:inherit; border:none; background:none; cursor:pointer; color:inherit; }
address { font-style:normal; }

/* --- Typography ----------------------------------------- */
h1,h2,h3,h4 {
    font-family: var(--ff-serif);
    font-weight: 300;
    line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); letter-spacing: .02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem);  letter-spacing: .015em; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 400; }
h4 { font-size: 1.15rem; font-weight: 400; letter-spacing: .03em; text-transform: uppercase; }

/* --- Layout --------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
}

/* --- Buttons -------------------------------------------- */
.btn {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 1px solid;
    transition: all .4s var(--ease);
}
.btn--primary {
    color: var(--ink-deep);
    border-color: var(--brass);
    background: var(--brass);
}
.btn--primary:hover {
    background: var(--brass-deep);
    border-color: var(--brass-deep);
    color: var(--cream);
}
.btn--outline {
    color: var(--cream);
    border-color: rgba(245,240,232,.4);
    background: transparent;
}
.btn--outline:hover {
    background: rgba(245,240,232,.08);
    border-color: var(--cream);
}
.btn--submit {
    color: var(--cream);
    border-color: var(--blueprint);
    background: var(--blueprint);
    width: 100%;
}
.btn--submit:hover {
    background: var(--slate);
    border-color: var(--slate);
}

/* --- Navigation ----------------------------------------- */
.main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background .5s var(--ease), box-shadow .5s var(--ease);
}
.main-nav.scrolled {
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(184,154,106,.1);
}
.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    transition: opacity .3s;
}
.nav-logo img {
    height: 90px;
    width: auto;
}
.nav-logo:hover { opacity: .8; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: .75;
    transition: opacity .3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--blueprint);
    transition: width .3s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    border: 1px solid rgba(184,154,106,.4) !important;
    padding: 10px 24px !important;
    opacity: 1 !important;
}
.nav-cta:hover { background: rgba(184,154,106,.12); border-color: var(--brass) !important; }
.nav-cta::after { display: none !important; }
.nav-phone {
    opacity: 1 !important;
    font-weight: 500 !important;
    letter-spacing: .08em !important;
}
.nav-phone::after { display: none !important; }
.nav-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 4px;
}
.nav-social a {
    color: rgba(245,240,232,.5);
    transition: color .3s;
    display: flex;
}
.nav-social a:hover {
    color: var(--brass);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--cream);
    transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Hero — Scroll-driven canvas sequence --------------- */
.hero {
    position: relative;
    height: 280vh;
    background: #0a0a0a;
}
.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Loader */
.hero-loader {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s var(--ease);
}
.hero-loader.done {
    opacity: 0;
    pointer-events: none;
}
.hero-loader-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.35);
}
.hero-loader-ui {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.hero-loader-track {
    width: 120px;
    height: 2px;
    background: rgba(245,240,232,.15);
    border-radius: 1px;
    overflow: hidden;
}
.hero-loader-fill {
    height: 100%;
    width: 0%;
    background: var(--brass);
    transition: width .15s linear;
}
.hero-loader-pct {
    font-family: var(--ff-sans);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(245,240,232,.5);
}

/* Overlay gradient */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,.15) 0%,
        transparent 35%,
        transparent 65%,
        rgba(10,10,10,.25) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Content overlay */
.hero-content-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: clamp(60px, 8vw, 140px);
    will-change: opacity, transform;
}
.hero-content {
    text-align: center;
    color: var(--cream);
    padding: 56px 60px;
    max-width: 740px;
    width: 100%;
    background: rgba(10,10,10,.45);
    border-radius: 4px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.hero-pre {
    font-family: var(--ff-sans);
    font-size: .75rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: .7;
}
.hero h1 {
    margin-bottom: 24px;
}
.hero-sub {
    font-family: var(--ff-serif);
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    opacity: .85;
    margin-bottom: 48px;
}
.btn--hero {
    color: var(--cream);
    border-color: var(--cream);
    background: transparent;
    font-size: .85rem;
    padding: 18px 48px;
    letter-spacing: .2em;
}
.btn--hero:hover {
    background: var(--cream);
    color: var(--ink-deep);
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--cream);
    will-change: opacity;
}
.scroll-cue span {
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    opacity: .5;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--brass);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { transform: scaleY(.4); opacity:.3; }
    50% { transform: scaleY(1); opacity:.7; }
}

/* Progress bar */
.hero-progress {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    z-index: 3;
    background: rgba(184,154,106,.1);
}
.hero-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--brass);
    will-change: width;
}

/* --- Intro ---------------------------------------------- */
.intro {
    padding: 60px 0;
    background: #E8E2D8;
    position: relative;
    overflow: visible;
}
.intro-split {
    position: relative;
    padding-top: 20px;
}
.intro-text {
    max-width: 55%;
}
.intro-image {
    position: absolute;
    top: -140px;
    left: 72%;
    right: calc(-1 * clamp(24px, 5vw, 60px) - 40px);
    z-index: 20;
}
.intro-image-placeholder,
.intro-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border: 2px solid var(--brass);
    outline: 1px solid rgba(184,154,106,.2);
    outline-offset: 8px;
}
.intro-image-placeholder {
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}
.intro-image-placeholder span {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(184,154,106,.5);
    letter-spacing: .04em;
}
.intro-rule {
    width: 60px;
    height: 1px;
    background: var(--blueprint);
    margin: 0 0 40px;
}
.intro-quote {
    font-family: var(--ff-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 60px;
}
.intro-social {
    display: flex;
    gap: 18px;
    margin-top: 32px;
}
.intro-social a {
    color: var(--brass);
    opacity: .55;
    transition: opacity .3s;
    display: flex;
}
.intro-social a:hover {
    opacity: 1;
}
.intro-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    flex-wrap: nowrap;
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: var(--ff-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    color: var(--blueprint);
    margin-bottom: 4px;
}
.stat-label {
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand);
}

/* --- Section Headers ------------------------------------ */
.section-head {
    text-align: center;
    margin-bottom: 72px;
}
.section-head--light { color: var(--cream); }
.section-head--light .section-tag { color: var(--brass); }
.section-head--light .section-desc { color: rgba(245,240,232,.55); }
.section-head--light h2 { color: var(--cream); }
.section-tag {
    display: block;
    font-family: var(--ff-sans);
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--blueprint);
    margin-bottom: 16px;
}
.section-head h2 { margin-bottom: 20px; }
.section-desc {
    font-size: .95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Services ------------------------------------------- */
.services {
    padding: 120px 0;
    background: var(--ink-deep);
    color: var(--cream);
}
.services .section-tag { color: var(--brass); }
.services .section-head h2 { color: var(--cream); }
.services .section-desc { color: rgba(245,240,232,.55); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 28px;
}
.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(3) {
    grid-column: span 4;
}
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5),
.services-grid .service-card:nth-child(6),
.services-grid .service-card:nth-child(7) {
    grid-column: span 3;
}
.service-card {
    padding: 44px 32px 40px;
    border: 1px solid rgba(184,154,106,.1);
    background: var(--ink-mid);
    position: relative;
    transition: border-color .4s, transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card.visible:hover {
    border-color: rgba(184,154,106,.25);
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(184,154,106,.1), 0 12px 40px rgba(0,0,0,.25);
}
.service-icon {
    width: 48px;
    height: 48px;
    color: var(--blueprint);
    margin-bottom: 24px;
    opacity: .6;
}
.service-icon svg {
    width: 100%;
    height: 100%;
}
.service-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--ff-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--blueprint);
    opacity: .15;
}
.service-card h3 {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: .02em;
    margin-bottom: 14px;
    color: var(--cream);
}
.service-card p {
    font-size: .88rem;
    line-height: 1.75;
    color: rgba(245,240,232,.55);
}

/* --- Section Break (Blueprint) -------------------------- */
.section-break {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.section-break--blueprint {
    height: 45vh;
    min-height: 300px;
    background-color: var(--ink);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.section-break--blueprint::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.55);
    z-index: 0;
}
.section-break-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 clamp(24px, 5vw, 60px);
}
.section-break-tag {
    display: block;
    font-family: var(--ff-sans);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 24px;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.section-break-quote {
    font-family: var(--ff-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.8;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* --- Portfolio ------------------------------------------ */
.portfolio {
    padding: 120px 0;
    background-color: #1A1A1A;
    background-image:
        linear-gradient(rgba(184,154,106,.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,154,106,.1) 1px, transparent 1px),
        linear-gradient(rgba(184,154,106,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,154,106,.04) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
    color: var(--cream);
    position: relative;
}
.portfolio::after {
    content: '';
    position: absolute;
    inset: 10% 15%;
    border: 1px solid rgba(184,154,106,.12);
    pointer-events: none;
}
.portfolio::before {
    content: '';
    position: absolute;
    inset: 14% 19%;
    border: 1px dashed rgba(184,154,106,.08);
    pointer-events: none;
    z-index: 0;
}
.portfolio .section-tag {
    color: var(--brass);
    font-weight: 500;
    font-size: .75rem;
}
.portfolio .section-head h2 {
    color: var(--cream);
    font-size: clamp(2rem, 4vw, 3.2rem);
}
.portfolio .section-desc {
    color: rgba(245,240,232,.55);
    font-size: 1rem;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 0;
}
.portfolio-card {
    background: var(--ink-mid);
    border: 2px solid var(--brass);
    outline: 1px solid rgba(184,154,106,.2);
    outline-offset: 6px;
    overflow: visible;
    transition: outline-color .35s ease-in-out, transform .35s ease-in-out, box-shadow .35s ease-in-out;
    position: relative;
    z-index: 1;
}
.portfolio-card:hover {
    outline-color: rgba(184,154,106,.5);
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,.35);
    z-index: 2;
}
.portfolio-card--featured {
    display: block;
}
.portfolio-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.portfolio-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}
.blueprint-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.blueprint-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184,154,106,.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,154,106,.1) 1px, transparent 1px),
        linear-gradient(rgba(184,154,106,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,154,106,.05) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
}
.bp-lines {
    position: absolute;
    inset: 20%;
    border: 1px solid rgba(184,154,106,.15);
}
.bp-lines::before {
    content: '';
    position: absolute;
    inset: 15%;
    border: 1px dashed rgba(184,154,106,.12);
}
.blueprint-placeholder span {
    position: relative;
    z-index: 1;
    font-family: var(--ff-serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(245,240,232,.4);
    letter-spacing: .04em;
}
.bp--warm { background: linear-gradient(135deg, #2D3428 0%, #3D4A35 50%, #2D3428 100%); }
.bp--warm .bp-lines, .bp--warm .bp-lines::before { border-color: rgba(160,132,92,.2); }
.bp--cool { background: linear-gradient(135deg, #181818 0%, #282828 50%, #181818 100%); }
.bp--gold { background: linear-gradient(135deg, #2A2418 0%, #3D3422 50%, #2A2418 100%); }
.bp--gold .bp-lines, .bp--gold .bp-lines::before { border-color: rgba(184,154,106,.2); }

/* Gallery image grid — square box, 4 cols x 2 rows with hero */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
    margin-top: 48px;
    aspect-ratio: 4 / 3;
}
.gallery-cell {
    position: relative;
    overflow: visible;
    border-radius: 2px;
    border: 2px solid var(--brass);
    outline: 1px solid rgba(184,154,106,.15);
    outline-offset: 5px;
    transition: outline-color .35s ease-in-out, box-shadow .35s ease-in-out;
    z-index: 1;
}
.gallery-cell:hover {
    outline-color: rgba(184,154,106,.45);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    z-index: 2;
}
.gallery-cell--hero {
    grid-column: span 2;
    grid-row: span 2;
    border: 2px solid var(--brass);
    outline: 1px solid rgba(184,154,106,.15);
    outline-offset: 5px;
    transition: outline-color .3s ease-in-out, box-shadow .3s ease-in-out;
}
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.gallery-placeholder span {
    font-family: var(--ff-serif);
    font-size: .85rem;
    font-style: italic;
    color: rgba(184,154,106,.3);
    letter-spacing: .04em;
}
.gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-cell img,
.gallery-placeholder {
    transition: transform .5s var(--ease);
}
.gallery-cell:hover img,
.gallery-cell:hover .gallery-placeholder {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 32px;
}
.portfolio-type {
    display: block;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--blueprint);
    margin-bottom: 10px;
}
.portfolio-info h3 {
    font-family: var(--ff-serif);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--cream);
}
.portfolio-info p {
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(245,240,232,.55);
    margin-bottom: 16px;
}
.portfolio-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.portfolio-specs span {
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 12px;
    background: rgba(184,154,106,.1);
    color: var(--cream);
}

/* --- Recent Projects ------------------------------------ */
.recent-projects {
    padding: 120px 0;
    background: var(--ink-deep);
    color: var(--cream);
}

.projects-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.projects-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 48px;
    width: 1px;
    background: linear-gradient(to bottom, var(--blueprint), rgba(184,154,106,.1));
}
.project-item {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 32px;
    padding-bottom: 48px;
    position: relative;
}
.project-item:last-child { padding-bottom: 0; }
.project-year {
    font-family: var(--ff-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--brass);
    text-align: center;
    padding-top: 4px;
    position: relative;
}
.project-year::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blueprint);
    border: 2px solid var(--ink-deep);
}
.project-content h3 {
    font-family: var(--ff-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 10px;
}
.project-content p {
    font-size: .88rem;
    line-height: 1.75;
    color: rgba(245,240,232,.55);
    margin-bottom: 14px;
}
.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.project-tags span {
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid rgba(184,154,106,.15);
    color: var(--blueprint-lt);
}

/* --- Testimonials — Carousel ---------------------------- */
.testimonials {
    padding: 120px 0;
    background: var(--ink-deep);
    color: var(--cream);
}
.testi-header {
    margin-bottom: 48px;
}
.testi-header h2 {
    font-family: var(--ff-serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--cream);
    max-width: 550px;
}

.testi-carousel {
    overflow: hidden;
    position: relative;
}
.testi-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: testiScroll 40s linear infinite;
}
.testi-slide {
    flex: 0 0 420px;
    min-width: 0;
}
@keyframes testiScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

.testi-slide {
    padding: 10px;
}
.testi-card {
    background: var(--ink-mid);
    border-radius: 4px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid var(--brass);
    outline: 1px solid rgba(184,154,106,.2);
    outline-offset: 6px;
    transition: outline-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testi-card:hover {
    outline-color: rgba(184,154,106,.4);
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.testi-icon {
    width: 32px;
    height: 32px;
    color: var(--brass);
    opacity: .5;
    margin-bottom: 20px;
}
.testi-icon svg {
    width: 100%;
    height: 100%;
}

.testi-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testi-content h3 {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: .01em;
}
.testi-content p {
    font-size: .85rem;
    line-height: 1.75;
    color: rgba(245,240,232,.5);
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}
.testi-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ink-soft);
    border: 1px solid rgba(184,154,106,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-serif);
    font-size: .75rem;
    color: var(--brass);
    flex-shrink: 0;
}
.testi-name {
    font-family: var(--ff-sans);
    font-size: .82rem;
    font-weight: 400;
    color: var(--cream);
}
.testi-loc {
    font-size: .7rem;
    letter-spacing: .08em;
    color: var(--text-muted);
}

/* --- Process -------------------------------------------- */
.process {
    padding: 120px 0;
    background: #E8E2D8;
    color: var(--ink);
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184,154,106,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,154,106,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.process > .container { position: relative; z-index: 1; }

/* Section blueprint decorations */
.section-blueprint {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.section-blueprint--tl {
    top: 0; left: 0;
    width: 180px; height: 180px;
}
.section-blueprint--tr {
    top: 0; right: 0;
    width: 180px; height: 180px;
}
.section-blueprint--bl {
    bottom: 0; left: 0;
    width: 180px; height: 180px;
}
.section-blueprint--br {
    bottom: 0; right: 0;
    width: 180px; height: 180px;
}
.section-blueprint--left-mid {
    top: 50%; left: 0;
    transform: translateY(-50%);
    width: 130px; height: 360px;
}
.section-blueprint--right-mid {
    top: 50%; right: 0;
    transform: translateY(-50%);
    width: 130px; height: 360px;
}

@media (max-width: 768px) {
    .section-blueprint { display: none; }
}

/* Architectural vine decorations */
.process-vine {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 0;
    pointer-events: none;
}
.process-vine--left {
    left: clamp(10px, 3vw, 50px);
}
.process-vine--right {
    right: clamp(10px, 3vw, 50px);
}
.process-vine svg {
    width: 100%;
    height: 100%;
}

.process-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.process-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0 32px;
    padding-bottom: 56px;
    position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:last-child .step-connector { display: none; }

.process .section-tag {
    color: var(--ink);
    font-weight: 500;
    font-size: .75rem;
}
.process .section-head h2 {
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.2rem);
}
.process .section-desc {
    color: #4A4A4A;
    font-size: 1rem;
}
.step-num {
    font-family: var(--ff-serif);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--brass);
    opacity: 1;
    text-align: center;
    line-height: 1;
    padding-top: 4px;
}
.step-connector {
    position: absolute;
    left: 36px;
    top: 40px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(184,154,106,.2), rgba(184,154,106,.05));
}
.step-content h3 {
    font-family: var(--ff-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: .01em;
}
.step-content p {
    font-size: .9rem;
    line-height: 1.75;
    color: #4A4A4A;
}

/* --- FAQ ------------------------------------------------ */
.faq {
    padding: 120px 0;
    background: #3A3A3A;
}
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.faq-image {
    align-self: center;
}
.faq-image-placeholder,
.faq-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border: 2px solid var(--brass);
    outline: 1px solid rgba(184,154,106,.25);
    outline-offset: 6px;
    background: #2A2A2A;
}
.faq-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-image-placeholder span {
    font-family: var(--ff-serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(184,154,106,.4);
}
.faq-right .section-head {
    text-align: left;
}
.faq .section-tag {
    color: var(--brass);
    font-weight: 600;
    font-size: .85rem;
}
.faq .section-head h2 {
    color: var(--cream);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 400;
}
.faq-q:hover .faq-icon::before,
.faq-q:hover .faq-icon::after {
    background: var(--brass);
}
.faq-q[aria-expanded="true"] {
    color: var(--brass);
}
.faq-list {
    max-width: 100%;
}
.faq-item {
    border-bottom: 2px solid rgba(184,154,106,.35);
}
.faq-item:first-child {
    border-top: 2px solid rgba(184,154,106,.35);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    font-family: var(--ff-serif);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 400;
    text-align: left;
    color: var(--cream);
    font-weight: 500;
    transition: color .3s;
}
.faq-q:hover { color: var(--brass); }
.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 20px;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--cream);
    transition: transform .35s var(--ease), opacity .35s;
}
.faq-icon::before {
    top: 50%; left: 0;
    width: 100%; height: 2px;
    transform: translateY(-50%);
}
.faq-icon::after {
    top: 0; left: 50%;
    width: 2px; height: 100%;
    transform: translateX(-50%);
}
.faq-q[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease);
}
.faq-a-inner {
    padding: 0 0 28px;
    font-size: .9rem;
    color: rgba(245,240,232,.6);
    line-height: 1.8;
}

/* --- Macoyosh Family ------------------------------------ */
.family {
    padding: 120px 0;
    background: var(--ink-deep);
    background-image:
        linear-gradient(rgba(184,154,106,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,154,106,.12) 1px, transparent 1px),
        linear-gradient(rgba(184,154,106,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,154,106,.04) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
    color: var(--cream);
}
.family .section-tag { color: var(--brass); }
.family .section-head h2 { color: var(--cream); }

.family-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.family-label {
    display: block;
    text-align: center;
    margin-top: 18px;
    font-family: var(--ff-serif);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 400;
    letter-spacing: .02em;
    color: rgba(245,240,232,.85);
}
.family-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 3 / 4;
    display: block;
    cursor: pointer;
}
.family-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--ink);
    transition: filter .5s var(--ease), transform .5s var(--ease);
}
.family-card:hover .family-card-bg {
    filter: blur(4px) brightness(.6);
    transform: scale(1.05);
}
.family-card--active {
    border: 1px solid rgba(184,154,106,.2);
}
.family-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.family-card:hover .family-card-overlay {
    opacity: 1;
    transform: translateY(0);
}
.family-card-overlay h3 {
    font-family: var(--ff-serif);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 8px;
    letter-spacing: .02em;
    text-transform: none;
}
.family-card-overlay p {
    font-size: .82rem;
    font-weight: 300;
    color: rgba(245,240,232,.65);
    letter-spacing: .04em;
}

/* --- Contact -------------------------------------------- */
.contact {
    padding: 120px 0;
    background: #2A2A2A;
    color: var(--cream);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .section-tag { color: var(--brass); }
.contact-info h2 { margin-bottom: 24px; color: var(--cream); }
.contact-lead {
    font-size: .95rem;
    color: rgba(245,240,232,.55);
    margin-bottom: 48px;
    line-height: 1.8;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-block { display: flex; flex-direction: column; gap: 4px; }
.contact-label {
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.contact-val {
    font-family: var(--ff-serif);
    font-size: 1.05rem;
    color: var(--cream);
    transition: color .3s;
}
a.contact-val:hover { color: var(--brass); }

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(184,154,106,.15);
    color: var(--cream);
    opacity: .6;
    transition: all .3s var(--ease);
}
.social-link:hover {
    opacity: 1;
    border-color: var(--blueprint);
    background: rgba(184,154,106,.1);
}

/* Form */
.contact-form-wrap {
    background: var(--ink);
    padding: 48px;
    border: 1px solid rgba(184,154,106,.1);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(184,154,106,.15);
    padding: 12px 0;
    font-family: var(--ff-sans);
    font-size: .92rem;
    font-weight: 300;
    color: var(--cream);
    transition: border-color .3s;
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23B89A6A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}
.form-group select option {
    background: var(--ink-mid);
    color: var(--cream);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blueprint);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* --- Footer --------------------------------------------- */
.footer {
    padding: 80px 0 40px;
    background: var(--ink-deep);
    color: rgba(245,240,232,.45);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 24px;
}
.footer-brand p {
    font-size: .85rem;
    line-height: 1.7;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.footer-social a {
    color: rgba(245,240,232,.5);
    transition: color .3s;
    display: flex;
}
.footer-social a svg {
    width: 28px;
    height: 28px;
}
.footer-social a:hover {
    color: var(--brass);
}
.footer-col h4 {
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 20px;
    opacity: .7;
}
.footer-col li {
    font-size: .85rem;
    margin-bottom: 10px;
}
.footer-col a { transition: color .3s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
    border-top: 1px solid rgba(184,154,106,.08);
    padding-top: 24px;
    font-size: .75rem;
    letter-spacing: .06em;
}

/* --- Section Vignettes ---------------------------------- */
.intro,
.services,
.portfolio,
.recent-projects,
.testimonials,
.process,
.faq,
.contact,
.family {
    position: relative;
}
.intro::before,
.services::before,
.portfolio::before,
.recent-projects::before,
.testimonials::before,
.process::before,
.faq::before,
.contact::before,
.family::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.intro > .container,
.services > .container,
.portfolio > .container,
.recent-projects > .container,
.testimonials > .container,
.process > .container,
.faq > .container,
.contact > .container,
.family > .container {
    position: relative;
    z-index: 1;
}

/* Light sections — dark vignette at edges */
.intro::before {
    box-shadow: inset 0 90px 130px -20px rgba(26,26,26,.2),
                inset 0 -90px 130px -20px rgba(26,26,26,.2);
}
.process::before {
    box-shadow: inset 0 90px 130px -20px rgba(26,26,26,.18),
                inset 0 -90px 130px -20px rgba(26,26,26,.18);
}

/* Dark sections — warm gold glow at edges */
.testimonials::before {
    box-shadow: inset 0 80px 120px -20px rgba(184,154,106,.15),
                inset 0 -80px 120px -20px rgba(184,154,106,.15);
}
.portfolio::before {
    box-shadow: inset 0 80px 120px -20px rgba(184,154,106,.12),
                inset 0 -80px 120px -20px rgba(184,154,106,.12);
}
.services::before {
    box-shadow: inset 0 80px 120px -20px rgba(184,154,106,.14),
                inset 0 -80px 120px -20px rgba(184,154,106,.14);
}
.faq::before {
    box-shadow: inset 0 80px 120px -20px rgba(184,154,106,.12),
                inset 0 -80px 120px -20px rgba(184,154,106,.12);
}
.family::before {
    box-shadow: inset 0 80px 120px -20px rgba(184,154,106,.14),
                inset 0 -80px 120px -20px rgba(184,154,106,.14);
}
.contact::before {
    box-shadow: inset 0 70px 100px -20px rgba(184,154,106,.1),
                inset 0 -70px 100px -20px rgba(184,154,106,.1);
}

/* --- Reveal Animation ----------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}
.reveal-left {
    transform: translateX(-40px) translateY(0);
}
.reveal-right {
    transform: translateX(40px) translateY(0);
}
.reveal-scale {
    transform: translateY(24px) scale(0.97);
}
.reveal-line {
    transform: none;
    transform-origin: left center;
    transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-out);
}
.reveal-line:not(.visible) {
    transform: scaleX(0);
}

/* --- Responsive ----------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid .service-card { grid-column: span 1 !important; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-card--featured { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: span 2; }

    .intro-image {
        left: 60%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --nav-h: 72px; }

    /* Nav */
    .nav-toggle { display: flex; }
    .nav-logo img { height: 56px; }
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,10,.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: opacity .4s var(--ease);
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        font-size: 1rem;
        letter-spacing: .18em;
    }
    .nav-cta {
        margin-top: 16px;
        padding: 14px 32px !important;
        font-size: .85rem !important;
    }

    /* Hero */
    .hero { height: 250vh; }
    .hero-sticky { min-height: 100svh; }
    .hero-content {
        padding: 32px 24px;
        max-width: 100%;
    }
    .hero-content-wrap {
        padding: 0 20px;
        justify-content: center;
    }
    .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .hero-pre { font-size: .65rem; letter-spacing: .25em; margin-bottom: 14px; }
    .hero-sub { font-size: .95rem; margin-bottom: 32px; }
    .btn--hero { padding: 16px 36px; font-size: .78rem; }
    .hero-loader-track { width: 80px; }
    .scroll-cue { bottom: 24px; }

    /* Reveal directions flatten on mobile */
    .reveal-left, .reveal-right { transform: translateY(28px) translateX(0); }

    /* Intro */
    .intro { padding: 60px 0; overflow: hidden; }
    .intro-split { display: flex; flex-direction: column; gap: 32px; }
    .intro-text { max-width: 100%; padding-top: 0; }
    .intro-image {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin-bottom: 0;
    }
    .intro-image-placeholder,
    .intro-image img {
        aspect-ratio: 4 / 3;
        outline-offset: 4px;
    }
    .intro-rule { margin: 0 auto 28px; }
    .intro-quote { text-align: center; font-size: 1.1rem; margin-bottom: 36px; }
    .intro-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .stat-num { font-size: 1.3rem; }
    .stat-label { font-size: .6rem; }
    .stat-divider { width: 1px; height: 32px; }

    /* Testimonials */
    .testimonials { padding: 60px 0; }
    .testi-header { margin-bottom: 32px; }
    .testi-header h2 { font-size: 1.6rem; }
    .testi-slide { flex: 0 0 280px; padding: 8px; }
    .testi-card {
        padding: 24px 20px;
        border-width: 1px;
        outline-offset: 4px;
    }
    .testi-content h3 { font-size: 1.05rem; }
    .testi-content p { font-size: .8rem; }

    /* Portfolio */
    .portfolio { padding: 60px 0; }
    .portfolio-grid { grid-template-columns: 1fr; gap: 20px; }
    .portfolio-card--featured { grid-template-columns: 1fr; }
    .portfolio-visual { aspect-ratio: 16 / 10; }
    .blueprint-placeholder { aspect-ratio: 16 / 10; }
    .portfolio-info { padding: 24px; }
    .portfolio-info h3 { font-size: 1.2rem; }
    .portfolio-specs { gap: 8px; }
    .portfolio-specs span { font-size: .6rem; padding: 3px 8px; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        aspect-ratio: auto;
        gap: 8px;
        margin-top: 32px;
    }
    .gallery-cell--hero { grid-column: span 2; grid-row: span 1; }
    .gallery-placeholder { aspect-ratio: 4 / 3; }
    .print-carousel { margin-top: 32px; }
    .print-carousel-slide { width: 200px; height: 200px; }
    .print-carousel-track { gap: 16px; }

    /* Services */
    .services { padding: 60px 0; }
    .services-grid { grid-template-columns: 1fr !important; gap: 16px; }
    .services-grid .service-card { grid-column: span 1 !important; }
    .service-card { padding: 28px 24px 24px; }
    .service-card h3 { font-size: 1.05rem; }
    .service-card p { font-size: .82rem; }
    .service-icon { width: 36px; height: 36px; margin-bottom: 16px; }

    /* Process */
    .process { padding: 60px 0; }
    .process-vine { display: none; }
    .process-step { grid-template-columns: 48px 1fr; gap: 0 16px; }
    .step-num { font-size: 1.5rem; }
    .step-connector { left: 24px; }
    .step-content h3 { font-size: 1.1rem; }
    .step-content p { font-size: .82rem; }

    /* Section break */
    .section-break { padding: 48px 0; background-attachment: scroll; min-height: 250px; }
    .section-break-quote { font-size: 1rem; }

    /* FAQ */
    .faq { padding: 60px 0; }
    .faq-layout { grid-template-columns: 1fr; gap: 32px; }
    .faq-image { position: relative; top: 0; }
    .faq-image-placeholder, .faq-image img { aspect-ratio: 16 / 9; }
    .faq-right .section-head { text-align: center; }
    .faq-q { font-size: .95rem; padding: 20px 0; }
    .faq-a-inner { font-size: .82rem; }

    /* Family */
    .family { padding: 60px 0; }
    .family-grid { grid-template-columns: 1fr; gap: 16px; }
    .family-card { aspect-ratio: 16 / 9; }
    .family-label { font-size: 1.1rem; margin-top: 12px; }

    /* Contact */
    .contact { padding: 60px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info h2 { font-size: 1.6rem; }
    .contact-lead { font-size: .88rem; margin-bottom: 32px; }

    /* Footer */
    .footer { padding: 48px 0 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { grid-column: span 1; }
    .footer-logo { height: 64px; }
    .footer-brand p { font-size: .8rem; }
    .footer-col h4 { margin-bottom: 14px; }
    .footer-col li { font-size: .8rem; margin-bottom: 8px; }
    .footer-bottom { font-size: .7rem; }

    /* Global mobile spacing */
    .section-head { margin-bottom: 36px; }
    .section-desc br { display: none; }
    .section-tag { font-size: .65rem; }
}

/* Small phones */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    .btn { padding: 14px 28px; font-size: .72rem; }
    .hero-content { padding: 24px 20px; }
    .hero-sub { font-size: .88rem; margin-bottom: 28px; }
    .btn--hero { padding: 14px 28px; }

    .testi-slide { flex: 0 0 260px; }
    .gallery-placeholder { aspect-ratio: 4 / 3; }
    .gallery-grid { gap: 6px; }

    .intro-stats { gap: 16px; }
    .stat-num { font-size: 1.1rem; }

    .service-card { padding: 24px 20px 20px; }
    .portfolio-info { padding: 20px; }
    .contact-form-wrap { padding: 24px 16px; }
}

/* --- Carousel Controls --- */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
}
.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(184,154,106,.4);
    background: rgba(255,255,255,.05);
    color: var(--brass);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, transform .15s;
}
.carousel-arrow:hover {
    background: rgba(184,154,106,.15);
    border-color: var(--brass);
}
.carousel-arrow:active {
    transform: scale(.92);
}

/* --- Print Carousel --- */
@keyframes print-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.print-carousel {
    margin-top: 48px;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.print-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: print-scroll 40s linear infinite;
}
.print-carousel-slide {
    flex-shrink: 0;
    width: 320px;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--brass);
    transition: transform .3s ease, filter .3s ease;
    cursor: zoom-in;
}
.print-carousel-slide:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}
.print-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.92);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}
.lightbox.active {
    display: flex;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s;
    line-height: 1;
    z-index: 10002;
}
.lightbox-close:hover {
    opacity: 1;
}
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(184,154,106,.4);
    color: #fff;
    font-size: 1.8rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .7;
    transition: opacity .2s, background .2s;
    z-index: 10001;
}
.lightbox-arrow:hover {
    opacity: 1;
    background: rgba(184,154,106,.3);
}
.lightbox-arrow--left { left: 24px; }
.lightbox-arrow--right { right: 24px; }
.lightbox-counter {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.6);
    font-family: var(--ff-sans);
    font-size: .85rem;
    letter-spacing: .08em;
}
.lightbox-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.lightbox-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    border: 1px solid rgba(184,154,106,.4);
    transition: background .2s;
    cursor: pointer;
}
.lightbox-dot.active {
    background: var(--brass);
}
.lightbox-card {
    display: none;
    max-width: 560px;
    width: 90vw;
    background: var(--ink-mid);
    border: 2px solid var(--brass);
    border-radius: 4px;
    padding: 48px 40px;
    color: var(--cream);
    text-align: center;
}
.lightbox-card .service-icon,
.lightbox-card .testi-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--brass);
}
.lightbox-card .service-num {
    display: block;
    font-family: var(--ff-sans);
    font-size: .75rem;
    letter-spacing: .1em;
    color: var(--brass);
    margin-bottom: 8px;
}
.lightbox-card h3 {
    font-family: var(--ff-serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 16px;
}
.lightbox-card p {
    font-family: var(--ff-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(245,241,234,.7);
}
.lightbox-card .testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}
.lightbox-card .testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brass);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 600;
}
.lightbox-card .testi-name {
    font-family: var(--ff-serif);
    font-size: .95rem;
    color: var(--cream);
}
.lightbox-card .testi-loc {
    font-size: .8rem;
    color: rgba(245,241,234,.5);
}
.gallery-cell img,
.portfolio-visual img {
    cursor: zoom-in;
}
[data-lightbox-card] {
    cursor: pointer;
}
