:root {
  --ink: #131316;
  --ink-soft: #202024;
  --paper: #f4f1eb;
  --paper-2: #ebe6dd;
  --white: #ffffff;
  --gold: #b97025;
  --gold-light: #e3b36b;
  --text: #242326;
  --muted: #6f6a63;
  --line: #ddd6cb;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(24, 21, 17, .12);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  margin-bottom: 0;
  color: inherit;
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -.045em;
}
h2 { font-size: clamp(2.35rem, 4.7vw, 4.75rem); }
h3 { letter-spacing: -.025em; }
p { margin-bottom: 0; }
svg { display: block; }
::selection { color: #111; background: var(--gold-light); }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: 112px; }
:where(main, footer) [id] { scroll-margin-top: 150px; }
.skip-link {
  position: fixed;
  z-index: 10000;
  left: 18px;
  top: 12px;
  padding: 11px 16px;
  color: #111;
  background: var(--gold-light);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { width: 30px; height: 2px; content: ""; background: currentColor; }
.eyebrow.dark { color: #a76320; }
.reveal { opacity: 1; transform: none; }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: #fff;
  box-shadow: 0 1px 0 rgba(21, 18, 15, .1);
}
.topbar { color: rgba(255,255,255,.8); background: var(--ink); font-size: .74rem; font-weight: 700; }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; }
.topbar-inner > span { display: flex; align-items: center; gap: 9px; }
.topbar-inner > span::before { width: 7px; height: 7px; content: ""; background: var(--gold-light); border-radius: 50%; }
.topbar-links { display: flex; gap: 26px; }
.topbar a:hover { color: var(--gold-light); }
.navbar { min-height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 390px; min-width: 0; display: flex; flex: 0 1 390px; align-items: center; }
.navbar .brand { transition: opacity .2s ease, transform .2s ease; }
.brand-logo { width: 100%; height: auto; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 25px; font-size: .83rem; font-weight: 800; }
.nav-links > a:not(.nav-cta) { position: relative; padding: 34px 0; }
.nav-links > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .22s;
}
.nav-links > a:hover::after, .nav-links > a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 13px 20px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transition: color .2s, background .2s, transform .2s;
}
.nav-cta:hover { color: #111; background: var(--gold-light); transform: translateY(-2px); }
.menu-toggle { display: none; }

/* Buttons */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 850;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: #151519; background: var(--gold-light); }
.button-primary:hover { background: #f0c784; }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.3); background: transparent; }
.button-ghost:hover { color: #111; background: #fff; border-color: #fff; }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { color: #111; background: var(--gold-light); }
.text-link { display: inline-flex; gap: 12px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: .82rem; font-weight: 850; }
.text-link span, .service-more { color: #9b5f21; }

/* Home hero */
.hero-redesign { position: relative; overflow: hidden; color: #fff; background: var(--ink); }
.hero-redesign::before {
  position: absolute;
  left: -260px;
  bottom: -360px;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(227,179,107,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(227,179,107,.025), 0 0 0 180px rgba(227,179,107,.018);
}
.hero-layout { position: relative; min-height: 720px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.hero-content { position: relative; z-index: 2; padding-block: 86px; }
.hero-content h1 { max-width: 650px; margin-bottom: 27px; font-size: clamp(3.6rem, 6.2vw, 6.5rem); }
.hero-content h1 span { color: var(--gold-light); }
.hero-copy { max-width: 570px; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 26px; margin: 42px 0 0; padding: 23px 0 0; border-top: 1px solid rgba(255,255,255,.12); list-style: none; color: rgba(255,255,255,.7); font-size: .78rem; }
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof i { width: 22px; height: 22px; display: grid; place-items: center; color: var(--gold-light); border: 1px solid var(--gold-light); border-radius: 50%; font-size: .65rem; font-style: normal; }
.hero-visual { position: relative; height: 570px; margin-right: calc((1180px - 100vw) / 2); }
.hero-image-frame { position: absolute; inset: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 26px 0 0 26px; }
.hero-image-frame::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(19,19,22,.32), transparent 40%); }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-stamp { position: absolute; z-index: 2; left: -35px; bottom: 35px; display: flex; align-items: center; gap: 14px; padding: 18px 22px; color: #141417; background: linear-gradient(135deg, #edc47e, #bd792d); border-radius: 16px; box-shadow: 0 18px 50px rgba(0,0,0,.26); }
.hero-stamp strong { font-size: 2.4rem; line-height: 1; letter-spacing: -.08em; }
.hero-stamp span { font-size: .68rem; font-weight: 900; line-height: 1.25; text-transform: uppercase; }
.hero-vertical { position: absolute; z-index: 2; right: 20px; top: 25px; padding: 12px 7px; color: rgba(255,255,255,.72); background: rgba(19,19,22,.68); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-size: .52rem; font-weight: 850; letter-spacing: .14em; writing-mode: vertical-rl; }

/* Shared section layouts */
.intro { background: var(--paper); }
.home-longform, .service-overview-copy, .about-story { background: var(--paper); }
.service-copy-section { background: #fff; }
.intro-grid, .content-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: start; }
.intro-grid > *, .content-split > *, .section-head > *, .contact-grid > *, .about-grid > *, .expertise-grid > * { min-width: 0; }
.intro-heading { max-width: 650px; }
.intro-copy { padding-top: 52px; }
.intro-copy p, .rich-copy > p { color: var(--muted); font-size: 1.05rem; }
.intro-copy p { margin-bottom: 30px; }
.rich-copy > p + p { margin-top: 20px; }
.section-head { display: grid; grid-template-columns: 1fr 360px; gap: 70px; align-items: end; margin-bottom: 56px; }
.section-head > p { color: var(--muted); }
.compact-head { max-width: 820px; margin-bottom: 52px; }

/* Services */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 370px; display: flex; flex-direction: column; padding: 34px 31px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: color .25s, background .25s, transform .25s, box-shadow .25s; }
.service-card:hover { color: #fff; background: var(--ink); border-color: var(--ink); box-shadow: var(--shadow); transform: translateY(-6px); }
.service-number { position: absolute; right: 27px; top: 23px; color: #a39b91; font-size: .65rem; font-weight: 900; }
.service-card svg { width: 52px; height: 52px; margin-bottom: 36px; fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 17px; font-size: 1.45rem; }
.service-card p { color: var(--muted); font-size: .89rem; }
.service-card:hover p { color: rgba(255,255,255,.62); }
.service-more { margin-top: auto; padding-top: 22px; font-size: .76rem; font-weight: 850; }
.service-card-wide { min-height: 210px; grid-column: 1 / -1; display: grid; grid-template-columns: 75px 1fr auto; align-items: center; gap: 24px; }
.service-card-wide svg { margin: 0; }
.service-card-wide h3 { margin-bottom: 10px; }
.service-card-wide > a { font-size: .78rem; font-weight: 850; }

/* Expertise, about, process */
.local-expertise, .about { color: #fff; background: var(--ink); }
.expertise-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; }
.expertise-heading { position: sticky; top: 160px; }
.expertise-mark { display: block; margin-top: 52px; color: rgba(255,255,255,.035); font-size: 10rem; font-weight: 950; line-height: .8; letter-spacing: -.12em; }
.expertise-copy > p { color: rgba(255,255,255,.58); }
.expertise-copy .lead { margin-bottom: 20px; color: rgba(255,255,255,.8); font-size: 1.08rem; }
.expertise-points { margin-top: 42px; border-top: 1px solid rgba(255,255,255,.14); }
.expertise-points article { display: grid; grid-template-columns: 44px 145px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.expertise-points article span { color: var(--gold-light); font-size: .66rem; font-weight: 900; }
.expertise-points article p { color: rgba(255,255,255,.48); font-size: .82rem; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: center; }
.about-image { position: relative; }
.about-image::before { position: absolute; inset: -14px 14px 14px -14px; content: ""; border: 1px solid rgba(227,179,107,.42); border-radius: var(--radius); }
.about-image img { position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.image-badge { position: absolute; right: -24px; bottom: 32px; display: flex; align-items: center; gap: 12px; padding: 17px 19px; color: #111; background: var(--gold-light); border-radius: 14px; }
.image-badge strong { font-size: 2rem; }
.image-badge span { font-size: .65rem; font-weight: 900; line-height: 1.25; text-transform: uppercase; }
.about-content .lead { margin: 28px 0 35px; color: rgba(255,255,255,.64); }
.about-note { margin: -14px 0 34px; color: rgba(255,255,255,.58); font-size: .9rem; }
.benefit-list { border-top: 1px solid rgba(255,255,255,.14); }
.benefit-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 17px; align-items: center; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.benefit-list > div > span { color: var(--gold-light); font-size: .65rem; font-weight: 900; }
.benefit-list p { display: grid; grid-template-columns: 155px 1fr; color: rgba(255,255,255,.5); font-size: .83rem; }
.benefit-list strong { color: #fff; font-size: .92rem; }
.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-grid article { min-height: 265px; padding: 29px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.process-grid article > span { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 50px; color: var(--gold); border: 1px solid var(--gold); border-radius: 50%; font-size: .66rem; font-weight: 900; }
.process-grid h3 { margin-bottom: 14px; font-size: 1.28rem; }
.process-grid p { color: var(--muted); font-size: .87rem; }

/* Galleries */
.homepage-gallery { background: #fff; }
.gallery-mosaic { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 260px 260px; gap: 14px; }
.gallery-tile { position: relative; overflow: hidden; color: #fff; background: var(--ink); border-radius: var(--radius); }
.gallery-tile::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(0,0,0,.78), transparent 62%); }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile span { position: absolute; z-index: 2; left: 22px; bottom: 19px; font-size: .85rem; font-weight: 850; }
.gallery-large { grid-row: 1 / 3; }
.gallery-wide { grid-column: 2 / 4; }
.gallery-action { display: flex; justify-content: center; margin-top: 32px; }
.image-collage { padding-bottom: 112px; }
.collage-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 260px 260px; gap: 16px; }
.collage-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.collage-grid img:first-child { grid-row: 1 / 3; }

/* CTA */
.cta-band { position: relative; overflow: hidden; padding-block: 72px; color: #fff; background: linear-gradient(115deg, #9f5b1d, #d59a4f); }
.cta-band::after { position: absolute; right: -120px; bottom: -260px; width: 430px; height: 430px; content: ""; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.02); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.cta-band .eyebrow { color: #fff; }
.cta-band .button-primary { color: #fff; background: var(--ink); }

/* Contact and forms */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 82px; align-items: start; }
.contact-content > p:not(.eyebrow) { margin: 27px 0 36px; color: var(--muted); }
.contact-list { border-top: 1px solid var(--line); }
.contact-list a { display: grid; grid-template-columns: 46px 1fr; gap: 15px; align-items: center; padding: 19px 0; border-bottom: 1px solid var(--line); }
.contact-icon, .contact-quick-grid i, .footer-quick-links i, .map-consent i { display: grid; place-items: center; color: #fff; background: var(--ink); }
.contact-icon { width: 42px; height: 42px; border-radius: 12px; }
.contact-icon svg, .contact-quick-grid svg, .footer-quick-links svg, .map-consent svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-list small, .contact-list strong { display: block; }
.contact-list small { margin-bottom: 2px; color: #9a6025; font-size: .62rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-list strong { font-size: .91rem; }
.contact-form { padding: 39px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 27px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.form-head span { font-size: 1.22rem; font-weight: 850; }
.form-head strong { color: var(--gold); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label > span:first-child { font-size: .72rem; font-weight: 850; }
.form-grid .full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; color: var(--text); background: #fff; border: 1px solid #d1cabf; border-radius: 10px; outline: 0; }
input, select { height: 50px; padding: 0 14px; }
textarea { min-height: 125px; padding: 13px 14px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,112,37,.12); }
.privacy-check { grid-template-columns: 19px 1fr !important; gap: 10px !important; align-items: start; }
.privacy-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold); }
.privacy-check span, .file-field small { color: var(--muted); font-size: .7rem !important; font-weight: 500 !important; line-height: 1.5; }
.privacy-check a { text-decoration: underline; }
.honey-field { position: absolute; left: -10000px; }
.form-message { display: none; padding: 11px 13px; border-radius: 8px; font-size: .78rem; }
.form-message.error, .form-message.success { display: block; }
.form-message.error { color: #7d2921; background: #f9e5e1; }
.form-message.success { color: #20572f; background: #e4f3e8; }
.contact-form.is-sending button { opacity: .6; pointer-events: none; }
.contact-photo { height: 315px; margin-top: 34px; overflow: hidden; border-radius: var(--radius); }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Content-page heroes */
.subhero { position: relative; min-height: 540px; display: grid; align-items: end; overflow: hidden; color: #fff; background: var(--ink); }
.subhero::before { position: absolute; inset: 0; content: ""; background: var(--subhero-image) center / cover no-repeat; }
.subhero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,13,.94), rgba(11,11,13,.58) 58%, rgba(11,11,13,.18)), linear-gradient(0deg, rgba(11,11,13,.45), transparent 58%); }
.subhero-content { position: relative; z-index: 2; padding-block: 72px 64px; }
.subhero-content h1 { max-width: 920px; margin-bottom: 23px; font-size: clamp(3rem, 6.8vw, 6.3rem); }
.subhero-content > p:not(.eyebrow) { max-width: 700px; margin-bottom: 25px; color: rgba(255,255,255,.76); font-size: 1.03rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 42px; color: rgba(255,255,255,.58); font-size: .69rem; }
.breadcrumb strong { color: #fff; }
.service-intro { background: #fff; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin: 30px 0 0; padding: 25px 0 0; border-top: 1px solid var(--line); list-style: none; }
.check-list li { position: relative; padding-left: 26px; font-size: .88rem; font-weight: 750; }
.check-list li::before { position: absolute; left: 0; top: .15em; width: 18px; height: 18px; display: grid; place-items: center; content: "✓"; color: #111; background: var(--gold-light); border-radius: 50%; font-size: .6rem; }
.image-story { padding-bottom: 112px; }
.image-story-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; align-items: end; }
.image-story figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.image-story img { width: 100%; height: 100%; object-fit: cover; }
.image-story-main { height: 540px; }
.image-story-side { position: relative; height: 400px; }
.image-story-side figcaption { position: absolute; right: 0; bottom: 0; padding: 13px 16px; color: #111; background: var(--gold-light); font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.detail-section, .related-services, .value-section, .project-promise, .map-section { background: var(--paper); }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.detail-grid article { min-height: 285px; padding: 31px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.detail-grid article > span { display: block; margin-bottom: 48px; color: var(--gold); font-size: .66rem; font-weight: 900; }
.detail-grid h3 { margin-bottom: 15px; font-size: 1.3rem; }
.detail-grid p { color: var(--muted); font-size: .87rem; }
.service-process { padding-block: 100px; color: #fff; background: var(--ink); }
.horizontal-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.horizontal-steps li { min-height: 170px; padding: 27px 22px 12px 0; border-right: 1px solid rgba(255,255,255,.16); }
.horizontal-steps li:last-child { border-right: 0; }
.horizontal-steps span { display: block; margin-bottom: 29px; color: var(--gold-light); font-size: .63rem; font-weight: 900; }
.horizontal-steps strong { display: block; margin-bottom: 6px; }
.horizontal-steps p { color: rgba(255,255,255,.5); font-size: .8rem; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; cursor: pointer; font-weight: 820; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 29px; height: 29px; flex: 0 0 29px; display: grid; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; transition: transform .2s, background .2s; }
.faq-list details[open] summary span { background: var(--gold); transform: rotate(45deg); }
.faq-list details p { padding: 0 42px 22px 0; color: var(--muted); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { position: relative; min-height: 330px; overflow: hidden; color: #fff; background: var(--ink); border-radius: var(--radius); }
.related-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(0,0,0,.84), transparent 64%); }
.related-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.related-card:hover img { transform: scale(1.04); }
.related-card > span, .related-card > i { position: absolute; z-index: 2; bottom: 23px; }
.related-card > span { left: 23px; max-width: 72%; font-weight: 850; }
.related-card > i { right: 23px; color: var(--gold-light); font-style: normal; }
.photo-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.photo-service-card { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.photo-service-card a { height: 100%; display: grid; grid-template-rows: 285px 1fr; }
.photo-service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.photo-service-card:hover img { transform: scale(1.035); }
.photo-service-card a > div { padding: 29px; }
.photo-service-card span { color: var(--gold); font-size: .65rem; font-weight: 900; }
.photo-service-card h2 { margin: 10px 0 14px; font-size: 1.65rem; }
.photo-service-card p { color: var(--muted); font-size: .87rem; }
.photo-service-card strong { display: inline-block; margin-top: 14px; font-size: .75rem; }
.quality-strip { color: #fff; background: var(--ink); }
.quality-strip .container { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.quality-strip p { position: relative; padding-left: 15px; font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.quality-strip p::before { position: absolute; left: 0; top: .55em; width: 6px; height: 6px; content: ""; background: var(--gold-light); transform: rotate(45deg); }

/* Projects */
.projects-showcase { padding-bottom: 112px; }
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.project-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 42px rgba(24,21,17,.06); }
.project-card.project-1, .project-card.project-4 { grid-column: 1 / -1; display: grid; grid-template-columns: 1.25fr .75fr; }
.project-image { position: relative; min-height: 340px; overflow: hidden; }
.project-card:not(.project-1):not(.project-4) .project-image { height: 320px; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.project-card:hover .project-image img { transform: scale(1.035); }
.project-image > span { position: absolute; left: 18px; top: 18px; width: 42px; height: 42px; display: grid; place-items: center; color: #111; background: var(--gold-light); border-radius: 50%; font-size: .63rem; font-weight: 900; }
.project-copy { padding: 30px; }
.project-card.project-1 .project-copy, .project-card.project-4 .project-copy { display: flex; flex-direction: column; justify-content: center; padding: 43px; }
.project-copy small { color: var(--gold); font-size: .63rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.project-copy h2 { margin: 12px 0 14px; font-size: clamp(1.7rem, 3vw, 2.65rem); }
.project-copy p { color: var(--muted); }
.project-copy a { display: inline-block; margin-top: 13px; font-size: .75rem; font-weight: 850; }
.project-numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.project-numbers > div { min-height: 135px; display: flex; flex-direction: column; justify-content: space-between; padding: 25px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.project-numbers strong { color: var(--gold); font-size: .66rem; }
.project-numbers span { font-weight: 820; }

/* Contact page and map */
.contact-quick-section { background: var(--paper); }
.contact-quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; transform: translateY(-34px); margin-bottom: -34px; }
.contact-quick-grid > article { min-height: 135px; display: grid; grid-template-columns: 50px 1fr; gap: 16px; align-items: center; padding: 25px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 48px rgba(24,21,17,.09); }
.contact-quick-grid i { width: 50px; height: 50px; border-radius: 14px; }
.contact-quick-grid small, .contact-quick-grid strong, .contact-quick-grid em { display: block; }
.contact-quick-grid small { color: var(--gold); font-size: .6rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-quick-grid strong { overflow-wrap: anywhere; font-size: .88rem; }
.contact-quick-grid em { margin-top: 2px; color: var(--muted); font-size: .69rem; font-style: normal; }
.contact-v3 { background: #fff; }
.contact-v3 .contact-content > p:not(.eyebrow) { margin: 0 0 17px; }
.contact-v3 .contact-photo { position: relative; }
.contact-v3 .contact-photo span { position: absolute; left: 16px; bottom: 16px; padding: 8px 11px; color: #111; background: var(--gold-light); border-radius: 999px; font-size: .6rem; font-weight: 900; text-transform: uppercase; }
.map-heading { display: grid; grid-template-columns: 1fr 420px; gap: 65px; align-items: end; margin-bottom: 43px; }
.map-heading > p { color: var(--muted); }
.map-frame { position: relative; height: 500px; overflow: hidden; background: radial-gradient(circle at 70% 35%, #35302a, var(--ink) 63%); border-radius: 24px; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px; color: #fff; text-align: center; }
.map-consent i { width: 62px; height: 62px; margin-bottom: 19px; color: #111; background: var(--gold-light); border-radius: 18px; }
.map-consent h3 { margin-bottom: 7px; font-size: 1.4rem; }
.map-consent p { margin-bottom: 20px; color: rgba(255,255,255,.6); }
.map-consent small { margin-top: 12px; color: rgba(255,255,255,.4); font-size: .62rem; }
.service-area-section { padding-block: 82px; color: #fff; background: var(--ink); }
.service-area-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.service-area-grid > div:last-child > p { color: rgba(255,255,255,.58); }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.area-tags span { padding: 8px 12px; color: var(--gold-light); border: 1px solid rgba(227,179,107,.3); border-radius: 999px; font-size: .66rem; font-weight: 800; }

/* Legal */
.legal-page { background: var(--paper); }
.legal-main { padding-block: 80px 105px; }
.legal-card { max-width: 900px; padding: 50px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.legal-card h1 { margin-bottom: 36px; font-size: clamp(2.8rem, 6vw, 5rem); }
.legal-card h2 { margin: 32px 0 11px; font-size: 1.35rem; }
.legal-card p, .legal-card li { color: #59554f; }
.legal-card a { color: #8d551d; text-decoration: underline; }

/* Footer */
.footer { color: #fff; background: #0f0f12; }
.footer-accent { height: 5px; background: linear-gradient(90deg, #8d531c, #e3b36b 50%, #8d531c); }
.footer-brand-panel { display: grid; grid-template-columns: 390px 1fr; gap: 30px; align-items: center; margin-top: 62px; padding: 24px; color: var(--text); background: #fff; border-radius: 22px; }
.footer-brand-panel .footer-brand { width: 100%; max-width: 390px; }
.footer-quick-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.footer-quick-links > a { min-width: 0; display: grid; grid-template-columns: 40px 1fr; gap: 10px; align-items: center; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.footer-quick-links i { width: 40px; height: 40px; border-radius: 11px; }
.footer-quick-links span { min-width: 0; }
.footer-quick-links small, .footer-quick-links strong, .footer-quick-links em { display: block; }
.footer-quick-links small { color: var(--gold); font-size: .55rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.footer-quick-links strong { overflow-wrap: anywhere; font-size: .67rem; line-height: 1.35; }
.footer-quick-links em { color: var(--muted); font-size: .61rem; font-style: normal; }
.footer-main-v3 { display: grid; grid-template-columns: 1.55fr .55fr .8fr; gap: 70px; padding-block: 75px 58px; }
.footer-pitch h2 { max-width: 600px; margin-bottom: 21px; font-size: clamp(2.4rem, 4vw, 4.2rem); }
.footer-pitch > p:not(.eyebrow) { max-width: 620px; margin-bottom: 26px; color: rgba(255,255,255,.52); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-column h2 { margin: 5px 0 13px; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.56); font-size: .78rem; }
.footer-column a:hover { color: var(--gold-light); }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 25px; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.11); font-size: .7rem; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-cookie-button { padding: 0; color: inherit; background: transparent; border: 0; }
.footer-bottom a:hover, .footer-cookie-button:hover { color: #fff; }
.floating-call { position: fixed; z-index: 90; right: 17px; bottom: 17px; display: none; align-items: center; gap: 8px; padding: 8px 13px 8px 8px; color: #111; background: var(--gold-light); border-radius: 999px; box-shadow: 0 14px 38px rgba(0,0,0,.24); font-size: .7rem; }
.floating-call span { width: 31px; height: 31px; display: grid; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; }

/* Cookie preferences: one first-visit prompt, then available from the footer */
.cookie-banner { position: fixed; z-index: 9998; left: 20px; bottom: 20px; width: min(460px, calc(100% - 40px)); display: grid; gap: 16px; padding: 24px 22px 19px; overflow: hidden; color: #fff; background: rgba(18,18,21,.99); border: 1px solid rgba(227,179,107,.28); border-radius: 18px; box-shadow: 0 24px 70px rgba(0,0,0,.38); visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(calc(100% + 50px)); transition: opacity .24s, transform .28s, visibility .28s; }
.cookie-banner::before { position: absolute; inset: 0 0 auto; height: 3px; content: ""; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); }
.cookie-banner.is-visible { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
.cookie-close { position: absolute; top: 12px; right: 13px; width: 32px; height: 32px; display: grid; place-items: center; padding: 0 0 2px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 50%; font-size: 1.15rem; }
.cookie-copy { padding-right: 32px; }
.cookie-copy p { margin-bottom: 6px; color: var(--gold-light); font-size: .56rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.cookie-copy h2 { margin-bottom: 7px; font-size: 1.12rem; letter-spacing: -.025em; }
.cookie-copy > span { display: block; color: rgba(255,255,255,.6); font-size: .7rem; }
.cookie-copy a { color: #fff; text-decoration: underline; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cookie-button { min-height: 43px; padding: 9px 12px; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: .66rem; font-weight: 850; }
.cookie-accept { color: #111; background: var(--gold-light); border-color: var(--gold-light); }

/* Tablet */
@media (max-width: 1050px) {
  .nav-links { gap: 16px; font-size: .77rem; }
  .hero-layout { gap: 35px; }
  .hero-visual { margin-right: -24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: 1 / -1; }
  .footer-brand-panel { grid-template-columns: 1fr; }
  .footer-quick-links { grid-template-columns: repeat(3, 1fr); }
  .footer-main-v3 { gap: 42px; }
}

/* Mobile navigation and layouts */
@media (max-width: 1100px) {
  body { padding-top: 82px; }
  :where(main, footer) [id] { scroll-margin-top: 100px; }
  .topbar { display: none; }
  .site-header { position: fixed; right: 0; left: 0; width: 100%; }
  .navbar { min-height: 82px; }
  .navbar .brand { position: relative; z-index: 1002; width: 320px; max-width: calc(100% - 70px); flex-basis: 320px; }
  .menu-toggle { position: relative; z-index: 1002; width: 46px; height: 46px; flex: 0 0 46px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 8px; background: var(--paper); border: 1px solid var(--line); border-radius: 13px; }
  .menu-toggle span { width: 23px; height: 2px; margin: 3px 0; background: var(--ink); border-radius: 999px; transition: transform .22s, opacity .18s, background .2s; }
  .menu-toggle[aria-expanded="true"] { background: var(--ink); border-color: var(--ink); }
  .menu-toggle[aria-expanded="true"] span { background: var(--gold-light); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-links { position: fixed; z-index: 1001; top: 82px; right: 0; bottom: 0; left: 0; width: 100%; height: calc(100vh - 82px); height: calc(100dvh - 82px); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 24px 24px calc(35px + env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; color: #fff; background: radial-gradient(circle at 92% 2%, rgba(227,179,107,.19), transparent 34%), linear-gradient(145deg, #19191d, #0e0e11 64%); visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .22s, transform .28s, visibility .28s; }
  .nav-links.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
  .nav-links::before { width: min(100%, 680px); margin: 0 auto 10px; color: var(--gold-light); content: "Navigation"; font-size: .59rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
  .nav-links > a:not(.nav-cta), .nav-links > .nav-cta { width: min(100%, 680px); margin-inline: auto; }
  .nav-links > a:not(.nav-cta) { min-height: 59px; display: flex; align-items: center; padding: 0 3px; color: rgba(255,255,255,.82); border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1rem; }
  .nav-links > a:not(.nav-cta)::after { display: none; }
  .nav-links > a.active { color: var(--gold-light); }
  .nav-links > .nav-cta { min-height: 50px; display: flex; align-items: center; justify-content: center; margin-top: 20px; color: #111; background: var(--gold-light); }
  .hero-layout { min-height: auto; grid-template-columns: 1fr; gap: 0; padding-block: 20px 0; }
  .hero-content { padding-block: 62px 45px; }
  .hero-visual { height: 460px; margin: 0 -24px 0 24px; }
  .hero-image-frame { border-radius: 22px 0 0 0; }
  .intro-grid, .content-split, .expertise-grid, .about-grid, .contact-grid, .faq-grid, .map-heading, .service-area-grid { grid-template-columns: 1fr; gap: 42px; }
  .intro-copy { padding-top: 0; }
  .section-head { grid-template-columns: 1fr; gap: 22px; }
  .expertise-heading { position: relative; top: 0; }
  .expertise-mark { display: none; }
  .process-grid, .project-numbers { grid-template-columns: 1fr 1fr; }
  .footer-main-v3 { grid-template-columns: 1.3fr .7fr .9fr; gap: 30px; }
  .contact-quick-grid { grid-template-columns: 1fr 1fr; }
  .contact-quick-grid > article:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { padding-top: 74px; }
  .container { width: min(100% - 30px, 1180px); }
  .section { padding-block: 76px; }
  h2 { font-size: clamp(2.15rem, 9.5vw, 3.25rem); }
  .navbar { min-height: 74px; gap: 16px; }
  .navbar .brand { width: 285px; max-width: calc(100% - 58px); flex-basis: 285px; }
  .nav-links { top: 74px; height: calc(100vh - 74px); height: calc(100dvh - 74px); padding: 22px 20px calc(30px + env(safe-area-inset-bottom)); }
  .hero-content h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .hero-actions { display: grid; }
  .hero-visual { height: 390px; margin: 0 -15px 0 15px; }
  .hero-stamp { left: -15px; bottom: 22px; }
  .hero-proof { display: grid; gap: 10px; }
  .services-grid, .photo-service-grid, .related-grid, .detail-grid, .projects-grid, .contact-quick-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .service-card-wide { min-height: 300px; grid-column: 1; display: flex; align-items: flex-start; }
  .service-card-wide > a { margin-top: auto; }
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(4, 245px); }
  .gallery-large, .gallery-wide { grid-column: auto; grid-row: auto; }
  .collage-grid { grid-template-columns: 1fr; grid-template-rows: 310px 220px 220px; }
  .collage-grid img:first-child { grid-row: auto; }
  .image-collage { padding-bottom: 76px; }
  .about-image { margin: 14px 0 0 14px; }
  .image-badge { right: 12px; }
  .benefit-list p { grid-template-columns: 1fr; gap: 3px; }
  .process-grid, .project-numbers { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label, .form-grid .full { grid-column: 1; }
  .contact-form { padding: 28px 22px; }
  .form-head { align-items: flex-start; flex-direction: column; }
  .subhero { min-height: 500px; }
  .subhero-content { padding-block: 55px 48px; }
  .subhero-content h1 { font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .check-list { grid-template-columns: 1fr; }
  .image-story { padding-bottom: 76px; }
  .image-story-grid { grid-template-columns: 1fr; }
  .image-story-main { height: 390px; }
  .image-story-side { height: 260px; }
  .horizontal-steps { grid-template-columns: 1fr; }
  .horizontal-steps li { min-height: 130px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .project-card.project-1, .project-card.project-4 { grid-column: 1; display: block; }
  .project-card.project-1 .project-copy, .project-card.project-4 .project-copy { padding: 30px; }
  .project-image, .project-card:not(.project-1):not(.project-4) .project-image { min-height: 0; height: 280px; }
  .contact-quick-grid { transform: none; margin-bottom: 0; padding-block: 38px 0; }
  .contact-quick-grid > article:last-child { grid-column: 1; }
  .map-frame { height: 430px; }
  .quality-strip .container { align-items: flex-start; flex-direction: column; padding-block: 30px; }
  .footer-brand-panel { margin-top: 42px; padding: 18px; }
  .footer-brand-panel .footer-brand { width: 100%; max-width: 390px; }
  .footer-quick-links { grid-template-columns: 1fr; }
  .footer-quick-links > a { min-height: 70px; }
  .footer-main-v3 { grid-template-columns: 1fr 1fr; gap: 40px 24px; padding-block: 56px 42px; }
  .footer-pitch { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 22px; }
  .floating-call { display: flex; }
  .legal-card { padding: 34px 24px; }
  .cookie-banner { left: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); width: calc(100% - 20px); padding: 22px 18px 17px; }
}

@media (max-width: 420px) {
  h2 { font-size: 1.95rem; overflow-wrap: anywhere; }
  .navbar .brand { width: 245px; flex-basis: 245px; }
  .menu-toggle { width: 42px; height: 42px; flex-basis: 42px; }
  .hero-visual { height: 340px; margin-inline: 0; }
  .expertise-points article { grid-template-columns: 36px 1fr; gap: 10px; }
  .expertise-points article p { grid-column: 2; }
  .footer-main-v3 { grid-template-columns: 1fr; }
  .footer-pitch { grid-column: 1; }
  .cookie-actions { grid-template-columns: 1fr; }
}

@media (max-width: 350px) {
  .navbar .brand { width: 195px; flex-basis: 195px; }
  .nav-links > a:not(.nav-cta) { min-height: 55px; }
}

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