:root {
    --black: #070707;
    --black-soft: #11110f;
    --charcoal: #1a1a17;
    --gold: #c9a252;
    --gold-bright: #e0bd73;
    --gold-pale: #f4ead7;
    --paper: #f7f5f0;
    --paper-deep: #edeae2;
    --white: #ffffff;
    --muted: #68675f;
    --line: rgba(7, 7, 7, 0.14);
    --line-light: rgba(255, 255, 255, 0.18);
    --shadow: 0 24px 70px rgba(7, 7, 7, 0.12);
    --container: 1320px;
    --header-height: 92px;
    --radius: 2px;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 132px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--black);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

h1, h2, h3, p, blockquote, figure { margin-top: 0; }
h1, h2, h3 {
    font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.035em;
}

h1 { font-size: clamp(3.25rem, 6.7vw, 7.2rem); }
h2 { font-size: clamp(2.4rem, 4.2vw, 4.8rem); }
h3 { font-size: clamp(1.35rem, 1.8vw, 1.8rem); }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: var(--black); }

:focus-visible {
    outline: 3px solid var(--gold-bright);
    outline-offset: 4px;
}

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

.section { padding: clamp(84px, 10vw, 156px) 0; }
.section--light { background: var(--paper); }
.section--black { background: var(--black); color: var(--white); }

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    background: var(--gold);
    color: var(--black);
    transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--gold-bright);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 38px; height: 2px; background: currentColor; }
.eyebrow--dark { color: #987126; }

.lead { font-size: clamp(1.15rem, 1.6vw, 1.45rem); line-height: 1.55; }

.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 14px 27px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .075em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}

.button:hover { transform: translateY(-2px); }
.button--gold { background: var(--gold); color: var(--black); }
.button--gold:hover { background: var(--gold-bright); }
.button--black { background: var(--black); color: var(--white); }
.button--black:hover { background: var(--charcoal); }
.button--outline-light { border-color: rgba(255,255,255,.58); color: var(--white); }
.button--outline-light:hover { border-color: var(--white); background: var(--white); color: var(--black); }
.button--outline-dark { border-color: rgba(7,7,7,.45); color: var(--black); }
.button--outline-dark:hover { border-color: var(--black); background: var(--black); color: var(--white); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--black);
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link span { color: #987126; font-size: 1.15em; transition: transform .2s; }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link--large { font-size: .92rem; }

.section-heading { max-width: 760px; }
.section-heading h2 { margin-bottom: 28px; }
.section-heading p { color: var(--muted); }
.section-heading--large h2 { font-size: clamp(2.8rem, 5.2vw, 5.8rem); }
.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
    gap: clamp(40px, 8vw, 120px);
    max-width: none;
    align-items: end;
    margin-bottom: clamp(52px, 6vw, 86px);
}
.section-heading--split > p, .section-heading--split > div:last-child { padding-bottom: 9px; }
.section-heading--light p { color: rgba(255,255,255,.66); }

/* Header */
.utility-bar { background: var(--gold); color: var(--black); font-size: .76rem; font-weight: 700; letter-spacing: .04em; }
.utility-bar__inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.utility-bar p { margin: 0; }
.utility-bar__links { display: flex; align-items: center; gap: 28px; }
.utility-bar__links a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.utility-bar__links svg { width: 15px; fill: currentColor; }

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(7, 7, 7, .98);
    color: var(--white);
    transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(0,0,0,.22); }
.site-header__inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 190px; display: block; }
.brand img { width: 190px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav ul { display: flex; gap: clamp(18px, 2.4vw, 38px); align-items: center; list-style: none; padding: 0; margin: 0; }
.main-nav ul a {
    position: relative;
    display: block;
    padding: 34px 0;
    color: rgba(255,255,255,.82);
    font-size: .79rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
}
.main-nav ul a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 26px; height: 2px; background: var(--gold); transition: right .25s var(--ease); }
.main-nav ul a:hover, .main-nav ul a[aria-current="page"] { color: var(--white); }
.main-nav ul a:hover::after, .main-nav ul a[aria-current="page"]::after { right: 0; }
.nav-cta { min-height: 48px; padding-inline: 20px; }
.menu-toggle { display: none; }

/* Hero slider */
.hero-slider { position: relative; min-height: min(790px, calc(100svh - 130px)); background: var(--black); color: var(--white); overflow: hidden; }
.hero-slider__track { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; display: grid; align-items: center; opacity: 0; visibility: hidden; transition: opacity .7s var(--ease), visibility .7s; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide__media, .hero-slide__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide__media img { object-fit: cover; transform: scale(1.035); transition: transform 7s linear; }
.hero-slide.is-active .hero-slide__media img { transform: scale(1.09); }
.hero-slide__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.68) 46%, rgba(0,0,0,.23) 75%, rgba(0,0,0,.12) 100%), linear-gradient(0deg, rgba(0,0,0,.55), transparent 45%); }
.hero-slide__content { position: relative; z-index: 2; padding: 110px 0 140px; }
.hero-slide__content h1, .hero-slide__content h2 { max-width: 1020px; margin-bottom: 30px; color: var(--white); font-size: clamp(3.5rem, 6.7vw, 7.3rem); }
.hero-slide__content p { max-width: 760px; margin-bottom: 38px; color: rgba(255,255,255,.79); font-size: clamp(1.13rem, 1.55vw, 1.4rem); line-height: 1.55; }
.hero-slider__controls { position: absolute; z-index: 5; left: 50%; bottom: 36px; transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.hero-slider__dots, .hero-slider__arrows { display: flex; align-items: center; gap: 10px; pointer-events: auto; }
.hero-slider__dots button { position: relative; width: 58px; padding: 10px 0; border: 0; border-bottom: 2px solid rgba(255,255,255,.28); background: transparent; color: rgba(255,255,255,.6); cursor: pointer; text-align: left; }
.hero-slider__dots button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--gold); transition: right .45s var(--ease); }
.hero-slider__dots button.is-active { color: var(--white); }
.hero-slider__dots button.is-active::after { right: 0; }
.hero-slider__arrows button { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); background: rgba(0,0,0,.22); color: var(--white); cursor: pointer; transition: background .2s, border-color .2s; }
.hero-slider__arrows button:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

.trust-strip { background: var(--black-soft); color: var(--white); border-top: 1px solid var(--line-light); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid div { min-height: 104px; padding: 25px 22px; display: flex; align-items: center; gap: 16px; border-right: 1px solid var(--line-light); }
.trust-strip__grid div:first-child { border-left: 1px solid var(--line-light); }
.trust-strip strong { color: var(--gold); font-size: .75rem; letter-spacing: .1em; }
.trust-strip span { font-size: .84rem; font-weight: 750; letter-spacing: .045em; text-transform: uppercase; }

/* Home content */
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr); gap: clamp(50px, 9vw, 150px); align-items: start; }
.intro-copy { padding-top: 38px; }
.intro-copy p { color: var(--muted); }
.intro-copy .lead { color: var(--black); }
.intro-copy .text-link { margin-top: 18px; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px 24px; }
.service-card { min-width: 0; background: var(--white); box-shadow: 0 12px 35px rgba(7,7,7,.06); transition: transform .35s var(--ease), box-shadow .35s; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card__image { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--charcoal); }
.service-card__image picture, .service-card__image img { width: 100%; height: 100%; }
.service-card__image img { object-fit: cover; filter: saturate(.84) contrast(1.04); transition: transform .6s var(--ease), filter .6s; }
.service-card:hover .service-card__image img { transform: scale(1.045); filter: saturate(1) contrast(1.02); }
.service-card__number { position: absolute; top: 0; right: 0; min-width: 58px; min-height: 54px; display: grid; place-items: center; background: var(--gold); color: var(--black); font-size: .78rem; font-weight: 900; letter-spacing: .08em; }
.service-card__content { padding: 30px 30px 34px; }
.service-card h3 { margin-bottom: 15px; font-size: clamp(1.45rem, 2vw, 2.05rem); }
.service-card h3 a { text-decoration: none; }
.service-card p { min-height: 82px; color: var(--muted); font-size: .98rem; line-height: 1.55; }
.centered-action { display: flex; justify-content: center; margin-top: 58px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.process-grid li { min-height: 310px; padding: 42px 30px; border-right: 1px solid var(--line-light); }
.process-grid li:first-child { border-left: 1px solid var(--line-light); }
.process-grid span, .scope-grid span { color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.process-grid h3 { margin: 68px 0 18px; font-size: 1.55rem; }
.process-grid p { color: rgba(255,255,255,.62); font-size: .95rem; line-height: 1.6; }

.object-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr); gap: clamp(50px, 8vw, 124px); align-items: center; }
.object-grid--reverse .object-image { order: 2; }
.object-image { position: relative; min-height: 600px; }
.object-image picture, .object-image img { width: 100%; height: 100%; }
.object-image img { position: absolute; inset: 0; object-fit: cover; }
.object-image::before { content: ""; position: absolute; z-index: -1; top: -22px; left: -22px; width: 45%; height: 45%; background: var(--gold); }
.object-image__tag { position: absolute; right: -22px; bottom: 34px; padding: 18px 25px; background: var(--black); color: var(--gold-bright); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.object-content h2 { margin-bottom: 28px; }
.object-content p { color: var(--muted); }
.object-content .lead { color: var(--black); }
.object-content .button { margin-top: 18px; }

.check-list { list-style: none; padding: 0; margin: 28px 0; }
.check-list li { position: relative; padding: 12px 0 12px 32px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 2px; color: #987126; font-weight: 900; }

.testimonial-section { background: var(--gold); color: var(--black); padding: clamp(78px, 9vw, 132px) 0; }
.testimonial-grid { display: grid; grid-template-columns: 120px 1fr; gap: 50px; align-items: start; }
.testimonial-mark { font-family: Georgia, serif; font-size: 11rem; line-height: .7; opacity: .46; }
.testimonial-section blockquote { margin: 0; }
.testimonial-section blockquote p { max-width: 1080px; margin-bottom: 36px; font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif; font-size: clamp(2rem, 3.3vw, 4rem); font-weight: 750; line-height: 1.18; letter-spacing: -.025em; }
.testimonial-section footer { display: flex; flex-wrap: wrap; gap: 15px; align-items: center; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.testimonial-section footer span { padding-left: 15px; border-left: 1px solid rgba(0,0,0,.35); font-size: .72rem; opacity: .7; }

.gallery-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 120px; gap: 16px; }
.gallery-mosaic__item { position: relative; margin: 0; overflow: hidden; background: var(--paper-deep); }
.gallery-mosaic__item picture, .gallery-mosaic__item img { width: 100%; height: 100%; }
.gallery-mosaic__item img { object-fit: cover; transition: transform .6s var(--ease); }
.gallery-mosaic__item:hover img { transform: scale(1.04); }
.gallery-mosaic__item figcaption { position: absolute; left: 0; bottom: 0; padding: 12px 18px; background: var(--black); color: var(--white); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.gallery-mosaic__item--1 { grid-column: span 7; grid-row: span 4; }
.gallery-mosaic__item--2 { grid-column: span 5; grid-row: span 2; }
.gallery-mosaic__item--3 { grid-column: span 5; grid-row: span 2; }
.gallery-mosaic__item--4 { grid-column: span 4; grid-row: span 3; }
.gallery-mosaic__item--5 { grid-column: span 4; grid-row: span 3; }
.gallery-mosaic__item--6 { grid-column: span 4; grid-row: span 3; }

.faq-grid { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1fr); gap: clamp(60px, 10vw, 150px); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 0; cursor: pointer; font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif; font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 800; line-height: 1.3; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: #987126; font-size: 1.6rem; font-weight: 400; transition: transform .25s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 760px; padding: 0 45px 28px 0; color: var(--muted); }

/* Internal page hero */
.page-hero { position: relative; min-height: 660px; display: grid; align-items: end; overflow: hidden; background: var(--black); color: var(--white); }
.page-hero--compact { min-height: 590px; }
.page-hero__media, .page-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero__media img { object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.56) 55%, rgba(0,0,0,.17)), linear-gradient(0deg, rgba(0,0,0,.68), transparent 55%); }
.page-hero__content { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 76px; }
.page-hero__content h1 { max-width: 1050px; margin: 0 0 26px; font-size: clamp(3.4rem, 6.3vw, 6.9rem); }
.page-hero__content p { max-width: 760px; color: rgba(255,255,255,.76); font-size: clamp(1.1rem, 1.5vw, 1.35rem); }
.page-hero__content .button { margin-top: 18px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 54px; color: rgba(255,255,255,.7); font-size: .75rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-bright); }
.breadcrumbs--dark { color: var(--muted); }

.service-jump { position: sticky; z-index: 50; top: var(--header-height); background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,.04); }
.service-jump__inner { display: flex; gap: 9px; padding-top: 15px; padding-bottom: 15px; overflow-x: auto; scrollbar-width: thin; }
.service-jump a { flex: 0 0 auto; padding: 8px 13px; border: 1px solid var(--line); color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.service-jump a:hover { background: var(--black); border-color: var(--black); color: var(--white); }

.service-detail-list { background: var(--paper); }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; min-height: 690px; scroll-margin-top: 145px; }
.service-detail--reverse .service-detail__media { order: 2; }
.service-detail__media { min-height: 620px; }
.service-detail__media picture, .service-detail__media img { width: 100%; height: 100%; }
.service-detail__media img { object-fit: cover; }
.service-detail__content { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 132px); background: var(--white); overflow: hidden; }
.service-detail:nth-child(4n + 2) .service-detail__content, .service-detail:nth-child(4n + 3) .service-detail__content { background: var(--paper); }
.service-detail__content h2 { margin: 0 0 24px; font-size: clamp(2.7rem, 4.3vw, 4.7rem); }
.service-detail__content > p { max-width: 720px; color: var(--muted); }
.service-detail__content .lead { color: var(--black); }
.service-detail__number { position: absolute; right: 4%; top: 3%; color: rgba(7,7,7,.05); font-family: "Arial Narrow", Arial, sans-serif; font-size: clamp(8rem, 14vw, 14rem); font-weight: 900; line-height: 1; }

.scope-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-light); }
.scope-grid > div { min-height: 260px; padding: 36px 28px; border-right: 1px solid var(--line-light); }
.scope-grid > div:last-child { border-right: 0; }
.scope-grid h3 { margin: 58px 0 15px; }
.scope-grid p { color: rgba(255,255,255,.62); font-size: .94rem; line-height: 1.6; }

/* Gallery */
.gallery-page__intro { margin-bottom: 76px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; gap: 22px; }
.gallery-item { grid-column: span 4; margin: 0 0 20px; }
.gallery-item--1, .gallery-item--4 { grid-column: span 7; }
.gallery-item--2, .gallery-item--5 { grid-column: span 5; }
.gallery-item button { position: relative; display: block; width: 100%; aspect-ratio: 4 / 3; padding: 0; border: 0; background: var(--paper); cursor: zoom-in; overflow: hidden; }
.gallery-item--1 button, .gallery-item--4 button { aspect-ratio: 16 / 10; }
.gallery-item picture, .gallery-item img { width: 100%; height: 100%; }
.gallery-item img { object-fit: cover; transition: transform .55s var(--ease), filter .55s; }
.gallery-item button:hover img { transform: scale(1.035); filter: brightness(.78); }
.gallery-item__zoom { position: absolute; right: 18px; top: 18px; width: 44px; height: 44px; display: grid; place-items: center; background: var(--gold); color: var(--black); font-size: 1.5rem; opacity: 0; transform: translateY(-8px); transition: opacity .25s, transform .25s; }
.gallery-item button:hover .gallery-item__zoom { opacity: 1; transform: translateY(0); }
.gallery-item figcaption { display: flex; align-items: center; gap: 15px; padding-top: 13px; font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.gallery-item figcaption span { color: #987126; }

.lightbox { width: min(92vw, 1280px); max-width: none; padding: 0; border: 0; background: transparent; color: var(--white); overflow: visible; }
.lightbox::backdrop { background: rgba(0,0,0,.92); backdrop-filter: blur(7px); }
.lightbox figure { margin: 0; }
.lightbox figure img { width: 100%; max-height: 82vh; object-fit: contain; }
.lightbox figcaption { padding: 12px 0; font-size: .82rem; font-weight: 750; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.lightbox__close, .lightbox__nav { position: fixed; z-index: 2; border: 1px solid rgba(255,255,255,.4); background: rgba(0,0,0,.5); color: var(--white); cursor: pointer; }
.lightbox__close { top: 22px; right: 22px; width: 48px; height: 48px; font-size: 2rem; }
.lightbox__nav { top: 50%; width: 52px; height: 62px; transform: translateY(-50%); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* Contact */
.contact-section { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: minmax(280px, .58fr) minmax(0, 1fr); gap: clamp(45px, 8vw, 120px); align-items: start; }
.contact-aside { position: sticky; top: 130px; }
.contact-aside > p { color: var(--muted); }
.contact-cards { display: grid; gap: 12px; margin: 36px 0; }
.contact-card { display: flex; flex-direction: column; padding: 24px 26px; border: 1px solid var(--line); background: var(--white); text-decoration: none; transition: border-color .2s, transform .2s; }
a.contact-card:hover { transform: translateX(4px); border-color: var(--gold); }
.contact-card span { color: #987126; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { margin: 7px 0 3px; font-size: 1.13rem; line-height: 1.45; }
.contact-card small { color: var(--muted); }
.contact-note { margin-top: 42px; padding: 28px; background: var(--black); color: var(--white); }
.contact-note .check-list { margin-bottom: 0; }
.contact-note .check-list li { border-color: var(--line-light); color: rgba(255,255,255,.72); font-size: .9rem; }
.contact-note .check-list li::before { color: var(--gold); }

.form-panel { padding: clamp(34px, 5vw, 68px); background: var(--white); box-shadow: var(--shadow); }
.form-panel__heading { margin-bottom: 42px; }
.form-panel__heading h2 { margin-bottom: 18px; font-size: clamp(2.5rem, 4vw, 4.1rem); }
.form-panel__heading p { color: var(--muted); }
.contact-form { display: grid; gap: 24px; }
.form-row { display: grid; gap: 20px; }
.form-row--two { grid-template-columns: 1fr 1fr; }
.contact-form label:not(.checkbox-label) { display: grid; gap: 8px; color: var(--black); font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    border: 1px solid #d4d0c7;
    border-radius: 0;
    background: var(--paper);
    color: var(--black);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-form input, .contact-form select { min-height: 54px; padding: 11px 14px; }
.contact-form textarea { min-height: 190px; padding: 14px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,162,82,.18); }
.contact-form small { color: var(--muted); font-size: .76rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.checkbox-label { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.checkbox-label input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--gold); }
.checkbox-label a { color: var(--black); }
.field-error { display: block; color: #a2271d; font-size: .76rem; font-weight: 700; letter-spacing: 0; text-transform: none; }
.form-notice { margin-bottom: 28px; padding: 20px 22px; border-left: 4px solid #796216; background: #f6eedc; }
.form-notice--error { border-color: #a2271d; background: #fff0ed; }
.form-notice--success { border-color: #2d7147; background: #edf8f1; }
.form-notice p { margin: 5px 0 0; font-size: .92rem; }
.button--submit { border: 0; cursor: pointer; justify-self: start; }
.button--submit:disabled { cursor: not-allowed; filter: grayscale(.25); opacity: .58; transform: none; }
.form-security-note { color: var(--muted); font-size: .76rem; }
.turnstile-wrap { min-height: 65px; }
.development-note { padding: 13px 16px; border: 1px dashed #a88640; background: var(--gold-pale); color: #624a19; font-size: .82rem; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; white-space: nowrap !important; }

/* Legal */
.legal-hero { background: var(--paper); border-bottom: 1px solid var(--line); }
.legal-hero__inner { padding-top: 90px; padding-bottom: 70px; }
.legal-hero h1 { margin: 0; font-size: clamp(3.5rem, 7vw, 7rem); }
.legal-layout { display: grid; grid-template-columns: minmax(0, 800px) minmax(240px, 320px); gap: clamp(50px, 10vw, 150px); align-items: start; }
.legal-content h2 { margin: 48px 0 15px; font-size: clamp(1.55rem, 2.3vw, 2.2rem); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: #4f4e49; }
.legal-content a { color: #705218; }
.legal-draft { margin-bottom: 38px; padding: 22px 24px; border-left: 4px solid #a2271d; background: #fff0ed; }
.legal-aside { position: sticky; top: 130px; padding: 28px; background: var(--black); color: var(--white); }
.legal-aside p { margin-top: 10px; color: rgba(255,255,255,.64); font-size: .9rem; }

/* Footer */
.footer-cta { background: var(--gold); color: var(--black); padding: 68px 0; }
.footer-cta__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 60px; align-items: center; }
.footer-cta h2 { margin: 0 0 14px; font-size: clamp(2.2rem, 4vw, 4.2rem); }
.footer-cta p { max-width: 760px; margin: 0; }
.site-footer { background: var(--black); color: var(--white); padding-top: 78px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr 1fr; gap: 55px; padding-bottom: 70px; }
.footer-brand img { width: 230px; margin-bottom: 25px; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.56); }
.site-footer h2 { margin-bottom: 23px; color: var(--gold-bright); font-family: inherit; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; font-style: normal; color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-contact a { margin-top: 9px; color: var(--white); text-decoration: none; font-weight: 750; }
.social-links { display: flex; gap: 9px; margin-top: 20px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line-light); color: var(--gold-bright); font-size: .72rem; font-weight: 900; text-decoration: none; text-transform: uppercase; }
.social-links a:hover { background: var(--gold); color: var(--black); }
.footer-bottom { min-height: 76px; display: flex; justify-content: space-between; align-items: center; gap: 24px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.45); font-size: .77rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.mobile-call { display: none; }

@media (max-width: 1120px) {
    :root { --header-height: 82px; }
    .utility-bar__inner > p { display: none; }
    .utility-bar__inner { justify-content: flex-end; }
    .brand { flex-basis: 165px; }
    .brand img { width: 165px; }
    .main-nav { gap: 18px; }
    .main-nav ul { gap: 18px; }
    .nav-cta { display: none; }
    .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid li:nth-child(3) { border-left: 1px solid var(--line-light); border-top: 1px solid var(--line-light); }
    .process-grid li:nth-child(4) { border-top: 1px solid var(--line-light); }
    .scope-grid { grid-template-columns: repeat(2, 1fr); }
    .scope-grid > div:nth-child(2) { border-right: 0; }
    .scope-grid > div:nth-child(n+3) { border-top: 1px solid var(--line-light); }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-grid > div:nth-child(3) { display: none; }
}

@media (max-width: 820px) {
    :root { --header-height: 76px; }
    html { scroll-padding-top: 92px; }
    body { font-size: 16px; }
    .container { width: min(calc(100% - 32px), var(--container)); }
    .utility-bar { display: none; }
    .site-header__inner { min-height: var(--header-height); }
    .brand { flex-basis: 150px; }
    .brand img { width: 150px; }
    .menu-toggle { display: flex; align-items: center; gap: 12px; padding: 9px 0 9px 12px; border: 0; background: transparent; color: var(--white); cursor: pointer; }
    .menu-toggle__label { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
    .menu-toggle__icon { width: 25px; display: grid; gap: 5px; }
    .menu-toggle__icon i { height: 2px; background: var(--gold); transition: transform .25s, opacity .25s; }
    .nav-open .menu-toggle__icon i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-open .menu-toggle__icon i:nth-child(2) { opacity: 0; }
    .nav-open .menu-toggle__icon i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav { position: fixed; z-index: -1; top: var(--header-height); left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: space-between; gap: 30px; padding: 35px 24px 44px; background: var(--black); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s, visibility .25s, transform .25s; overflow-y: auto; }
    .nav-open .main-nav { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav ul { display: block; }
    .main-nav ul a { padding: 17px 0; border-bottom: 1px solid var(--line-light); font-family: "Arial Narrow", Arial, sans-serif; font-size: clamp(1.7rem, 7vw, 2.5rem); letter-spacing: -.02em; text-transform: none; }
    .main-nav ul a::after { display: none; }
    .nav-cta { display: inline-flex; width: 100%; }

    .hero-slider { min-height: calc(100svh - var(--header-height)); }
    .hero-slide__overlay { background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.43)), linear-gradient(0deg, rgba(0,0,0,.78), transparent 60%); }
    .hero-slide__content { padding: 86px 0 150px; }
    .hero-slide__content h1, .hero-slide__content h2 { font-size: clamp(3rem, 13.5vw, 5.2rem); }
    .hero-slide__content p { font-size: 1.04rem; }
    .hero-slider__controls { bottom: 26px; }
    .hero-slider__arrows { display: none; }
    .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip__grid div { min-height: 88px; padding: 18px 14px; }
    .trust-strip__grid div:nth-child(3) { border-left: 1px solid var(--line-light); border-top: 1px solid var(--line-light); }
    .trust-strip__grid div:nth-child(4) { border-top: 1px solid var(--line-light); }
    .trust-strip span { font-size: .7rem; }

    .section-heading--split, .intro-grid, .object-grid, .faq-grid, .contact-grid, .legal-layout { grid-template-columns: 1fr; }
    .section-heading--split { gap: 25px; }
    .intro-copy { padding-top: 0; }
    .process-grid li { min-height: 250px; }
    .process-grid h3 { margin-top: 42px; }
    .object-image { min-height: 480px; }
    .object-grid--reverse .object-image { order: 0; }
    .object-image__tag { right: 0; }
    .testimonial-grid { grid-template-columns: 58px 1fr; gap: 18px; }
    .testimonial-mark { font-size: 7rem; }
    .gallery-mosaic { grid-auto-rows: 95px; }
    .gallery-mosaic__item--1 { grid-column: span 12; grid-row: span 4; }
    .gallery-mosaic__item--2, .gallery-mosaic__item--3 { grid-column: span 6; }
    .gallery-mosaic__item--4, .gallery-mosaic__item--5, .gallery-mosaic__item--6 { grid-column: span 4; }

    .page-hero { min-height: 570px; }
    .page-hero__content { padding-bottom: 56px; }
    .page-hero__content h1 { font-size: clamp(3rem, 12vw, 5.3rem); }
    .breadcrumbs { margin-bottom: 38px; }
    .service-jump { top: var(--header-height); }
    .service-detail { grid-template-columns: 1fr; min-height: 0; }
    .service-detail--reverse .service-detail__media { order: 0; }
    .service-detail__media { min-height: 430px; }
    .service-detail__content { min-height: 560px; }

    .gallery-grid { gap: 18px; }
    .gallery-item, .gallery-item--1, .gallery-item--2, .gallery-item--4, .gallery-item--5 { grid-column: span 6; }
    .gallery-item button, .gallery-item--1 button, .gallery-item--4 button { aspect-ratio: 4 / 3; }
    .contact-aside, .legal-aside { position: static; }
    .footer-cta__inner { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: span 2; }
    .mobile-call { position: fixed; z-index: 800; right: 16px; bottom: 16px; display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--gold); color: var(--black); box-shadow: 0 10px 30px rgba(0,0,0,.25); font-size: .76rem; font-weight: 900; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
    .mobile-call svg { width: 18px; fill: currentColor; }
}

@media (max-width: 560px) {
    .container { width: min(calc(100% - 24px), var(--container)); }
    .section { padding: 76px 0; }
    .button-row { align-items: stretch; }
    .button-row .button { width: 100%; }
    .hero-slide__content { padding-top: 65px; }
    .hero-slide__content h1, .hero-slide__content h2 { margin-bottom: 22px; font-size: clamp(2.75rem, 13vw, 4.4rem); }
    .hero-slide__content p { margin-bottom: 28px; line-height: 1.48; }
    .hero-slider__dots button { width: 46px; }
    .trust-strip__grid div { align-items: flex-start; flex-direction: column; gap: 5px; }
    .service-grid { grid-template-columns: 1fr; gap: 24px; }
    .service-card p { min-height: 0; }
    .process-grid, .scope-grid { grid-template-columns: 1fr; }
    .process-grid li, .process-grid li:nth-child(3), .process-grid li:nth-child(4), .scope-grid > div { min-height: 0; border: 0; border-bottom: 1px solid var(--line-light); }
    .process-grid li:first-child { border-left: 0; }
    .scope-grid > div:nth-child(n+3) { border-top: 0; }
    .object-image { min-height: 380px; }
    .object-image::before { top: -12px; left: -12px; }
    .testimonial-grid { display: block; }
    .testimonial-mark { height: 60px; }
    .gallery-mosaic { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; }
    .gallery-mosaic__item, .gallery-mosaic__item--1, .gallery-mosaic__item--2, .gallery-mosaic__item--3, .gallery-mosaic__item--4, .gallery-mosaic__item--5, .gallery-mosaic__item--6 { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
    .page-hero { min-height: 520px; }
    .page-hero__content { padding-top: 60px; }
    .service-detail__media { min-height: 320px; }
    .service-detail__content { min-height: 0; padding: 66px 22px; }
    .service-detail__number { font-size: 7rem; }
    .gallery-page__intro { margin-bottom: 52px; }
    .gallery-item, .gallery-item--1, .gallery-item--2, .gallery-item--4, .gallery-item--5 { grid-column: span 12; }
    .gallery-item__zoom { opacity: 1; transform: none; }
    .lightbox__nav { top: auto; bottom: 16px; transform: none; }
    .form-panel { padding: 32px 18px; }
    .form-row--two { grid-template-columns: 1fr; }
    .button--submit { width: 100%; }
    .footer-cta .button-row { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:first-child { grid-column: auto; }
    .footer-bottom { padding: 24px 0 94px; flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .hero-slide__media img { transform: none !important; }
}
