:root {
  --ink: #151d24;
  --ink-2: #202b34;
  --ink-3: #35434e;
  --gold: #e7a92f;
  --gold-dark: #bf8111;
  --gold-pale: #fff5df;
  --paper: #ffffff;
  --sand: #f5f3ef;
  --line: #dfe3e5;
  --muted: #66727b;
  --success: #1b7550;
  --shadow: 0 24px 70px rgba(17, 25, 32, .13);
  --shadow-soft: 0 12px 38px rgba(17, 25, 32, .09);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 9999;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-sm { padding: 78px 0; }
.section-dark { color: #fff; background: var(--ink); }
.section-soft { background: var(--sand); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}
.section-dark .eyebrow { color: #f2bd54; }

h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 6.2vw, 5.65rem); }
h2 { font-size: clamp(2.15rem, 4.2vw, 4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.24rem); line-height: 1.75; }
.section-dark .lead { color: rgba(255, 255, 255, .7); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, .68fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}
.section-head--center { display: block; max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-top: 20px; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--ink); background: var(--gold); box-shadow: 0 12px 30px rgba(231, 169, 47, .25); }
.btn-primary:hover { background: #f0b640; box-shadow: 0 16px 34px rgba(231, 169, 47, .34); }
.btn-dark { color: #fff; background: var(--ink); }
.btn-dark:hover { background: var(--ink-2); }
.btn-light { color: var(--ink); background: #fff; }
.btn-outline { color: #fff; border-color: rgba(255, 255, 255, .38); background: rgba(255, 255, 255, .04); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-link { min-height: auto; padding: 0; color: var(--ink); border-radius: 0; }
.btn-link svg { transition: transform .2s ease; }
.btn-link:hover svg { transform: translateX(5px); }
.actions { display: flex; flex-wrap: wrap; gap: 13px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header.header-solid {
  border-color: rgba(20, 29, 36, .08);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 30px rgba(17, 25, 32, .07);
  backdrop-filter: blur(14px);
}
.navbar {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; width: 245px; align-items: center; text-decoration: none; }
.brand img { width: 100%; height: 58px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.site-header.is-scrolled .brand img,
.site-header.header-solid .brand img { filter: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  position: relative;
  color: #fff;
  font-size: .94rem;
  font-weight: 750;
  text-decoration: none;
}
.site-header.is-scrolled .nav-links a,
.site-header.header-solid .nav-links a { color: var(--ink); }
.nav-links > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.nav-links > a:not(.btn):hover::after,
.nav-links > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-links .btn { color: var(--ink); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
}
.site-header.is-scrolled .menu-toggle,
.site-header.header-solid .menu-toggle { color: var(--ink); border-color: var(--line); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #111820;
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(12, 18, 23, .94) 0%, rgba(12, 18, 23, .73) 46%, rgba(12, 18, 23, .28) 76%, rgba(12, 18, 23, .18) 100%), linear-gradient(0deg, rgba(12,18,23,.72), transparent 45%);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 790px) 1fr;
  gap: 70px;
  align-items: end;
  padding: 185px 0 68px;
}
.hero-copy .eyebrow { color: #f4bd4e; }
.hero h1 span { color: var(--gold); }
.hero-copy > p { max-width: 680px; margin-top: 24px; color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.hero-copy .actions { margin-top: 34px; }
.hero-note {
  justify-self: end;
  width: min(100%, 315px);
  padding: 26px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(14,21,27,.57);
  backdrop-filter: blur(14px);
}
.hero-note strong { display: block; font-size: 1.1rem; }
.hero-note p { margin-top: 8px; color: rgba(255,255,255,.68); font-size: .94rem; }
.hero-note a { display: inline-flex; margin-top: 18px; color: #fff; font-weight: 800; text-decoration: none; }

.trust-strip { position: relative; z-index: 4; margin-top: -1px; color: #fff; background: var(--ink); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; min-height: 124px; align-items: center; gap: 18px; padding: 28px 34px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: grid; flex: 0 0 48px; height: 48px; place-items: center; border-radius: 14px; color: var(--gold); background: rgba(231,169,47,.1); }
.trust-item strong { display: block; font-size: 1rem; }
.trust-item span { display: block; margin-top: 3px; color: rgba(255,255,255,.58); font-size: .88rem; }

.intro-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 84px; align-items: center; }
.image-frame { position: relative; }
.image-frame::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 38%;
  height: 44%;
  border-radius: 18px;
  content: "";
  background: var(--gold);
}
.image-frame img { position: relative; width: 100%; min-height: 570px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-badge {
  position: absolute;
  right: -28px;
  bottom: 32px;
  z-index: 2;
  max-width: 250px;
  padding: 24px;
  border-radius: 18px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}
.image-badge strong { display: block; font-size: 1.18rem; }
.image-badge span { display: block; margin-top: 5px; color: rgba(255,255,255,.65); font-size: .9rem; }
.intro-copy .lead { margin-top: 24px; }
.check-list { display: grid; gap: 14px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-weight: 700; }
.check-list svg { flex: 0 0 22px; margin-top: 2px; color: var(--gold-dark); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 295px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: transparent; box-shadow: var(--shadow-soft); }
.service-number { color: var(--gold-dark); font-size: .76rem; font-weight: 900; letter-spacing: .14em; }
.service-icon { display: grid; width: 55px; height: 55px; margin: 23px 0 25px; place-items: center; border-radius: 16px; color: var(--ink); background: var(--gold-pale); }
.service-card p { margin-top: 13px; color: var(--muted); font-size: .96rem; }
.service-card .corner {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold-pale);
  transition: transform .25s ease;
}
.service-card:hover .corner { transform: scale(1.5); }

.process-wrap { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.process-intro { position: sticky; top: 126px; }
.process-intro .lead { margin: 22px 0 30px; }
.process-list { display: grid; }
.process-item { display: grid; grid-template-columns: 72px 1fr; gap: 22px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.13); }
.process-item:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.process-index { display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid rgba(231,169,47,.5); border-radius: 50%; color: var(--gold); font-weight: 900; }
.process-item p { margin-top: 9px; color: rgba(255,255,255,.61); }

.projects-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 290px 290px; gap: 18px; }
.project-card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink); }
.project-card:first-child { grid-row: 1 / span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.project-card:hover img { transform: scale(1.045); }
.project-overlay { position: absolute; inset: auto 0 0; padding: 72px 28px 26px; color: #fff; background: linear-gradient(transparent, rgba(11,17,22,.88)); }
.project-overlay span { color: #f4bd4e; font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.project-overlay h3 { margin-top: 5px; }

.statement { overflow: hidden; }
.statement-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; padding: 76px; border-radius: 30px; color: #fff; background: var(--ink); }
.statement-inner::after { position: absolute; right: -100px; bottom: -170px; width: 430px; height: 430px; border: 90px solid rgba(231,169,47,.08); border-radius: 50%; content: ""; }
.statement-copy, .statement-actions { position: relative; z-index: 1; }
.statement-copy p { margin-top: 17px; color: rgba(255,255,255,.66); }
.statement-actions { justify-self: end; text-align: right; }
.statement-actions .actions { justify-content: flex-end; }
.statement-contact { margin-top: 15px; color: rgba(255,255,255,.64); font-size: .9rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-panel { align-self: start; padding: 36px; border-radius: var(--radius); color: #fff; background: var(--ink); }
.contact-panel h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
.contact-panel > p { margin-top: 18px; color: rgba(255,255,255,.65); }
.contact-list { display: grid; gap: 18px; margin-top: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item svg { flex: 0 0 22px; margin-top: 2px; color: var(--gold); }
.contact-item small { display: block; color: rgba(255,255,255,.52); }
.contact-item a, .contact-item strong { display: block; color: #fff; font-weight: 760; text-decoration: none; }
.contact-map-link { display: inline-flex; margin-top: 28px; color: var(--gold); font-weight: 800; text-decoration: none; }

.form-card { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.form-card h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.form-card > p { margin-top: 14px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .88rem; font-weight: 780; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid #ccd2d6;
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input, .form-field select { height: 54px; padding: 0 15px; }
.form-field textarea { min-height: 148px; padding: 14px 15px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 4px rgba(231,169,47,.14); }
.form-consent { display: flex; grid-column: 1 / -1; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .84rem; }
.form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold-dark); }
.form-consent a { color: var(--ink); }
.form-actions { display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; gap: 20px; margin-top: 5px; }
.form-note { color: var(--muted); font-size: .8rem; }

.page-hero { position: relative; min-height: 565px; padding: 185px 0 95px; overflow: hidden; color: #fff; background: var(--ink); }
.page-hero::before { position: absolute; inset: 0; z-index: 1; content: ""; background: linear-gradient(90deg, rgba(11,17,22,.93), rgba(11,17,22,.52)); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero p { max-width: 720px; margin-top: 22px; color: rgba(255,255,255,.75); font-size: 1.16rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 45px; color: rgba(255,255,255,.59); font-size: .84rem; }
.breadcrumbs a { color: #fff; text-decoration: none; }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.content-copy .lead { margin-top: 22px; }
.content-copy p:not(.lead) { margin-top: 17px; color: var(--muted); }
.content-image img { width: 100%; min-height: 530px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 32px; border-top: 4px solid var(--gold); border-radius: 0 0 var(--radius) var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.value-card p { margin-top: 13px; color: var(--muted); }

.project-gallery { columns: 2; column-gap: 18px; }
.gallery-card { position: relative; margin-bottom: 18px; break-inside: avoid; overflow: hidden; border-radius: var(--radius); }
.gallery-card img { width: 100%; transition: transform .4s ease; }
.gallery-card:hover img { transform: scale(1.03); }
.gallery-card figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 52px 22px 19px; color: #fff; font-weight: 780; background: linear-gradient(transparent, rgba(12,18,23,.82)); }

.legal { max-width: 850px; }
.legal h2 { margin-top: 48px; font-size: 1.65rem; }
.legal h3 { margin-top: 31px; font-size: 1.25rem; }
.legal p, .legal li { color: var(--muted); }
.legal p { margin-top: 14px; }
.legal ul { padding-left: 20px; }

.success-page { display: grid; min-height: 100vh; place-items: center; padding: 40px 20px; background: var(--sand); }
.success-card { max-width: 650px; padding: 54px; border-radius: 26px; text-align: center; background: #fff; box-shadow: var(--shadow); }
.success-icon { display: grid; width: 74px; height: 74px; margin: 0 auto 24px; place-items: center; border-radius: 50%; color: #fff; background: var(--success); }
.success-card p { margin: 18px auto 30px; color: var(--muted); }

.site-footer { color: #fff; background: #10171d; }
.footer-top { display: grid; grid-template-columns: 1.2fr .7fr .9fr; gap: 70px; padding: 72px 0 54px; }
.footer-brand img { width: 285px; max-height: 86px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 440px; margin-top: 18px; color: rgba(255,255,255,.55); }
.footer-title { margin-bottom: 18px; color: rgba(255,255,255,.42); font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-details { display: grid; gap: 8px; color: rgba(255,255,255,.7); font-size: .91rem; }
.footer-details a { color: #fff; text-decoration: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: .8rem; }
.footer-bottom a { color: inherit; }

.reveal, .js .reveal, .js .reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .88rem; }
  .nav-links .btn { display: none; }
  .hero { min-height: 760px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-note { display: none; }
  .intro-grid, .content-grid { gap: 50px; }
  .image-badge { right: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-wrap { gap: 50px; }
  .statement-inner { padding: 55px; }
  .contact-grid { gap: 36px; }
  .footer-top { gap: 40px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .navbar { min-height: 74px; }
  .brand { width: 210px; }
  .brand img { height: 52px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 28px 20px 40px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a, .site-header .nav-links a { padding: 17px 5px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 1.08rem; }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-links .btn { display: inline-flex; width: 100%; margin-top: 24px; border-bottom: 0; }
  .section-head, .intro-grid, .content-grid, .process-wrap, .statement-inner, .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .section-head { gap: 22px; }
  .hero { min-height: 720px; }
  .hero::before { background: linear-gradient(90deg, rgba(12,18,23,.93), rgba(12,18,23,.54)), linear-gradient(0deg, rgba(12,18,23,.7), transparent); }
  .hero-grid { padding: 150px 0 52px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-item:last-child { border-bottom: 0; }
  .intro-grid { gap: 55px; }
  .image-frame { order: 2; }
  .image-frame img, .content-image img { min-height: 430px; }
  .process-intro { position: static; }
  .projects-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 340px); }
  .project-card:first-child { grid-row: auto; }
  .statement-actions { justify-self: start; text-align: left; }
  .statement-actions .actions { justify-content: flex-start; }
  .form-card { padding: 32px 24px; }
  .page-hero { min-height: 500px; padding: 150px 0 75px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { gap: 38px; }
}

@media (max-width: 600px) {
  .section { padding: 74px 0; }
  .section-sm { padding: 62px 0; }
  h1 { font-size: clamp(2.55rem, 12vw, 4.1rem); }
  h2 { font-size: clamp(2rem, 9vw, 3.15rem); }
  .hero { min-height: 700px; }
  .hero-media { object-position: 63% center; }
  .hero-copy > p { font-size: 1rem; }
  .actions { width: 100%; }
  .actions .btn { width: 100%; }
  .trust-item { padding: 23px 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .image-frame::before { right: -8px; }
  .image-frame img, .content-image img { min-height: 350px; }
  .image-badge { right: 12px; bottom: 12px; left: 12px; max-width: none; padding: 19px; }
  .process-item { grid-template-columns: 52px 1fr; gap: 15px; }
  .process-index { width: 46px; height: 46px; }
  .projects-grid { grid-template-rows: repeat(3, 290px); }
  .statement-inner { gap: 35px; padding: 40px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full, .form-consent, .form-actions { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .btn { width: 100%; }
  .contact-panel { padding: 30px 24px; }
  .project-gallery { columns: 1; }
  .success-card { padding: 40px 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
