:root {
  --primary: #D97A06;
  --ink: #17181A;
  --muted: #6E7075;
  --bg: #FFFFFF;
  --soft: #F7F6F3;
  --line: #E7E5E0;
  --radius: 2px;
  --max-width: 1080px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Inter", system-ui, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.75; font-weight: 400; }
img { max-width: 100%; display: block; }
a { color: var(--primary); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

.backlink { position: fixed; bottom: 1rem; left: 1rem; z-index: 50; background: #fff; border: 1px solid var(--line); color: var(--muted); text-decoration: none; font-size: .76rem; padding: .45rem .85rem; border-radius: 999px; }
.backlink:hover { color: var(--ink); border-color: var(--ink); }

header { position: sticky; top: 0; background: rgba(255,255,255,.96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); z-index: 40; }
.nav-wrap { display: flex; align-items: center; gap: 1.5rem; padding-top: 1rem; padding-bottom: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand img { width: 38px; height: 38px; }
.brand-text { font-weight: 500; letter-spacing: .1em; font-size: .88rem; line-height: 1.3; }
.brand-text small { display: block; font-weight: 400; font-size: .6rem; color: var(--muted); letter-spacing: .04em; }
nav ul { display: flex; gap: 1.8rem; list-style: none; }
nav a { text-decoration: none; color: var(--muted); font-weight: 400; font-size: .92rem; padding: .3rem 0; }
nav a:hover, nav a.active { color: var(--ink); }
nav a.active { border-bottom: 1px solid var(--ink); }

.btn { display: inline-block; text-decoration: none; font-weight: 500; font-size: .92rem; padding: .8rem 1.6rem; border-radius: var(--radius); border: 1px solid transparent; cursor: pointer; transition: opacity .15s ease; }
.btn:hover { opacity: .85; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.nav-cta { border: 1px solid var(--ink); color: var(--ink); padding: .55rem 1.2rem; font-size: .85rem; }
.nav-cta:hover { background: var(--ink); color: #fff; opacity: 1; }

.burger { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px auto; transition: .2s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hero { padding: 6rem 0 5rem; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
.kicker { color: var(--primary); font-weight: 500; text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; margin-bottom: 1.1rem; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.12; margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 500; letter-spacing: -.01em; line-height: 1.2; margin-bottom: .9rem; }
h3 { font-size: 1rem; font-weight: 500; margin-bottom: .45rem; }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 34rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.8rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; list-style: none; border-top: 1px solid var(--line); padding-top: 1.2rem; }
.hero-points li { color: var(--muted); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-media img { aspect-ratio: 4/3.4; object-fit: cover; border-radius: var(--radius); }
.hero-media.noimg { background: var(--soft); border: 1px solid var(--line); min-height: 320px; }
.hero-media.noimg img { display: none; }

.section { padding: 4.5rem 0; }
.section.alt { background: var(--soft); }
.section-lead { color: var(--muted); max-width: 40rem; margin-bottom: 2rem; }
.grid { display: grid; gap: 1px; }
.cards-4, .cards-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 2.2rem; background: var(--line); border: 1px solid var(--line); }
.card { background: var(--bg); padding: 1.8rem; border: 0; border-radius: 0; }
.card p { color: var(--muted); font-size: .92rem; }
.icon { width: 40px; height: 40px; color: var(--primary); display: flex; align-items: center; justify-content: flex-start; margin-bottom: 1rem; }
.icon svg { width: 26px; height: 26px; }
.center { text-align: center; margin-top: 2.6rem; }

.step { background: var(--bg); padding: 1.8rem; }
.step p { color: var(--muted); font-size: .92rem; }
.num { display: inline-block; font-size: .8rem; letter-spacing: .15em; color: var(--primary); font-weight: 500; margin-bottom: .8rem; }
.num::before { content: "0"; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.gallery figure { position: relative; overflow: hidden; background: var(--soft); border-radius: var(--radius); }
.gallery img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.gallery figcaption { padding: .5rem 0 0; font-size: .78rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.gallery figure.noimg { aspect-ratio: 1/1; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.gallery figure.noimg img { display: none; }

.cta-strip { background: var(--ink); color: #fff; padding: 4rem 0; }
.cta-strip h2 { color: #fff; }
.cta-strip p { color: #B9BABE; }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.page-hero { padding: 4.5rem 0 3.5rem; border-bottom: 1px solid var(--line); }

.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-row.reverse .service-text { order: 2; }
.service-row.reverse .service-media { order: 1; }
.service-text p { color: var(--muted); margin-bottom: 1rem; }
.checks { list-style: none; margin: 0 0 1.6rem; }
.checks li { padding-left: 1.5rem; position: relative; margin-bottom: .5rem; font-size: .94rem; }
.checks li::before { content: "—"; position: absolute; left: 0; color: var(--primary); }
.service-media { overflow: hidden; margin: 0; border-radius: var(--radius); }
.service-media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.service-media.noimg { background: var(--soft); border: 1px solid var(--line); min-height: 280px; }
.service-media.noimg img { display: none; }

.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: start; }
.about-grid p { color: var(--muted); margin-bottom: 1rem; }
.values { gap: 1px; margin-top: 0; background: var(--line); border: 1px solid var(--line); }
.about-grid .btn { margin-top: .4rem; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-card { padding: 1.4rem 1.8rem; }
.contact-card p { font-size: 1rem; font-weight: 500; color: var(--ink); }
.contact-card a { text-decoration: none; color: var(--ink); }
.contact-card a:hover { color: var(--primary); }
.contact-form { border: 1px solid var(--line); padding: 2rem; border-radius: var(--radius); background: var(--bg); }
.contact-form h2 { margin-bottom: 1.2rem; }
.contact-form label { display: block; font-weight: 500; font-size: .85rem; margin-bottom: 1rem; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: .35rem; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: var(--radius); font: inherit; background: var(--bg); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--ink); }
.form-note { font-size: .8rem; color: var(--muted); margin-top: .8rem; }
.form-sent { display: none; margin-top: .8rem; font-weight: 500; color: var(--primary); }
.contact-form.sent .form-sent { display: block; }

footer { border-top: 1px solid var(--line); color: var(--muted); padding: 3rem 0 1.5rem; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.footer-brand { color: var(--ink); font-weight: 500; letter-spacing: .1em; margin-bottom: .5rem; }
.footer-h { color: var(--ink); font-weight: 500; margin-bottom: .5rem; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--ink); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding-top: 1.2rem; font-size: .78rem; }
.proto a { text-decoration: underline; }

@media (max-width: 860px) {
  .hero { padding: 3.5rem 0; }
  .hero-grid, .service-row, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-row.reverse .service-text { order: 0; }
  .service-row.reverse .service-media { order: 0; }
  .nav-cta { display: none; }
  .burger { display: block; }
  nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); display: none; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; padding: .5rem 1.5rem 1rem; }
  nav a { display: block; padding: .7rem 0; }
}
