:root {
  --ink: #17201f;
  --ink-2: #202b29;
  --paper: #f1eee7;
  --paper-dark: #e5e0d6;
  --orange: #e96f2c;
  --orange-dark: #c9571c;
  --lead: #81908c;
  --white: #fff;
  --line: rgba(23, 32, 31, .16);
  --display: "Barlow Condensed", sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  min-height: 78px; padding: 0 clamp(24px, 5vw, 76px);
  display: flex; align-items: center; gap: 40px;
  color: var(--white); background: rgba(23,32,31,.97);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.brand img { width: 46px; height: 46px; border-radius: 4px; object-fit: cover; }
.brand span { display: grid; }
.brand strong { font-family: var(--display); font-size: 22px; line-height: .9; text-transform: uppercase; letter-spacing: .04em; }
.brand small { margin-top: 5px; color: #aeb8b5; font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
nav { display: flex; gap: 32px; margin-left: auto; }
nav a { font-size: 13px; font-weight: 700; }
nav a:hover { color: var(--orange); }
.header-call { padding: 13px 18px; border: 1px solid rgba(255,255,255,.25); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.header-call:hover { background: var(--orange); border-color: var(--orange); }
.menu-toggle { display: none; color: white; background: none; border: 0; }

.hero {
  min-height: calc(100vh - 78px); padding: clamp(60px, 8vw, 118px) clamp(24px, 6vw, 92px) 68px;
  display: grid; grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr); gap: clamp(40px, 6vw, 96px); align-items: center;
  color: var(--white); background:
    radial-gradient(circle at 20% 10%, rgba(88,105,99,.22), transparent 32%),
    var(--ink);
  overflow: hidden;
}
.eyebrow { margin: 0 0 22px; color: var(--orange); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .22em; }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: -.025em; line-height: .89; }
h1 { max-width: 720px; font-size: clamp(68px, 7.1vw, 124px); }
h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-intro { max-width: 620px; margin: 34px 0; color: #bdc6c3; font-size: clamp(15px, 1.25vw, 18px); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; justify-content: space-between; align-items: center; gap: 32px; min-width: 205px; padding: 18px 20px; border: 0; cursor: pointer; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.button-primary { color: white; background: var(--orange); box-shadow: 0 12px 35px rgba(233,111,44,.17); }
.button-primary:hover { background: var(--orange-dark); }
.text-link { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.35); font-size: 12px; font-weight: 700; }
.trust-list { display: flex; gap: 25px; padding: 0; margin: 42px 0 0; list-style: none; color: #99a6a2; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.trust-list span { color: var(--orange); }
.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid rgba(255,255,255,.12); }
.hero-media img { position: relative; z-index: 1; height: min(68vh, 650px); object-fit: cover; filter: saturate(.75) contrast(1.04); }
.hero-stamp { position: absolute; z-index: 2; left: -32px; bottom: 28px; padding: 18px 24px; color: var(--ink); background: var(--paper); box-shadow: 0 15px 45px rgba(0,0,0,.25); }
.hero-stamp span { display: block; margin-bottom: 7px; color: var(--orange-dark); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.hero-stamp strong { font-family: var(--display); font-size: 20px; line-height: 1.05; text-transform: uppercase; }

.proof-strip { min-height: 76px; padding: 20px clamp(24px, 6vw, 92px); display: flex; justify-content: center; align-items: center; gap: clamp(18px, 3vw, 54px); color: #5c6865; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.proof-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.section { padding: clamp(88px, 10vw, 150px) clamp(24px, 6vw, 92px); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 68px; }
.section-heading h2, .about h2, .contact h2 { font-size: clamp(56px, 6vw, 94px); }
.section-heading > p { max-width: 520px; margin: 0 0 4px; color: #65706d; font-size: 15px; line-height: 1.8; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.service-card { min-height: 240px; padding: 34px; display: grid; grid-template-columns: 44px 1fr 24px; gap: 20px; border-bottom: 1px solid var(--line); }
.service-card:nth-child(odd) { border-right: 1px solid var(--line); }
.service-card.featured { color: white; background: var(--ink); }
.number { color: var(--orange); font-family: var(--display); font-size: 14px; font-weight: 700; }
.service-card h3, .process-list h3 { margin: 0 0 15px; font-family: var(--display); font-size: 30px; line-height: 1; text-transform: uppercase; }
.service-card p { max-width: 440px; margin: 0; color: #68736f; font-size: 13px; line-height: 1.75; }
.service-card.featured p { color: #aab5b1; }
.card-arrow { align-self: end; color: var(--orange); font-size: 18px; }

.work { color: white; background: var(--ink); }
.inverse > p { color: #9ca8a4; }
.gallery { display: grid; grid-template-columns: 1.3fr .7fr .7fr; grid-template-rows: 285px 285px; gap: 12px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; }
.gallery-main { grid-row: 1 / 3; }
.gallery figure:last-child { grid-column: 2 / 4; }
.gallery img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery figcaption { position: absolute; inset: auto 0 0; padding: 35px 22px 18px; background: linear-gradient(transparent, rgba(0,0,0,.75)); font-family: var(--display); font-size: 18px; text-transform: uppercase; }
.gallery figcaption span { display: block; margin-bottom: 4px; color: var(--orange); font-family: var(--body); font-size: 8px; font-weight: 800; letter-spacing: .16em; }

.about { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(55px, 8vw, 125px); align-items: center; }
.about-images { position: relative; padding: 0 70px 80px 0; }
.about-large { height: 610px; object-fit: cover; }
.about-small { position: absolute; right: 0; bottom: 0; width: 48%; height: 270px; object-fit: cover; border: 10px solid var(--paper); }
.about-copy .lead { margin: 34px 0 20px; color: var(--ink); font-size: 18px; font-weight: 600; line-height: 1.65; }
.about-copy > p:not(.eyebrow):not(.lead) { color: #65706d; font-size: 14px; line-height: 1.8; }
.stats { display: flex; gap: 60px; margin: 42px 0 0; padding-top: 30px; border-top: 1px solid var(--line); }
.stats div { display: grid; }
.stats dt { color: var(--orange); font-family: var(--display); font-size: 44px; font-weight: 700; line-height: 1; text-transform: uppercase; }
.stats dd { margin: 8px 0 0; color: #64706c; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }

.process { padding-top: 0; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { padding: 34px 42px 20px 0; }
.process-list li + li { padding-left: 42px; border-left: 1px solid var(--line); }
.process-list span { display: block; margin-bottom: 65px; color: var(--orange); font-family: var(--display); font-weight: 700; }
.process-list p { margin: 0; color: #65706d; font-size: 13px; line-height: 1.75; }
.areas { color: white; background: var(--ink); }
.areas-heading { display: grid; grid-template-columns: 1.1fr .9fr; column-gap: 70px; align-items: end; }
.areas-heading .eyebrow { grid-column: 1 / -1; }
.areas-heading h2 { font-size: clamp(56px, 6vw, 94px); }
.areas-heading h2 em { color: var(--orange); font-style: normal; }
.areas-heading > p:last-child { max-width: 520px; margin: 0 0 5px; color: #9ca8a4; font-size: 14px; line-height: 1.8; }
.area-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; margin-top: 62px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.13); }
.area-group h3 { margin: 0 0 22px; color: var(--orange); font-family: var(--display); font-size: 23px; text-transform: uppercase; letter-spacing: .04em; }
.area-group h3 span { margin-right: 7px; }
.area-group h3 small { margin-left: 6px; color: #8f9b97; font-family: var(--body); font-size: 8px; letter-spacing: .14em; vertical-align: middle; }
.area-group ul { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.area-group li { padding: 12px 17px; color: #dce1df; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.13); border-radius: 999px; font-size: 11px; font-weight: 700; }
.area-group li:hover { color: white; border-color: var(--orange); }
.quote-band { padding: 90px clamp(24px, 10vw, 160px); color: white; text-align: center; background: var(--orange); }
.quote-band blockquote { max-width: 1050px; margin: 0 auto 25px; font-family: var(--display); font-size: clamp(38px, 4vw, 64px); line-height: 1.05; text-transform: uppercase; }
.quote-band p { margin: 0; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 140px); color: white; background: var(--ink); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin: 32px 0; color: #a8b3af; font-size: 15px; line-height: 1.8; }
.contact-phone { display: flex; justify-content: space-between; max-width: 420px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); font-family: var(--display); font-size: 35px; font-weight: 700; }
.contact-phone span { color: var(--orange); }
.contact-email { display: block; width: fit-content; margin-top: 22px; color: white; font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.35); }
.contact-email:hover { color: var(--orange); border-color: var(--orange); }
.whatsapp { display: inline-block; margin-top: 22px; color: var(--orange); font-size: 12px; font-weight: 800; border-bottom: 1px solid var(--orange); }
.contact-form { padding: clamp(28px, 4vw, 52px); color: var(--ink); background: var(--paper); }
.contact-form label { display: grid; gap: 9px; margin-bottom: 22px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.contact-form label span { color: #7b8582; font-weight: 500; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
input, select, textarea { width: 100%; padding: 13px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid #9aa29f; border-radius: 0; outline: 0; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); }
.contact-form .button { width: 100%; }
.form-trap { position: absolute; left: -9999px; }
.form-note { margin: 15px 0 0; color: #717b78; font-size: 9px; text-align: center; }
footer { padding: 42px clamp(24px, 6vw, 92px); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; color: white; background: #101716; }
footer p { margin: 0; color: #81908c; font-size: 10px; }
footer p a { color: #b7c0bd; }
footer p:last-child { text-align: right; }
.thanks-page { min-height: 100vh; padding: clamp(30px, 6vw, 90px); display: grid; align-content: space-between; gap: 100px; color: white; background: var(--ink); }
.thanks-page .brand { color: white; }
.thanks-page > div { max-width: 850px; }
.thanks-page h1 { margin-bottom: 35px; }
.thanks-page > div > p:not(.eyebrow) { max-width: 600px; margin: 0 0 32px; color: #bdc6c3; line-height: 1.8; }
.thanks-page > div > p a { color: white; font-weight: 800; }

@media (max-width: 980px) {
  .site-header { gap: 16px; }
  .site-header nav { display: none; position: absolute; inset: 78px 0 auto; padding: 28px; flex-direction: column; background: var(--ink-2); }
  .site-header nav.open { display: flex; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-call { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-media img { height: 55vh; }
  .section-heading, .about, .contact, .areas-heading { grid-template-columns: 1fr; }
  .section-heading { gap: 28px; }
  .areas-heading { gap: 28px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 260px 260px; }
  .gallery-main { grid-column: 1 / 3; grid-row: auto; }
  .gallery figure:last-child { grid-column: 1 / 3; }
}

@media (max-width: 650px) {
  .site-header { min-height: 68px; padding-inline: 18px; }
  .site-header nav { top: 68px; }
  .brand { min-width: 0; }
  .brand img { width: 40px; height: 40px; }
  .brand strong { font-size: 19px; }
  .hero { min-height: auto; padding: 70px 22px 42px; }
  h1 { font-size: clamp(59px, 18vw, 82px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .trust-list { flex-wrap: wrap; gap: 12px 20px; }
  .hero-media { margin-top: 20px; }
  .hero-media img { height: 430px; }
  .hero-stamp { left: -8px; bottom: 18px; }
  .proof-strip { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .section { padding: 85px 22px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .about h2, .contact h2 { font-size: 56px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(odd) { border-right: 0; }
  .service-card { min-height: 205px; padding: 28px 12px; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: 390px 240px 240px 240px; }
  .gallery-main, .gallery figure:last-child { grid-column: auto; }
  .about-images { padding: 0 40px 50px 0; }
  .about-large { height: 430px; }
  .about-small { height: 190px; border-width: 6px; }
  .stats { gap: 25px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li + li { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .process-list span { margin-bottom: 30px; }
  .areas-heading h2 { font-size: 56px; }
  .area-groups { grid-template-columns: 1fr; gap: 38px; margin-top: 46px; }
  .area-group li { padding: 10px 14px; font-size: 10px; }
  .quote-band { padding: 70px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  footer { grid-template-columns: 1fr; }
  footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
